/* 
    L'AROMA - Luxury European Fine-Dining Aesthetic
    Design: Michelin-Star Editorial
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* Color Palette */
    --bg-primary: #F5F1E8;   /* Warm Ivory */
    --bg-secondary: #E7DDCC; /* Soft Cream */
    --accent-gold: #C8A96B;  /* Soft Champagne Gold */
    --accent-wood: #8A6442;  /* Deep Warm Wood Brown */
    --accent-olive: #6D725F; /* Muted Olive Gray */
    --text-main: #2B2A28;    /* Charcoal Typography */
    --text-muted: #7A746B;   /* Warm Gray Secondary */
    --border-soft: rgba(43, 42, 40, 0.1);
    
    /* Spacing & Borders */
    --section-padding: 8rem 10%;
    --mobile-section-padding: 4rem 5%;
    --border-radius: 2px;
}

@media (max-width: 900px) {
    :root {
        --section-padding: 5rem 6%;
    }
}

@media (max-width: 600px) {
    :root {
        --section-padding: 4rem 5%;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--text-main);
}

/* Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 75px;
    border-bottom-color: var(--border-soft);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
    color: var(--accent-gold); /* Golden Branding */
    text-decoration: none;
    transition: all 0.4s;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav.scrolled .logo {
    color: var(--accent-gold);
    text-shadow: none;
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95); /* White on hero */
    font-size: 0.85rem; /* Increased for better legibility */
    text-transform: uppercase;
    letter-spacing: 0.2rem; /* Refined for premium feel */
    font-weight: 600;
    transition: all 0.4s;
    padding: 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

nav.scrolled .nav-links a {
    color: var(--text-main);
    text-shadow: none;
}

/* Sophisticated Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--accent-gold) !important;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: #1a1a18; /* Dark so white text is readable while video loads */
    overflow: hidden;
    padding: 0 8%;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-media video, .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform: translateZ(0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, rgba(15, 14, 12, 0.1) 0%, rgba(15, 14, 12, 0.3) 100%),
        linear-gradient(to bottom, transparent 0%, transparent 80%, rgba(245, 241, 232, 1) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: left;
    max-width: 800px;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero-title-main {
    display: block;
    font-weight: 500;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.01em;
    margin-bottom: 0.3rem;
}

.hero-title-sub {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: var(--accent-gold);
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.06rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    max-width: 550px;
    text-align: left;
}

.hero-divider {
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    margin: 2rem 0;
}

/* Sections */
section {
    padding: var(--section-padding);
}

/* Hero CTA Button */
.hero-btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    border: 1px solid var(--accent-gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    background: rgba(200, 169, 107, 0.12);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-btn:hover {
    background: var(--accent-gold);
    color: #1a1a18;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero {
        padding: 0 6%;
    }
    .hero-content {
        max-width: 100%;
        padding-left: 1.2rem;
    }
    .hero-btn {
        padding: 1rem 2.5rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 0 5%;
        align-items: center;
        height: 100svh;
        min-height: 100vh;
    }
    .hero-content {
        padding-left: 0;
        text-align: center;
        border-left: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }
    .hero-content h1 {
        text-align: center;
    }
    .hero-subtitle {
        text-align: center;
        margin: 0 auto 3rem auto;
    }
    .hero-divider {
        margin: 2rem auto !important;
    }
}

.section-label {
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

@media (max-width: 600px) {
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    .section-cta-title {
        font-size: 2.5rem;
    }
    .cta-section {
        padding: 6rem 5% !important;
    }
}



/* Story Block */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .story-block {
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .story-block { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
        text-align: center;
    }
    
    .story-text {
        order: 2;
    }
    
    .image-frame {
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }
}


.story-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}

.image-frame {
    width: 100%;
    height: auto;
    position: relative;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Menu Highlights */
.menu-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.menu-card {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-soft);
}

.menu-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    margin-bottom: 2rem;
}

.menu-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.menu-card .price {
    color: var(--accent-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Professional Buttons - Universal Visibility */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--text-main);
    color: var(--bg-primary);
}

/* Specific button state for dark/hero backgrounds */
.hero .btn-primary,
section[style*="background: linear-gradient"] .btn-primary,
footer .btn-primary {
    border-color: rgba(255, 255, 255, 0.5);
    color: #FFFFFF;
}

.hero .btn-primary:hover,
section[style*="background: linear-gradient"] .btn-primary:hover,
footer .btn-primary:hover {
    background: #FFFFFF;
    color: var(--text-main);
    border-color: #FFFFFF;
}

/* Nav Button logic remains consistent */
nav .btn-primary {
    border-color: rgba(255, 255, 255, 0.8);
    color: #FFFFFF;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav.scrolled .btn-primary {
    border-color: var(--text-main);
    color: var(--text-main);
    text-shadow: none;
    box-shadow: none;
}

nav.scrolled .btn-primary:hover {
    background: var(--text-main);
    color: var(--bg-primary);
}

.btn-gold {
    border-color: var(--accent-gold) !important;
    color: var(--accent-gold) !important;
}

.btn-gold:hover {
    background: var(--accent-gold) !important;
    color: var(--bg-primary) !important;
}

/* Footer - Ultimate Boutique Excellence */
footer {
    background: var(--bg-secondary);
    padding: 10rem 10% 5rem;
    border-top: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 6rem;
    margin-bottom: 8rem;
    position: relative;
}

.footer-brand-column {
    padding-right: 4rem;
    border-right: 1.5px solid var(--accent-gold); /* Vertical brand axis */
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.4rem;
    color: var(--accent-gold);
    font-weight: 700;
}

.footer-brand-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 2;
    max-width: 380px;
    font-weight: 400;
}

.footer-links h4 {
    color: var(--accent-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(8px);
}

.footer-contact-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 2.2;
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
}

.footer-bottom-links span {
    opacity: 0.6;
}

@media (max-width: 1100px) {
    .footer-content { grid-template-columns: 1fr 1fr; gap: 4rem; }
    .footer-brand-column { border-right: none; padding-right: 0; padding-bottom: 3rem; border-bottom: 1.5px solid var(--accent-gold); }
}

@media (max-width: 700px) {
    .footer-content { grid-template-columns: 1fr; }
    footer { padding: 8rem 8% 4rem; }
}

/* Responsive - Mobile Optimization */
@media (max-width: 900px) {
    section { padding: var(--section-padding); }
    
    .hero-content {
        margin-left: 0 !important;
        max-width: 100% !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-subtitle {
        margin-bottom: 3rem !important;
        font-size: 1.1rem !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        margin-bottom: 2rem !important;
    }

    .hero-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }

    nav {
        padding: 0 5%;
        background: rgba(245, 241, 232, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .logo {
        position: relative;
        z-index: 10005 !important;
        color: var(--text-main) !important;
    }

    /* Modern Hamburger Icon */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 10005 !important;
    }

    .menu-toggle span {
        width: 100%;
        height: 2px;
        background: var(--accent-gold) !important;
        transition: none !important;
    }

    .menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Mobile Menu Overlay */
    nav .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: var(--bg-primary);
        display: flex !important;
        opacity: 0;
        pointer-events: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 1000;
        list-style: none;
        padding-top: 4rem;
        transition: none !important;
    }

    nav .nav-links.active {
        opacity: 1;
        pointer-events: all;
    }

    nav .nav-links a {
        font-size: 1.5rem;
        color: var(--text-main) !important;
    }

    /* Mobile CTA button instead of hidden */
    nav .btn-primary {
        display: none !important;
    }
}


@media (max-width: 600px) {
    .category-header h2 { font-size: 2.2rem !important; }
    .hero h1 span { font-size: 2.4rem !important; }
    .hero h1 span:nth-child(2) { font-size: 2rem !important; }
    .footer-bottom { 
        flex-direction: column; 
        gap: 2rem; 
        text-align: center; 
    }
    
    /* Global heading adjustments for mobile */
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    .hero-content h1 span { font-size: 2.5rem !important; }
    
    /* Grid fixes */
    .menu-highlight-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .luxury-card {
        padding: 1.5rem;
    }
    .luxury-card > div {
        padding: 0 1rem 1rem !important;
    }
    
    .story-block {
        gap: 3rem;
    }

    .container {
        padding: 0 6%;
    }

    .section-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .section-label {
        font-size: 0.65rem !important;
        letter-spacing: 0.15rem !important;
        margin-bottom: 1.5rem !important;
    }
}


@media (max-width: 900px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Forms - Responsive Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.anfrage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .form-grid, .anfrage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Forms - Luxury Design */
.form-group {
    margin-bottom: 2rem;
}

input, select, textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-soft);
    padding: 1rem 0;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-main);
    transition: border-color 0.4s;
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-bottom-color: var(--accent-gold);
}

label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* Cards (Redefined for understated luxury) */
.luxury-card {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-soft);
}

.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    width: 100%;
}

@media (max-width: 900px) {
    .page-header {
        padding: 6rem 0 3rem;
    }
}

@media (max-width: 600px) {
    .page-header {
        padding: 5rem 0 2.5rem;
    }
    .page-header h1 {
        font-size: 2.2rem !important;
        line-height: 1.2;
        text-align: center;
    }
}

/* Page Specific Responsiveness Utilities */
.responsive-main {
    padding-top: 100px; /* Aligned with nav height */
}

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

@media (max-width: 1024px) {
    .reservation-grid { gap: 3rem; }
    .responsive-main { padding: 8rem 5% 4rem !important; }
}

@media (max-width: 900px) {
    .reservation-grid { grid-template-columns: 1fr; gap: 4rem; }
    .reservation-card { padding: 2.5rem !important; }
    .responsive-main { padding-top: 8rem !important; }
}

@media (max-width: 600px) {
    .reservation-card { padding: 2rem 1.5rem !important; }
    .responsive-main { padding: 7rem 5% 3rem !important; }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid { gap: 3rem; }
}

@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid div { padding-right: 0 !important; }
    .contact-card { padding: 2rem 1.5rem !important; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--border-soft);
}

.stat-number {
    font-size: 4rem;
    color: var(--accent-gold);
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stat-item {
        border-right: none !important;
        border-bottom: 1px solid var(--border-soft);
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .stat-number {
        font-size: 3rem;
    }
}

.legal-content {
    padding: 12rem 10% 8rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--accent-gold);
    margin-bottom: 3rem;
    font-size: clamp(2.5rem, 8vw, 3.5rem);
}

@media (max-width: 900px) {
    .legal-content {
        padding: 8rem 6% 4rem;
    }
}

@media (max-width: 600px) {
    .legal-content {
        padding: 7rem 5% 3rem;
    }
}




