/* 
   Premium Fine Dining Overhaul V9
   Palette: Deep Blue, Muted Blue, Burgundy, Cream
*/

/* Lokale Fonts für DSGVO-Konformität */
@font-face {
    font-family: 'Urbanist';
    src: url('Fonts/urbanist-v18-latin/urbanist-v18-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('Fonts/urbanist-v18-latin/urbanist-v18-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Pacifico';
    src: url('Fonts/pacifico-v23-latin/pacifico-v23-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/montserrat-v31-latin/montserrat-v31-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('Fonts/montserrat-v31-latin/montserrat-v31-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --deep-blue: #022E4C;
    --muted-blue: #517493;
    --burgundy: #7C2A33;
    --cream: #E2D9CB;

    --bg-main: #FDFBF7;
    --text-main: #2D3748;

    --font-serif: 'Urbanist', Georgia, 'Times New Roman', serif;
    --font-script: 'Pacifico', 'Brush Script MT', cursive;
    --font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(2, 46, 76, 0.15);
    --nav-height: 100px;
    --nav-height-mobile: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.8;
    overflow-x: clip;
    scroll-padding-top: calc(var(--nav-height) + 60px);
    /* Globaler Fix für alle Anker-Links */
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-lg {
    margin-top: 2.5rem;
}

.mb-md {
    margin-bottom: 2rem;
}

.mb-lg {
    margin-bottom: 3rem;
}

.pb-md {
    padding-bottom: 2rem;
}

.pt-lg {
    padding-top: 5rem;
}

.py-none {
    padding-top: 0;
    padding-bottom: 0;
}

.text-cream {
    color: var(--cream) !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Navigation Redesign (Belisa Style) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 2.5rem 0;
    transition: all 0.4s cubic-bezier(0.2, 0, 0.2, 1);
    pointer-events: none;
}

.navbar.scrolled {
    padding: 1.5rem 0;
}

.navbar.show-blue-bar {
    background: #022e4c;
    height: 70px;
    /* Dünnerer Balken */
}

@media (max-width: 768px) {
    .navbar.show-blue-bar {
        height: 70px;
    }
}

/* Removed .menu-active #menu-categories rule as it now correctly docks below the navbar */

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.burger-menu {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    pointer-events: auto;
    z-index: 10001;
}

.burger-line {
    width: 100%;
    height: 1px;
    background-color: var(--cream);
    transition: all 0.3s ease;
}

.navbar.scrolled .burger-line {
    background-color: var(--deep-blue);
}

.burger-menu.active .burger-line {
    background-color: var(--deep-blue);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(4.5px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 2rem;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.8, 0, 0.2, 1);
}

.nav-overlay.active {
    transform: translateY(0);
}

.overlay-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.overlay-link {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--deep-blue);
    text-decoration: none;
    transition: opacity 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.nav-overlay.active .overlay-link {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-overlay.active .overlay-link:nth-child(1) {
    transition-delay: 0.2s;
}

.nav-overlay.active .overlay-link:nth-child(2) {
    transition-delay: 0.3s;
}

.nav-overlay.active .overlay-link:nth-child(3) {
    transition-delay: 0.4s;
}

.nav-overlay.active .overlay-link:nth-child(4) {
    transition-delay: 0.5s;
}

.nav-overlay.active .overlay-link:nth-child(5) {
    transition-delay: 0.6s;
}

.overlay-link:hover {
    opacity: 0.6;
}

.overlay-footer {
    margin-top: 5rem;
    text-align: center;
    font-family: var(--font-sans);
    color: var(--deep-blue);
    opacity: 0;
    transition: opacity 0.8s 0.6s;
}

.nav-overlay.active .overlay-footer {
    opacity: 0.6;
}

.overlay-phone {
    display: block;
    margin-top: 1rem;
    color: var(--burgundy);
    font-weight: 600;
    font-size: 1.2rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title-script {
    font-size: 4.5rem;
    color: var(--burgundy);
    line-height: 1.2;
    overflow-wrap: break-word;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--burgundy);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 125%;
    z-index: 1;
    will-change: transform;
}

.hero-bg-parallax img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(2, 46, 76, 0.7), rgba(2, 46, 76, 0.4));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cream);
    will-change: transform;
}

.hero-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.ornament-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--burgundy);
    margin: 1rem 0;
    width: 100%;
    max-width: 400px;
}

.ornament-line span {
    flex: 1;
    height: 1px;
    background-color: var(--cream);
    opacity: 0.5;
}

.hero-subtitle {
    font-family: var(--font-sans);
    letter-spacing: 5px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.btn-elegant {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-elegant:hover {
    background: var(--cream);
    color: var(--deep-blue);
    transform: scale(1.02);
}

.btn-elegant.dark {
    background: var(--deep-blue);
    border-color: var(--deep-blue);
    color: var(--cream);
}

.btn-elegant.dark:hover {
    background: var(--burgundy);
    border-color: var(--burgundy);
    color: #fff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-burgundy {
    background-color: var(--burgundy) !important;
    border-color: var(--burgundy) !important;
}

/* Info & Slideshow (Belisa Style) */
.restaurant-info .split-layout {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr;
    /* Mehr Platz für das Bild rechts */
    align-items: start;
    gap: 5rem;
}

.info-text {
    padding-top: 3rem;
}

.display-script {
    font-family: var(--font-script);
    font-size: 4.5rem;
    color: var(--burgundy);
    display: block;
    margin-bottom: -1.5rem;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.8rem;
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.lead-text {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.info-slideshow-container {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding-right: 2rem;
}

.oval-slideshow {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    max-width: 500px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    transform: rotate(32deg);
    /* Rotation des Rahmens */
    transition: transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.oval-slideshow .slide {
    position: absolute;
    inset: -10%;
    /* Vergrößert den Bereich für die Rückdrehung leicht */
    width: 120%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: rotate(-32deg);
    /* Rückdrehung des Inhalts */
    transition: opacity 1.5s ease-in-out, transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.oval-slideshow .slide.active {
    opacity: 1;
}

.oval-slideshow:hover {
    transform: rotate(32deg) scale(1.03);
}

.elegant-takeaway {
    padding: 2.5rem;
    background: rgba(226, 217, 203, 0.3);
    border-left: 1px solid var(--burgundy);
    border-top: 1px solid var(--burgundy);
    border-radius: 0 40px 0 40px;
    max-width: 400px;
}

.takeaway-title {
    font-family: var(--font-serif);
    color: var(--deep-blue);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 992px) {

    /* Global Mobile Adjustments */
    .container {
        padding: 2rem 1rem;
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem !important;
        letter-spacing: 1px !important;
        line-height: 1.2 !important;
    }

    .display-script {
        font-size: 2.5rem !important;
        margin-bottom: 0 !important;
    }

    .section-title-script {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
    }

    /* Restaurant Info Stacking */
    .restaurant-info .split-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem;
        align-items: center;
        padding: 0;
    }

    .info-text {
        text-align: center;
        width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .info-slideshow-container {
        margin-top: 2rem;
        justify-content: center;
        padding: 0;
        width: 100%;
        overflow: hidden;
    }

    .oval-slideshow {
        width: 85vw;
        /* Adaptive width for mobile */
        max-width: 300px;
        transform: rotate(15deg);
    }
    
    .oval-slideshow:hover {
        transform: rotate(15deg) scale(1.03);
    }

    .oval-slideshow .slide {
        transform: rotate(-15deg) scale(1.05);
    }

    .elegant-takeaway {
        max-width: 100%;
        margin: 2rem 0 0;
        text-align: center;
        border-radius: 15px;
        padding: 1.2rem;
    }

    .speisekarte-dark {
        padding: 4rem 0 2rem !important;
    }

    /* Platz oben reduziert */
}


/* Highlights Slider (Belisa Style Manual) */
.highlights-grid-section {
    background-color: var(--bg-main);
    padding: 8rem 0;
    border-top: 1px solid rgba(86, 6, 29, 0.05);
    overflow: hidden;
}

.highlights-slider-wrapper {
    max-width: 800px;
    margin: 4rem auto 0;
    position: relative;
}

.highlights-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    will-change: transform;
}

.highlight-card {
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.highlight-card.active {
    opacity: 1;
    transform: scale(1);
}

.highlight-img-circle {
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    position: relative;
}

.highlight-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Wieder voll ausfüllen */
}

.highlight-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h-title {
    font-family: var(--font-script);
    font-size: 3.5rem;
    color: var(--burgundy);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.h-desc {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    opacity: 0.7;
    max-width: 400px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.h-price {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--deep-blue);
    font-weight: 600;
    letter-spacing: 1px;
    border-top: 1px solid rgba(124, 42, 51, 0.2);
    padding-top: 1rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.nav-btn {
    background: none;
    border: 1px solid rgba(124, 42, 51, 0.3);
    color: var(--burgundy);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--burgundy);
    color: #fff;
    border-color: var(--burgundy);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .highlights-grid-section {
        padding: 4rem 0;
    }

    /* Padding reduziert */
    .highlights-slider-wrapper {
        margin-top: 2rem;
    }

    .highlight-img-circle {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }

    /* Kleineres Bild */
    .h-title {
        font-size: 2.2rem;
        margin-bottom: 0.2rem;
    }

    .h-desc {
        font-size: 0.85rem;
        padding: 0 1rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .h-price {
        font-size: 1.2rem;
        padding-top: 0.5rem;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .slider-nav {
        gap: 2rem;
        margin-top: 2rem;
    }

    /* Buttons näher ran */
}

/* =========================================
   Fine Menu (Alternating Grid Layout)
   ========================================= */
.speisekarte-dark {
    background: linear-gradient(rgba(2, 46, 76, 0.5), rgba(2, 46, 76, 0.7)), url('Fotos Webseite/waves.jpg') center/cover no-repeat fixed;
    padding: 8rem 0 4rem;
    color: var(--cream);
    position: relative;
    /* Wichtig für Sticky-Kinder */
}

/* Fix for mobile background attachment */
@media (max-width: 768px) {
    .speisekarte-dark {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-repeat: repeat !important;
    }
}

.section-header-dark {
    margin-bottom: 4rem;
}

.ornament-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.ornament-menu .line {
    width: 40px;
    height: 1px;
    background-color: var(--cream);
    position: relative;
}

.ornament-menu .line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: 1px solid var(--cream);
    top: -3px;
}

.ornament-menu .line:first-child::after {
    right: -6px;
}

.ornament-menu .line:last-child::after {
    left: -6px;
}

.ornament-menu .text {
    font-family: var(--font-sans);
    letter-spacing: 5px;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--cream);
}

.menu-intro-text {
    color: rgba(226, 217, 203, 0.7);
    max-width: 500px;
    margin: 1rem auto 0;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

/* Sticky Categorized Navigation */
#menu-categories {
    position: sticky;
    top: 70px; /* Dockt exakt unter die neue 70px Navbar an */
    z-index: 990;
    background: #022e4c;
    padding: 0.5rem 2rem; /* Balken dünner gemacht */
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

#menu-categories::-webkit-scrollbar {
    display: none;
}

/* Versteckt Scrollbar auf Chrome/Safari */

.menu-cat-btn {
    background: none;
    border: none;
    color: rgba(226, 217, 203, 0.6);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    padding-bottom: 4px;
    border-bottom: 1px solid transparent;
    margin: 0 0.8rem; /* Stellt Abstand sicher, falls 'gap' vom Browser ignoriert wird */
}

.menu-cat-btn:hover,
.menu-cat-btn.active {
    color: #fff;
    border-bottom: 1px solid var(--cream);
}

.menu-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Split Alternating Blocks */
.split-menu-block {
    display: flex;
    width: 100%;
    gap: 3rem;
    align-items: flex-start; /* Bild fängt oben an statt zentriert */
    margin-bottom: 4rem;
    scroll-margin-top: 180px;
    /* Verhindert das Verschwinden unter der Leiste */
}

.split-menu-block.reverse {
    flex-direction: row-reverse;
}

.menu-items-col {
    flex: 1;
    min-width: 50%;
}

.menu-img-col {
    flex: 0 0 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 7rem; /* Schiebt das Bild exakt auf Höhe des ersten Gerichts (unter den Titel) */
}

.menu-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Wieder voll ausfüllen */
}

.mobile-only-title {
    display: none; /* Versteckt auf Desktop */
}

.cat-title-elegant {
    color: var(--cream);
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
}

.cat-title-elegant::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: var(--cream);
    margin-top: 10px;
}

/* Text alignment remains left for all blocks for a cleaner look */

.menu-list-item {
    margin-bottom: 1.2rem;
}

.item-name-price {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0.3rem;
}

.m-name {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    color: #fff;
}

.m-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(226, 217, 203, 0.2);
    margin: 0 1rem;
    position: relative;
    top: -6px;
}

.m-price {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    white-space: nowrap;
    color: #fff;
}

.m-desc {
    color: rgba(226, 217, 203, 0.6);
    font-size: 0.85rem;
    font-family: var(--font-sans);
    padding-right: 15%;
    line-height: 1.5;
}

/* Location & Social */
.location-social-elegant {
    background: var(--bg-main);
    padding: 6rem 0;
}

.elegant-script {
    font-family: var(--font-script);
    font-size: 4rem;
    color: var(--burgundy);
    font-weight: 400;
    margin-bottom: -1rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.ornament-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-script);
    color: var(--burgundy);
    font-size: 2.5rem;
}

.ornament-subtitle .line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--burgundy);
    opacity: 0.3;
}

.ornament-subtitle .text {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--deep-blue);
    position: relative;
    top: -5px;
    font-weight: 600;
}

.social-box {
    padding: 2rem;
}

.social-intro-text {
    color: var(--muted-blue);
}

.map-wrapper {
    height: 400px;
}

.social-links-elegant {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link-e {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--deep-blue);
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-link-e:hover {
    color: var(--burgundy);
}

.contact-info-elegant p {
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.6;
}

.contact-info-elegant strong {
    color: var(--burgundy);
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.2rem;
}

/* Footer */
.footer-elegant {
    background: #011E33;
    padding: 5rem 0 2rem;
}

.footer-brand {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--cream);
}

.footer-tagline {
    color: rgba(226, 217, 203, 0.5);
    font-family: var(--font-sans);
    margin-top: 1rem;
}

.footer-bottom-line {
    border-top: 1px solid rgba(226, 217, 203, 0.1);
    padding-top: 2rem;
    color: rgba(226, 217, 203, 0.5);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Scroll Top */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--burgundy);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--deep-blue);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@media (max-width: 992px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-bg-parallax {
        top: 0;
        height: 100%;
        transform: none !important;
    }

    .hero-bg-parallax img {
        object-position: center center;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .speisekarte-dark {
        background-attachment: scroll !important;
        background-size: 100% auto !important;
        background-repeat: repeat !important;
    }

    /* Mobile Menu Grid */
    .split-menu-block,
    .split-menu-block.reverse {
        flex-direction: column;
        margin-bottom: 2rem;
        gap: 1rem;
    }

    .menu-img-col {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1; /* Quadratisch für beste Darstellung */
        flex: 1;
        order: -1;
        background-color: transparent; 
    }

    .menu-img-col img {
        object-fit: cover !important;
        object-position: bottom center !important; /* Teller unten im Bild behalten */
    }

    .split-menu-block.reverse .cat-title-elegant {
        text-align: left;
    }

    .split-menu-block.reverse .cat-title-elegant::after {
        margin-left: 0;
    }

    .split-menu-block.reverse .m-desc {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }

    .m-desc {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .overlay-link {
        font-size: 2.2rem;
    }

    #menu-categories {
        top: 60px !important;
        padding: 0.6rem 0.5rem;
        background: rgba(2, 46, 76, 0.95);
        backdrop-filter: blur(10px);
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
    }

    .menu-cat-btn {
        flex: 0 0 auto;
        white-space: nowrap !important;
        font-size: 0.85rem !important;
    }

    .mobile-only-title {
        display: block;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .desktop-only-title {
        display: none;
    }

    .split-menu-block {
        flex-direction: column !important;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .menu-img-col {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 1.5rem;
        border-radius: 15px;
        background-color: transparent;
    }

    .menu-img-col img {
        object-fit: cover !important;
        object-position: bottom center !important;
    }

    html {
        scroll-padding-top: 0;
    }

    .menu-cat-btn {
        white-space: nowrap !important;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }

    .menu-list-item {
        margin-bottom: 0.8rem;
    }

    .item-name-price {
        flex-direction: row;
        justify-content: space-between;
        align-items: baseline;
        margin-bottom: 0;
    }

    .m-dots {
        display: none;
    }

    .m-price {
        margin-top: 0;
        font-size: 0.95rem;
    }

    .m-name {
        font-size: 0.95rem;
        white-space: normal;
        padding-right: 0.5rem;
    }

    .m-desc {
        font-size: 0.8rem;
        padding-right: 0;
        line-height: 1.3;
        margin-top: 0.1rem;
    }

    .cat-title-elegant {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 0.5rem;
    }
}

/* =========================================
   Cookie Consent Banner
   ========================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-main);
    border-top: 1px solid rgba(2, 46, 76, 0.1);
    padding: 2rem 0;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 1.5rem;
}

.cookie-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.cookie-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--deep-blue);
    color: var(--deep-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(2, 46, 76, 0.05);
}

/* =========================================
   Fallback Icons (Robust hydration check)
   ========================================= */
ion-icon:not(.hydrated) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-style: normal;
    line-height: 1;
    visibility: visible !important;
}

ion-icon:not(.hydrated)[name="menu-outline"]::before {
    content: "☰";
    font-size: 1.2em;
}

ion-icon:not(.hydrated)[name="call-outline"]::before {
    content: "📞";
    font-size: 0.9em;
}

ion-icon:not(.hydrated)[name="restaurant-outline"]::before {
    content: "🍽";
}

ion-icon:not(.hydrated)[name="arrow-back-outline"]::before {
    content: "←";
}

ion-icon:not(.hydrated)[name="arrow-forward-outline"]::before {
    content: "→";
}

ion-icon:not(.hydrated)[name="logo-instagram"]::before {
    content: "📷";
}

ion-icon:not(.hydrated)[name="arrow-up-outline"]::before {
    content: "↑";
}
