/* --- VARIABLES & RESET --- */
:root {
    --bg-dark: #0f1014;       
    --bg-card: #1a1c23;       
    --primary: #d4af37;       /* Gold */
    --text-main: #f4f4f4;     
    --text-muted: #a0a0a0;    
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Mulish', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* --- STRICT SNAP SCROLL SETUP --- */
html, body {
    height: 100%;
    margin: 0;
    overflow: hidden; 
}

.scroll-container {
    height: 100vh;
    height: 100dvh; 
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.snap-section {
    position: relative;
    width: 100%;
    height: 100vh; 
    height: 100dvh; 
    scroll-snap-align: start;
    scroll-snap-stop: always; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    overflow: hidden; 
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
}

/* --- UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding { padding: 0 20px; } 

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.bg-alt { background: #131418; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: #fff; font-weight: 400; }
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: 15px; }
.sub-heading { color: var(--primary); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 10px; display: block; }
p { color: var(--text-muted); font-size: 1rem; margin-bottom: 20px; max-width: 600px; }

/* --- LOADER --- */
.loader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-dark); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    animation: fadeOut 1s ease forwards 1.5s;
}
.loader-text { font-family: var(--font-heading); font-size: 2rem; color: var(--primary); animation: pulse 1.5s infinite; }

/* --- NAVIGATION --- */
.navbar {
    position: fixed; top: 0; width: 100%; height: 70px;
    background: rgba(15, 16, 20, 0.85); 
    backdrop-filter: blur(10px);        
    border-bottom: 1px solid rgba(255,255,255,0.05);
    z-index: 1000;
    transition: var(--transition);
}
.nav-flex { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-decoration: none; font-weight: 700; }
.logo .dot { color: var(--primary); }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 30px; }
.nav-links a {
    color: var(--text-main); text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.btn-nav {
    border: 1px solid var(--primary); padding: 6px 15px; border-radius: 4px; color: var(--primary) !important;
}
.btn-nav:hover { background: var(--primary); color: #000 !important; }

/* --- HERO & BUTTONS --- */
.hero { text-align: center; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') center/cover;
    animation: zoomEffect 20s infinite alternate;
    z-index: 0;
}
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(15,16,20,1) 95%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; margin: 0 auto; max-width: 800px; padding: 20px; }

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: nowrap; 
}

.btn-primary, .btn-secondary {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 14px 30px; 
    text-decoration: none; font-weight: 600; letter-spacing: 0.5px; 
    transition: var(--transition); font-size: 0.9rem;
    white-space: nowrap; 
}
.btn-primary { background: var(--primary); color: #000; border: 1px solid var(--primary); }
.btn-primary:hover { background: transparent; color: var(--primary); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: #fff; background: #fff; color: #000; }

.scroll-indicator {
    position: absolute; 
    bottom: 30px; 
    
    /* ÄNDERUNG START: Neue Zentrierungsmethode */
    left: 0;
    width: 100%;  /* Nimmt die volle Breite ein */
    /* transform: translateX(-50%);  <-- Diese Zeile entfernen wir, da sie Konflikte verursacht */
    /* ÄNDERUNG ENDE */

    z-index: 2; 
    display: flex; 
    flex-direction: column; 
    align-items: center; /* Zentriert den Inhalt (Text & Icon) horizontal */
    justify-content: center;
    
    opacity: 0.7; 
    font-size: 0.7rem; 
    letter-spacing: 2px; 
    text-transform: uppercase;
    pointer-events: none; /* Optional: Damit man nicht versehentlich draufklickt statt zu scrollen */
}

/* --- GRID SECTIONS & IMAGES --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; height: 100%; }
.image-wrapper { 
    position: relative; 
    height: 70%; 
    display: flex; align-items: center; justify-content: center;
}
.image-wrapper img { 
    width: 100%; max-height: 100%; object-fit: cover; 
    border-radius: 2px; filter: grayscale(20%); transition: var(--transition); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
}
.image-wrapper:hover img { filter: grayscale(0%); transform: scale(1.02); }

.experience-badge {
    position: absolute; bottom: -10px; right: -10px; background: var(--primary); color: #000;
    padding: 15px 20px; display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.experience-badge .years { font-size: 2rem; font-family: var(--font-heading); font-weight: 700; line-height: 1; }
.experience-badge .text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; }

.feature-list { list-style: none; margin-top: 20px; }
.feature-list li { display: flex; align-items: center; margin-bottom: 10px; font-size: 0.95rem; color: #ddd; }
.feature-list li i { color: var(--primary); margin-right: 15px; width: 18px; }

.signature { margin-top: 20px; }
.sig-font { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.8rem; color: var(--primary); }

/* --- CONTACT SECTION --- */
.contact-section {
    background: #0f1014;
    display: flex; flex-direction: column; justify-content: space-between;
}
.contact-content {
    flex-grow: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
    width: 100%;
}
.contact-intro { font-size: 1.1rem; margin-bottom: 30px; }
.phone-link {
    font-family: var(--font-heading); font-size: 2.5rem; color: var(--primary); text-decoration: none;
    margin-bottom: 40px; transition: var(--transition); display: flex; align-items: center; gap: 15px;
}
.phone-link:hover { transform: scale(1.05); color: #fff; }

.opening-hours {
    border: 1px solid rgba(255,255,255,0.1); padding: 20px 40px; background: rgba(255,255,255,0.02);
}
.opening-hours h3 { font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; text-transform: uppercase; }
.opening-hours p { margin-bottom: 5px; font-size: 0.9rem; }

/* --- MINI FOOTER --- */
.mini-footer {
    width: 100%; border-top: 1px solid rgba(255,255,255,0.05); padding: 15px 0; font-size: 0.75rem; color: #555; background: #000;
}
.footer-flex { display: flex; justify-content: space-between; align-items: center; }
.footer-links a { color: #555; text-decoration: none; margin-left: 20px; transition: 0.3s; }
.footer-links a:hover { color: var(--primary); }

/* --- ANIMATIONS --- */
@keyframes zoomEffect { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
@keyframes fadeOut { to { opacity: 0; visibility: hidden; } }
@keyframes pulse { 50% { opacity: 0.5; } }

.reveal-text, .reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: all 1s ease; }
.reveal-text { transform: translateY(30px); }
.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.active { opacity: 1; transform: translate(0,0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* --- MOBILE & RESPONSIVE DESIGN --- */
.burger { display: none; cursor: pointer; z-index: 2000; } /* Z-Index hoch, damit Burger über dem Menü bleibt */
.burger div { width: 25px; height: 2px; background: #fff; margin: 5px; transition: 0.3s; }

@media screen and (max-width: 900px) {
    .burger { display: block; }
    
    /* NEUES FULLSCREEN MOBILE MENÜ */
    .nav-links {
        position: fixed; 
        top: 0; 
        left: 0; 
        height: 100vh; 
        width: 100%; /* Vollbild Breite */
        background: rgba(10, 10, 12, 0.98); /* Sehr dunkel, fast undurchsichtig */
        /* Alternativ für "Milchglas": background: rgba(15, 16, 20, 0.85); backdrop-filter: blur(15px); */
        
        flex-direction: column; 
        justify-content: center; 
        align-items: center;
        
        /* Initial Zustand: Unsichtbar */
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease-in-out;
        z-index: 1500;
    }
    
    /* Aktiv Zustand */
    .nav-active { 
        opacity: 1; 
        visibility: visible;
    }
    
    .nav-links li { 
        margin: 25px 0; 
        opacity: 0; /* Für Fade-In Animation */
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    /* Links im Mobile Menu riesig machen */
    .nav-links a {
        font-family: var(--font-heading);
        font-size: 2rem; /* Große Schrift */
        font-weight: 400;
    }
    
    /* Animation Delay für Items, wenn Menü offen ist */
    .nav-active li:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
    .nav-active li:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
    .nav-active li:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
    .nav-active li:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
    .nav-active li:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
    .nav-active li:nth-child(6) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
    
    /* Layout Mobile Anpassungen */
    .grid-2 { display: flex; flex-direction: column; justify-content: center; gap: 20px; padding: 0 10px; }
    .reverse-mobile { flex-direction: column-reverse; } 
    
    .image-wrapper { height: 35vh; width: 100%; margin: 0; }
    .text-content { text-align: center; }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.6rem; margin-bottom: 10px; }
    p { font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; }
    
    .hero-btns {
        flex-direction: row; 
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }
    .btn-primary, .btn-secondary {
        padding: 12px 10px;
        font-size: 0.8rem;
        flex: 1; 
        width: 50%;
    }
    
    .phone-link { font-size: 1.8rem; margin-bottom: 20px; }
    .opening-hours { padding: 15px; width: 100%; }
    .experience-badge { padding: 10px 15px; right: 0; bottom: -20px; }
}

/* Burger Animation */
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
/* --- MENU PAGE SPECIAL STYLES --- */

/* Damit die Menu Sektion den ganzen Platz nutzt */
.menu-wrapper {
    height: 100%;
    padding-top: 100px; /* Platz für Navbar */
    padding-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Filter Leiste */
.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.category-filters { display: flex; gap: 10px; flex-wrap: wrap; }

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-muted);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* Vegan Toggle Switch */
.switch-label { display: flex; align-items: center; cursor: pointer; gap: 10px; }
.switch-label input { display: none; }
.slider {
    width: 40px; height: 20px; background: #333;
    border-radius: 20px; position: relative; transition: 0.3s;
}
.slider::before {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 16px; height: 16px; background: #fff; border-radius: 50%;
    transition: 0.3s;
}
input:checked + .slider { background: #4caf50; } /* Grün für Vegan */
input:checked + .slider::before { transform: translateX(20px); }
.label-text { font-size: 0.9rem; color: var(--text-muted); }

/* Innerer Scroll Bereich für die Gerichte */
.menu-scroll-area {
    flex-grow: 1;
    overflow-y: auto; /* Erlaubt scrollen innerhalb der Sektion */
    padding-right: 10px; /* Platz für Scrollbar */
}

/* Custom Scrollbar Styling */
.menu-scroll-area::-webkit-scrollbar { width: 6px; }
.menu-scroll-area::-webkit-scrollbar-track { background: #1a1c23; }
.menu-scroll-area::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
.menu-scroll-area::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* Grid Layout für Karten */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

/* Einzelne Gericht-Karte */
.menu-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
    animation: fadeIn 0.5s ease forwards;
}

.menu-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.item-header {
    display: flex; justify-content: space-between; align-items: baseline;
    margin-bottom: 10px; border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.item-name { font-family: var(--font-heading); font-size: 1.2rem; color: #fff; }
.item-price { color: var(--primary); font-weight: 700; font-size: 1.1rem; }
.item-desc { font-size: 0.9rem; margin-bottom: 15px; }

.item-tags span {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px;
    padding: 4px 8px; border-radius: 4px; margin-right: 5px;
}
.tag-veggie { background: rgba(76, 175, 80, 0.2); color: #4caf50; }
.tag-spicy { background: rgba(244, 67, 54, 0.2); color: #f44336; }
.tag-alc { background: rgba(156, 39, 176, 0.2); color: #ce93d8; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Mobile Anpassung Filter */
@media screen and (max-width: 768px) {
    .filter-container { flex-direction: column; align-items: flex-start; }
    .category-filters { overflow-x: auto; width: 100%; padding-bottom: 10px; flex-wrap: nowrap; }
    .filter-btn { white-space: nowrap; }
}