@import url('assets/fonts/fonts.css');
:root {
    --bg-color: #ffffff;
    --bg-secondary: #fdfdfb;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --ita-green: #008c45;
    --ita-white: #ffffff;
    --ita-red: #cd212a;
    --accent-gold: #d4af37;
    --lux-wine: #630d0d;
    --transition-smooth: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.05);
    --shadow-lux: 0 20px 60px rgba(0,0,0,0.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.01em;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    display: block;
}
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--ita-red);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--lux-wine);
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    font-weight: 700;
}
@media (max-width: 768px) {
    .section-title { font-size: 2.5rem; }
}
.section-title::after {
    content: '♦';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: var(--ita-red);
}
.section-title span {
    color: var(--ita-red);
    font-style: italic;
}
.section-subtitle {
    font-size: 1rem;
    color: var(--ita-green);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
}
.flag-stripe {
    height: 4px;
    width: 100%;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
}
.flag-green { background: var(--ita-green); flex: 1; }
.flag-white { background: var(--ita-white); flex: 1; }
.flag-red { background: var(--ita-red); flex: 1; }
.navbar-main {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    padding: 1.5rem 0;
    color: #fff;
}
.navbar-main.sticky {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    border-bottom: 2px solid var(--ita-red);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    box-shadow: var(--shadow-soft);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}
.nav-logo img {
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.9)); 
    transition: var(--transition-smooth);
}
nav.sticky .nav-logo img {
    filter: none; 
}
.nav-links {
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fff;
    transition: var(--transition-smooth);
}
.navbar-main.sticky .nav-links a {
    color: var(--text-primary);
}
.navbar-main.sticky .nav-links a[style*="color: var(--ita-red)"] {
    color: var(--ita-red);
}
.navbar-main.sticky .nav-logo img {
    filter: none;
}
.nav-links a:hover {
    color: var(--ita-green);
}
.nav-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--ita-green), var(--ita-white), var(--ita-red));
    transition: width 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    color: #fff;
}
.hero h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    line-height: 1.1;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: transform, opacity;
}
.hero p {
    font-size: 1.8rem;
    color: #f0f0f0;
    margin-bottom: 3.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
    opacity: 0;
    will-change: transform, opacity;
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}
.hero-btns {
    display: flex;
    gap: 2rem;
}
.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}
.btn-primary {
    background: var(--ita-green);
    color: #fff;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 140, 69, 0.4);
}
.btn-primary:hover {
    background: #fff;
    color: var(--ita-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lux);
}
.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--text-primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lux);
}
.about {
    padding: 10rem 0;
    background: var(--bg-color);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.about-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
.about-image {
    position: relative;
}
.about-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--ita-red);
}
.menu-preview {
    padding: 8rem 0;
    background: var(--bg-secondary);
}
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.menu-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}
.menu-card:hover {
    transform: translateY(-10px);
    border-color: var(--ita-red);
    box-shadow: 0 10px 30px rgba(205, 33, 42, 0.1);
}
.menu-card-img {
    height: 250px;
    overflow: hidden;
}
.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.menu-card:hover .menu-card-img img {
    transform: scale(1.1);
}
.menu-card-content {
    padding: 2.5rem;
    text-align: center;
}
.menu-card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}
.menu-card-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
.menu-cta {
    text-align: center;
    margin-top: 5rem;
}
.delivery {
    padding: 12rem 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('assets/gallery-1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
}
.delivery-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--shadow-lux);
}
.delivery-box h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}
.delivery-box p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ddd;
}
.contact {
    padding: 8rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.info-item {
    margin-bottom: 2rem;
}
.info-item h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}
.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}
.badge.neu { background: #ffeaa7; color: #d35400; }
.badge.bearbeitung { background: #81ecec; color: #008cba; }
.badge.fertig { background: #55efc4; color: #00b894; }
.badge.abgeschlossen { background: #dfe6e9; color: #636e72; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--ita-red);
    color: var(--ita-red);
}
.btn-outline:hover {
    background: var(--ita-red);
    color: #fff;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.hamburger {
    display: none;
}
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100svh;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 120px;
        align-items: center;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        overflow-y: auto;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links li {
        margin: 0.8rem 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s;
    }
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links a {
        font-size: 1.8rem;
        font-family: 'Playfair Display', serif;
        color: var(--text-primary) !important; 
        font-weight: 700;
        display: block;
        padding: 0.5rem 0;
    }
    .nav-btns {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .nav-cta {
        display: none; 
    }
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }
    .hamburger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #fff; 
        margin: 6px 0;
        transition: 0.4s;
    }
    .navbar-main.sticky .hamburger span,
    .hamburger.active span {
        background: var(--ita-red); 
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 7px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -7px);
    }
    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
    .hero {
        background-attachment: scroll;
        height: 100svh;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .about {
        padding: 5rem 0;
    }
    .about-content {
        gap: 2rem;
        text-align: center;
    }
    .about-text h2 {
        font-size: 2.2rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .about-image img {
        box-shadow: 10px 10px 0 var(--ita-red);
    }
    .about-content, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .mobile-only {
        display: block !important;
    }
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    .delivery {
        background-attachment: scroll;
        padding: 4rem 1rem;
    }
    .delivery-box {
        padding: 2rem;
    }
}
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: none; 
    grid-template-columns: 1fr 1fr;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 2000;
    padding: 0.5rem;
    gap: 0.5rem;
}
.bottom-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}
.bottom-btn i {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.bottom-btn.primary {
    background: var(--ita-red);
    color: #fff;
}
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: grid;
    }
    body {
        padding-bottom: 80px; 
    }
}
.nav-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
body.no-scroll {
    overflow: hidden;
}
.footer {
    padding: 5rem 0 2rem;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-primary);
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--ita-red);
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--ita-green);
}
.footer-col li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}
.footer-hours li {
    display: grid;
    grid-template-columns: 85px 1fr;
    gap: 10px;
}
.footer-hours li span:first-child {
    font-weight: 600;
    color: var(--text-primary);
}
.footer-col ul {
    list-style: none;
}
.footer-col a:hover {
    color: var(--ita-red);
    padding-left: 5px;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    color: var(--ita-red);
}
.social-icon:hover {
    transform: translateY(-3px);
}
.social-icon[href*="facebook"]:hover {
    background-color: #1877F2;
    border-color: #1877F2;
    color: #fff;
}
.social-icon[href*="instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: #fff;
}
.social-icon[href*="tiktok"]:hover {
    background-color: #000000;
    border-color: #000000;
    color: #fff;
}
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal {
    display: flex;
    gap: 1.5rem;
}
.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
.nav-cta .btn {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
    background: var(--ita-green);
    color: #fff;
    border: none;
    transition: var(--transition-smooth);
}
nav.sticky .nav-cta .btn {
    background: var(--ita-green);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 140, 69, 0.3);
}
.nav-cta .btn:hover {
    background: #fff;
    color: var(--ita-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}
nav.sticky .nav-cta .btn:hover {
    background: var(--text-primary);
    color: #fff;
}

@media (max-width: 1024px) {
    .hero {
        background-attachment: scroll;
    }
}

@media (max-width: 1024px) {
    .hero {
        background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65)), url('assets/hero-mobile.png');
        background-size: cover;
        background-position: center center;
        justify-content: center;
        padding-bottom: 60px;
        min-height: 100svh;
    }
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        width: 100%;
    }
    .hero-btns .btn {
        width: 80%;
        text-align: center;
    }
}
