/* Color Palette & Variables */
:root {
    /* Colors */
    --espresso-black: #0a0908; 
    --espresso-dark: #12100e;
    --dallmayr-gold: #cba865;
    --dallmayr-gold-light: #ebd09c;
    --crema-white: #fdfbf7;
    --text-muted: #a19a95;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Lato', sans-serif;
    
    /* Utilities */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --border-radius-sm: 2px;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--espresso-black);
    color: var(--crema-white);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

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

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

.container-sm {
    max-width: 800px;
}

/* Decorations */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--dallmayr-gold), transparent);
    width: 80px;
    margin: 1.5rem 0;
}

.gold-divider.center {
    margin: 1.5rem auto;
    background: linear-gradient(90deg, transparent, var(--dallmayr-gold), transparent);
    width: 120px;
}

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

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--dallmayr-gold);
    color: var(--espresso-black);
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border: 1px solid var(--dallmayr-gold);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--dallmayr-gold);
    box-shadow: 0 0 20px rgba(203, 168, 101, 0.2);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--dallmayr-gold);
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid var(--dallmayr-gold);
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm);
}

.btn-outline:hover {
    background-color: var(--dallmayr-gold);
    color: var(--espresso-black);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    padding: 2.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.navbar.scrolled {
    padding: 1.2rem 5%;
    background-color: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(203, 168, 101, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.6));
}

.navbar .brand-logo {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

.navbar.scrolled .brand-logo {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.brand-logo:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 6px 15px rgba(203, 168, 101, 0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn-outline) {
    color: var(--crema-white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    position: relative;
    font-weight: 400;
}

.nav-links a:not(.btn-outline)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--dallmayr-gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-outline):hover {
    color: var(--dallmayr-gold);
}

.nav-links a:not(.btn-outline):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--dallmayr-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05); /* Prevents edge flickering */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 9, 8, 0.85) 0%, rgba(10, 9, 8, 0.6) 50%, rgba(10, 9, 8, 0.8) 100%);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-logo {
    width: 450px;
    max-width: 85vw;
    height: auto;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.8));
    /* This soft ambient drop shadow blends the logo with the background element */
    will-change: transform, opacity;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--crema-white);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.1;
    background: linear-gradient(to right, var(--crema-white), var(--dallmayr-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--crema-white);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Utilities Extension */
.text-center {
    text-align: center;
}

/* Philosophy Section */
.philosophy-section {
    padding: 7rem 0 3rem;
    background-color: var(--espresso-black);
    position: relative;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 3rem;
    font-style: italic;
    font-weight: 400;
    color: var(--crema-white);
}

.philosophy-content p {
    font-size: 1.3rem;
    color: rgba(253, 251, 247, 0.9);
    line-height: 1.8;
    font-family: var(--font-heading);
    font-style: italic;
    margin-top: 1rem;
}

/* Partners Section */
.partners {
    background-color: var(--espresso-dark);
    padding: 6rem 0;
    position: relative;
    border-bottom: 1px solid rgba(203, 168, 101, 0.05);
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    color: var(--crema-white);
    font-style: italic;
    font-weight: 400;
}

.partners p {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.8;
}

.partners strong {
    color: var(--dallmayr-gold);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    width: 100%;
}

.logo-item {
    color: rgba(253, 251, 247, 0.7);
    transition: var(--transition-smooth);
}

.logo-item:hover {
    color: var(--dallmayr-gold);
    transform: translateY(-5px);
}

.dallmayr {
    font-family: var(--font-body);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.lindt {
    font-family: 'Georgia', serif; /* Closest to Lindt typography */
    font-size: 2.8rem;
    font-style: italic;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lindt-sub {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -0.5rem;
}

/* Menu Section */
.menu-section {
    padding: 8rem 0;
    background-color: var(--espresso-black);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(203, 168, 101, 0.04), transparent 60%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: 3.5rem;
    font-style: italic;
    font-weight: 400;
}

.section-title p {
    color: var(--dallmayr-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.menu-category h3 {
    font-size: 1.8rem;
    color: var(--dallmayr-gold);
    margin-bottom: 2.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(203, 168, 101, 0.2);
    font-style: italic;
    font-weight: 400;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.menu-item {
    position: relative;
    padding-bottom: 0.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.3rem;
}

.item-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--crema-white);
    background-color: var(--espresso-black);
    padding-right: 15px;
    z-index: 1;
}

.item-note {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
}

.item-price {
    font-family: var(--font-body);
    color: var(--dallmayr-gold);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    background-color: var(--espresso-black);
    padding-left: 15px;
    z-index: 1;
}

.item-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    max-width: 85%;
    line-height: 1.5;
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 1.1rem;
    left: 0;
    right: 0;
    border-bottom: 1px dotted rgba(253, 251, 247, 0.2);
    z-index: 0;
}

.menu-item.highlight .item-name {
    color: var(--dallmayr-gold);
}

/* Promise Section */
.promise-section {
    padding: 8rem 0;
    background: linear-gradient(rgba(10, 9, 8, 0.9), rgba(10, 9, 8, 0.9)), url('https://images.unsplash.com/photo-1509440159596-0249088772ff?auto=format&fit=crop&q=80&w=2000') center/cover fixed;
    text-align: center;
}

.promise-box {
    background-color: rgba(18, 16, 14, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(203, 168, 101, 0.2);
    padding: 5rem 3rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.gold-icon {
    font-size: 2.5rem;
    color: var(--dallmayr-gold);
    margin-bottom: 2rem;
}

.promise-box h2 {
    font-size: 2.8rem;
    font-style: italic;
    font-weight: 400;
    color: var(--crema-white);
}

.promise-box p {
    font-size: 1.25rem;
    color: var(--crema-white);
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: 8rem 0;
    background-color: var(--espresso-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.review-card {
    background: rgba(10, 9, 8, 0.5);
    border: 1px solid rgba(253, 251, 247, 0.05);
    padding: 3.5rem 2rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card:hover {
    transform: translateY(-10px);
    border-color: rgba(203, 168, 101, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: rgba(10, 9, 8, 0.8);
}

.stars {
    color: var(--dallmayr-gold);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 5px;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--crema-white);
    line-height: 1.7;
    font-weight: 400;
}

/* Footer */
.footer {
    background-color: #060504;
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(203, 168, 101, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand .brand-logo {
    height: 65px;
}

.footer-brand .tagline {
    color: var(--text-muted);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.footer-info {
    display: flex;
    gap: 5rem;
}

.info-group h4 {
    color: var(--dallmayr-gold);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.info-group p {
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(253, 251, 247, 0.05);
    color: rgba(161, 154, 149, 0.5);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-legal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-legal a {
    color: var(--dallmayr-gold);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--crema-white);
}

.footer-legal .divider {
    width: 4px;
    height: 4px;
    background-color: rgba(161, 154, 149, 0.3);
    border-radius: 50%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 9, 8, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(203, 168, 101, 0.2);
    padding: 1.5rem 0;
    z-index: 9999;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
    transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--crema-white);
    margin: 0;
    font-weight: 300;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--dallmayr-gold);
    text-decoration: none;
    border-bottom: 1px solid var(--dallmayr-gold);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: var(--espresso-black);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(203, 168, 101, 0.1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .partner-logos {
        flex-direction: column;
        gap: 3rem;
    }

    .promise-box {
        padding: 4rem 2rem;
    }
}
