/* CSS Custom Properties */
:root {
    /* Fonts */
    --font-serif-display: 'Playfair Display', serif;
    --font-serif-body: 'Lora', serif;
    --font-sans-ui: 'Inter', system-ui, sans-serif;
    --font-signature: 'Mrs Saint Delafield', cursive;
    
    /* Light Mode Colors */
    --aa-black: #000000;
    --aa-gray-800: #2C2C2C;
    --aa-cream: #F5F1E8;
    --aa-gold: #D4AF37;
    --aa-gold-light: #E6C547;
    --aa-gold-dark: #B8941F;
    --aa-gold-accent: #F4E4BC;
    --aa-white: #FFFFFF;
    --aa-gray-100: #F8F8F8;
    --aa-gray-200: #E5E5E5;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 24px;
    --frame-gap: 8px;
    
    /* Borders */
    --border-hairline: 1px solid var(--aa-black);
    --border-double: 2px solid var(--aa-black);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Colors */
[data-theme="dark"] {
    --aa-black: #FFFFFF;
    --aa-gray-800: #CCCCCC;
    --aa-cream: #1A1A1A;
    --aa-white: #000000;
    --aa-gray-100: #2A2A2A;
    --aa-gray-200: #404040;
    --aa-gold: #E6C547;
    --aa-gold-light: #F0D76B;
    --aa-gold-dark: #D4AF37;
    --aa-gold-accent: #3A3429;
    
    --border-hairline: 1px solid var(--aa-black);
    --border-double: 2px solid var(--aa-black);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--aa-black);
    background-color: var(--aa-cream);
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--aa-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 250px;
    padding: 20px;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 10px;
    font-family: var(--font-serif-display);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.logo-bracket {
    font-size: 8px;
}

.logo-text {
    font-size: 8px;
    letter-spacing: 0.08em;
}

.loading-title {
    font-family: var(--font-serif-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--aa-black);
}

.loading-subtitle {
    font-family: var(--font-serif-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--aa-gray-800);
}

.loading-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.loading-icon {
    width: 80px;
    height: 80px;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.loading-icon.active {
    opacity: 1;
}

/* Loading Status and Progress */
.loading-status {
    font-size: 1rem;
    color: var(--aa-gold);
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
    min-height: 1.2em;
}

.loading-progress-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--aa-gold) 0%, var(--aa-gold-light) 100%);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
}

[data-theme="dark"] .loading-progress-container {
    background: rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .loading-progress {
    background: linear-gradient(90deg, var(--aa-gold) 0%, var(--aa-gold-light) 100%);
}

/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 0.5s ease-in;
}

.main-content.hidden {
    opacity: 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(245, 241, 232, 0.95) 0%, 
        rgba(244, 228, 188, 0.9) 50%, 
        rgba(245, 241, 232, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 2px solid var(--aa-gold);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: var(--transition-smooth);
}

[data-theme="dark"] .header {
    background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(58, 52, 41, 0.9) 50%, 
        rgba(26, 26, 26, 0.95) 100%);
    border-bottom: 2px solid var(--aa-gold-light);
    box-shadow: 0 4px 20px rgba(230, 197, 71, 0.3);
}

.nav {
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
}

.nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--aa-gold) 20%, 
        var(--aa-gold-light) 50%, 
        var(--aa-gold) 80%, 
        transparent 100%);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 12px;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    align-self: center;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--aa-black);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-container {
        justify-content: space-between;
        width: 100%;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 1000;
        margin-left: 0;
    }
    
    
    .nav-right.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.5rem;
        font-weight: 600;
    }
    
    .language-selector {
        margin: 1rem 0;
    }
    
    .language-selector select {
        font-size: 16px;
        padding: 10px 15px;
    }
    
    .theme-toggle {
        margin-top: 2rem;
    }
}

/* Dark mode mobile menu styling */
@media (max-width: 768px) {
    [data-theme="dark"] .nav-right {
        background: rgba(255, 255, 255, 0.98);
    }
    
    [data-theme="dark"] .nav-right * {
        color: var(--aa-white) !important;
    }
    
    [data-theme="dark"] .nav-right .language-selector select {
        background: var(--aa-black) !important;
        color: var(--aa-white) !important;
        border-color: var(--aa-gold) !important;
    }
    
    [data-theme="dark"] .nav-right .nav-link:hover {
        color: var(--aa-gold) !important;
    }
    
    [data-theme="dark"] .nav-right .cta-button {
        color: var(--aa-white) !important;
        border-color: var(--aa-gold) !important;
    }
    
    [data-theme="dark"] .nav-right .cta-button:hover {
        background: var(--aa-gold) !important;
        color: var(--aa-black) !important;
    }
}

.nav-title {
    font-family: var(--font-serif-display);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(135deg, 
        var(--aa-black) 0%, 
        var(--aa-gold-dark) 30%, 
        var(--aa-black) 70%, 
        var(--aa-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-left: auto;
}

.nav-menu {
    display: flex;
    gap: 45px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-sans-ui);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--aa-black);
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 12px;
    border-radius: 0;
}

.nav-link:hover {
    color: var(--aa-gold-dark);
}


.cta-button {
    background: linear-gradient(135deg, var(--aa-black) 0%, var(--aa-gold-dark) 100%);
    color: var(--aa-white) !important;
    padding: 14px 28px;
    border-radius: 0;
    border: 2px solid var(--aa-gold);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--aa-gold) 0%, var(--aa-gold-light) 100%);
    color: var(--aa-black) !important;
}

.cta-button::after {
    display: none;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.language-selector select {
    background: var(--aa-white);
    border: 2px solid var(--aa-gold);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--aa-black);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 35px;
}

.language-selector select:hover {
    border-color: var(--aa-gold-dark);
    background-color: var(--aa-gold-accent);
}

.language-selector select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .language-selector select {
    background: var(--aa-black);
    color: var(--aa-white);
    border-color: var(--aa-gold);
}

[data-theme="dark"] .language-selector select:hover {
    background-color: var(--aa-gray-800);
}

/* Theme Toggle Switch */
.theme-toggle {
    position: relative;
    display: flex;
    align-items: center;
}

.theme-switch {
    display: none;
}

.theme-switch-label {
    cursor: pointer;
    display: block;
}

.theme-switch-track {
    width: 60px;
    height: 32px;
    background: var(--aa-gray-200);
    border: 1px solid var(--aa-gray-800);
    border-radius: 16px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    padding: 2px;
}

[data-theme="dark"] .theme-switch-track {
    background: var(--aa-gray-800);
    border-color: var(--aa-black);
}

.theme-switch-thumb {
    width: 28px;
    height: 28px;
    background: var(--aa-white);
    border: 1px solid var(--aa-gray-800);
    border-radius: 50%;
    position: absolute;
    left: 2px;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.theme-switch:checked + .theme-switch-label .theme-switch-thumb {
    transform: translateX(28px);
    background: var(--aa-black);
    border-color: var(--aa-white);
}

[data-theme="dark"] .theme-switch-thumb {
    background: var(--aa-black);
    border-color: var(--aa-white);
}

[data-theme="dark"] .theme-switch:checked + .theme-switch-label .theme-switch-thumb {
    background: var(--aa-white);
    border-color: var(--aa-black);
}

.theme-icon {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.sun-icon {
    color: var(--aa-gold);
    opacity: 1;
}

.moon-icon {
    color: var(--aa-gray-800);
    opacity: 0;
    position: absolute;
}

.theme-switch:checked + .theme-switch-label .sun-icon {
    opacity: 0;
}

.theme-switch:checked + .theme-switch-label .moon-icon {
    opacity: 1;
    color: var(--aa-gold);
}

[data-theme="dark"] .sun-icon {
    color: var(--aa-gold);
}

[data-theme="dark"] .moon-icon {
    color: var(--aa-gold);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.5) saturate(0.8);
    transition: filter 0.3s ease;
}

[data-theme="dark"] .hero-image {
    filter: blur(3px) brightness(0.8) saturate(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    backdrop-filter: blur(1px);
    z-index: -1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(2px);
}

.hero-content {
    text-align: center;
    color: var(--aa-white);
    max-width: 600px;
    padding: 40px;
}

[data-theme="dark"] .hero-content {
    color: var(--aa-black);
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3);
}

.hero-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-family: var(--font-serif-display);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.hero-title {
    font-family: var(--font-serif-display);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hero-title {
    text-shadow: 3px 3px 12px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-family: var(--font-serif-display);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hero-subtitle {
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 255, 255, 0.2);
}

.hero-tagline {
    font-family: var(--font-serif-body);
    font-size: 20px;
    font-style: italic;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .hero-tagline {
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.3), 0 0 12px rgba(255, 255, 255, 0.2);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-sans-ui);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: var(--border-hairline);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--aa-white);
    color: var(--aa-black);
}

.btn-primary:hover {
    background-color: var(--aa-gold);
    color: var(--aa-black);
}

.btn-secondary {
    background-color: transparent;
    color: var(--aa-white);
    border-color: var(--aa-white);
}

/* Dark mode hero buttons */
[data-theme="dark"] .btn-primary {
    background-color: var(--aa-gold);
    color: var(--aa-black);
    border-color: var(--aa-gold);
}

[data-theme="dark"] .btn-primary:hover {
    background-color: var(--aa-gold-dark);
    color: var(--aa-white);
    border-color: var(--aa-gold-dark);
}

[data-theme="dark"] .btn-secondary {
    background-color: var(--aa-black);
    color: var(--aa-white);
    border-color: var(--aa-white);
}

[data-theme="dark"] .btn-secondary:hover {
    background-color: var(--aa-white);
    color: var(--aa-black);
    border-color: var(--aa-white);
}

.btn-secondary:hover {
    background-color: var(--aa-white);
    color: var(--aa-black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Section Titles */
.section-title {
    font-family: var(--font-serif-display);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
    color: var(--aa-black);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--aa-gold-light), var(--aa-gold), var(--aa-gold-dark));
    border-radius: 1px;
}

/* Welcome Section */
.welcome {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--aa-white) 0%, var(--aa-gold-accent) 100%);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

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

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.welcome-text {
    padding-right: 40px;
}

.welcome-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: var(--aa-gray-800);
}

.welcome-info,
.welcome-weekend {
    margin-bottom: 20px;
    color: var(--aa-gray-800);
}

/* Text Highlights */
.highlight-restaurant {
    font-family: var(--font-serif-display);
    font-weight: 600;
    color: var(--aa-gold-dark);
    font-size: 1.1em;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.highlight-gold {
    font-family: var(--font-serif-display);
    font-weight: 600;
    color: var(--aa-gold);
    font-style: italic;
}

.highlight-italic {
    font-family: var(--font-serif-body);
    font-style: italic;
    color: var(--aa-gold-dark);
    font-weight: 500;
}

.highlight-french {
    font-family: var(--font-serif-display);
    font-weight: 500;
    color: var(--aa-gold);
    font-style: italic;
    text-transform: lowercase;
}

.highlight-days {
    font-family: var(--font-sans-ui);
    font-weight: 600;
    color: var(--aa-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 0.95em;
}

.highlight-time {
    font-family: var(--font-sans-ui);
    font-weight: 600;
    color: var(--aa-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
}

/* Signature */
.welcome-signature {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid var(--aa-gold);
    border-bottom: 2px solid var(--aa-gold);
    position: relative;
}

.welcome-signature::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--aa-gold);
}

.signature-text {
    font-family: var(--font-signature);
    font-size: 42px;
    color: var(--aa-gold-dark);
    margin: 0;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
}

/* Premium Gallery */
.welcome-gallery {
    position: relative;
    overflow: hidden;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    height: auto;
}

.gallery-item {
    position: relative;
    height: 300px;
    border: 2px solid var(--aa-gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
}

.gallery-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
    border-color: var(--aa-gold-light);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--aa-white);
    padding: 40px 25px 25px;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-family: var(--font-serif-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--aa-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gallery-overlay p {
    font-family: var(--font-serif-body);
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.6;
    margin: 0;
}

/* Subtle floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.gallery-item:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.gallery-item:nth-child(2) {
    animation: float 6s ease-in-out infinite 2s;
}

/* Menu Section - Premium Book-like Design */
.menu {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--aa-cream) 0%, var(--aa-gold-accent) 50%, var(--aa-cream) 100%);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23D4AF37" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23D4AF37" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23D4AF37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.menu-book {
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f8f8;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    font-family: 'Times New Roman', serif;
    min-height: 600px;
}

.menu-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(0, 0, 0, 0.05) 1px,
            rgba(0, 0, 0, 0.05) 2px
        );
    pointer-events: none;
    z-index: 1;
}

.menu-page {
    padding: 40px;
    background: white;
    display: none;
}

.menu-page.active {
    display: block;
}

.menu-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #333;
    border-bottom: 1px solid #666;
}

.menu-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: none;
    pointer-events: none;
}

.menu-page.active {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0px);
    z-index: 3;
    pointer-events: auto;
    box-shadow: 
        0 0 0 1px var(--aa-gold),
        0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-page.prev {
    opacity: 0;
    transform: rotateY(-180deg) translateZ(-300px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        -10px 0 20px rgba(0, 0, 0, 0.3),
        inset -5px 0 10px rgba(0, 0, 0, 0.1);
}

.menu-page.next {
    opacity: 0;
    transform: rotateY(180deg) translateZ(-300px);
    z-index: 1;
    pointer-events: none;
    box-shadow: 
        10px 0 20px rgba(0, 0, 0, 0.3),
        inset 5px 0 10px rgba(0, 0, 0, 0.1);
}

.page-content {
    display: block;
    height: 100%;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    padding: 0;
    background: #f8f8f8;
    font-family: 'Times New Roman', serif;
    line-height: 1.4;
}

/* Premium Newspaper Header */
.newspaper-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #f8f8f8;
    padding: 20px 30px;
    border-bottom: 3px solid var(--aa-gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.newspaper-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--aa-gold), transparent);
}

.newspaper-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
    flex: 1;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--aa-gold), #fff, var(--aa-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newspaper-date {
    font-size: 12px;
    font-weight: 400;
    text-align: left;
    font-family: 'Source Sans Pro', sans-serif;
    opacity: 0.9;
}

.newspaper-price {
    font-size: 12px;
    font-weight: 600;
    text-align: right;
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--aa-gold);
}

.newspaper-subtitle {
    font-size: 11px;
    font-weight: 300;
    text-align: center;
    width: 100%;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Source Sans Pro', sans-serif;
    color: #ccc;
    padding: 8px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

/* Premium Newspaper Content */
.newspaper-content {
    padding: 25px 30px;
    column-count: 3;
    column-gap: 25px;
    column-rule: 1px solid rgba(212, 175, 55, 0.3);
    text-align: justify;
    font-size: 13px;
    line-height: 1.6;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.newspaper-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aa-gold), transparent);
}

/* Premium Newspaper Articles */
.newspaper-article {
    break-inside: avoid;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.newspaper-article:last-child {
    border-bottom: none;
}

.article-headline {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.article-headline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--aa-gold);
}

.article-subheadline {
    font-size: 12px;
    font-style: italic;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

.article-content {
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
}

.article-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--aa-gold);
    text-align: right;
    margin-top: 8px;
    font-family: 'Source Sans Pro', sans-serif;
}

.article-byline {
    font-size: 10px;
    color: #888;
    font-style: italic;
    text-align: right;
    margin-top: 5px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

/* Premium Section Headers */
.section-header {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1a1a1a;
    border-bottom: 2px solid var(--aa-gold);
    padding-bottom: 8px;
    margin-bottom: 25px;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-header:first-child {
    margin-top: 0;
}

.section-header::before,
.section-header::after {
    content: '◆';
    color: var(--aa-gold);
    font-size: 16px;
    margin: 0 15px;
}

.section-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.section-icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

/* Premium Drop Cap */
.drop-cap {
    float: left;
    font-size: 48px;
    font-weight: 700;
    line-height: 0.8;
    margin: 0 8px 0 0;
    color: var(--aa-gold);
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Premium Info Boxes */
.info-box {
    border: 2px solid var(--aa-gold);
    padding: 15px;
    margin: 20px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    font-size: 11px;
    line-height: 1.5;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: 'Source Sans Pro', sans-serif;
}

.info-box-title {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-size: 12px;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Premium Contact Info */
.contact-info {
    font-size: 11px;
    line-height: 1.5;
    margin: 4px 0;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Premium Subscription Info */
.subscription-info {
    font-size: 11px;
    line-height: 1.5;
    margin: 4px 0;
    color: #333;
    font-family: 'Source Sans Pro', sans-serif;
}

/* Menu Item Styling */
.menu-item-newspaper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dotted rgba(212, 175, 55, 0.3);
}

.menu-item-name {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Source Sans Pro', sans-serif;
    flex: 1;
    margin-right: 15px;
}

.menu-item-description {
    font-size: 11px;
    color: #666;
    font-style: italic;
    margin-top: 2px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}

.menu-item-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--aa-gold);
    font-family: 'Source Sans Pro', sans-serif;
    white-space: nowrap;
}

.page-content .full-width {
    grid-column: 1 / -1;
}

.page-column {
    position: relative;
}

.page-title {
    font-family: var(--font-serif-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--aa-black);
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 15px 25px;
    background: var(--aa-black);
    color: var(--aa-cream);
    margin: 0 -25px 25px -25px;
    border: 2px solid var(--aa-black);
    box-shadow: 0 4px 0 var(--aa-gold);
}

.page-title::before {
    content: '◆';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aa-gold);
    font-size: 16px;
}

.page-title::after {
    content: '◆';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aa-gold);
    font-size: 16px;
}

.menu-items {
    margin-bottom: 25px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted var(--aa-black);
    transition: var(--transition-smooth);
    position: relative;
    background: var(--aa-cream);
    margin: 0 10px;
}

.menu-item:hover {
    background: linear-gradient(90deg, var(--aa-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 -5px;
    transform: translateX(5px);
    border-bottom: 1px solid var(--aa-black);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.2);
}

.item-name {
    font-family: var(--font-serif-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--aa-black);
    line-height: 1.4;
    flex: 1;
    margin-right: 20px;
    text-transform: capitalize;
    letter-spacing: 0.01em;
    font-style: italic;
}

.item-price {
    font-family: var(--font-serif-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--aa-black);
    white-space: nowrap;
    background: var(--aa-cream);
    padding: 6px 12px;
    border: 2px solid var(--aa-black);
    box-shadow: 3px 3px 0 var(--aa-gold);
    position: relative;
}

.item-price::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aa-gold);
    z-index: -1;
}

/* Featured Item */
.featured-item {
    background: linear-gradient(135deg, var(--aa-black) 0%, rgba(0, 0, 0, 0.9) 100%);
    border: 3px double var(--aa-gold);
    padding: 25px;
    margin: 25px 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 var(--aa-gold);
}

.featured-item::before {
    content: '★';
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--aa-gold);
    font-size: 20px;
    text-shadow: 0 0 10px var(--aa-gold);
}

.featured-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--aa-gold) 0%, var(--aa-black) 50%, var(--aa-gold) 100%);
}

.featured-title {
    font-family: var(--font-serif-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--aa-cream);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.featured-desc {
    font-family: var(--font-serif-body);
    font-size: 13px;
    color: var(--aa-cream);
    line-height: 1.5;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.9;
}

.featured-price {
    font-family: var(--font-serif-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--aa-black);
    background: var(--aa-gold);
    padding: 8px 16px;
    border: 2px solid var(--aa-gold);
    display: inline-block;
    box-shadow: 3px 3px 0 var(--aa-black);
    text-shadow: none;
}

/* Large Menu Items for Main Courses */
.menu-items-large {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item-large {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: var(--aa-cream);
    border: 2px solid var(--aa-black);
    border-style: double;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 4px 4px 0 var(--aa-gold);
    margin: 0 10px;
}

.menu-item-large:hover {
    background: linear-gradient(135deg, var(--aa-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 6px 6px 0 var(--aa-black);
}

.item-info {
    flex: 1;
    margin-right: 20px;
}

.item-name-large {
    font-family: var(--font-serif-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--aa-black);
    margin-bottom: 8px;
    line-height: 1.3;
    text-transform: capitalize;
    letter-spacing: 0.02em;
    font-style: italic;
}

.item-desc {
    font-family: var(--font-serif-body);
    font-size: 13px;
    color: var(--aa-black);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

.item-price-large {
    font-family: var(--font-serif-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--aa-black);
    white-space: nowrap;
    background: var(--aa-cream);
    padding: 8px 14px;
    border: 2px solid var(--aa-black);
    box-shadow: 3px 3px 0 var(--aa-gold);
    position: relative;
}

.item-price-large::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--aa-gold);
    z-index: -1;
}

/* Drinks Section */
.drinks-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drink-category {
    padding: 15px;
    background: var(--aa-cream);
    border: 1px solid var(--aa-black);
    border-style: double;
    transition: var(--transition-smooth);
    box-shadow: 2px 2px 0 var(--aa-gold);
    margin: 0 10px;
}

.drink-category:hover {
    background: linear-gradient(135deg, var(--aa-gold) 0%, rgba(212, 175, 55, 0.1) 100%);
    transform: translateY(-1px);
    box-shadow: 3px 3px 0 var(--aa-black);
}

.drink-title {
    font-family: var(--font-serif-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--aa-black);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-style: italic;
}

.drink-desc {
    font-family: var(--font-serif-body);
    font-size: 11px;
    color: var(--aa-black);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    opacity: 0.8;
}

/* Navigation Controls */
.menu-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 20px 0;
    position: relative;
    z-index: 10;
}

.nav-arrow {
    background: linear-gradient(135deg, var(--aa-gold), var(--aa-gold-dark));
    border: 3px solid var(--aa-gold-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 20px rgba(212, 175, 55, 0.4),
        0 0 0 0 rgba(212, 175, 55, 0.3);
    position: relative;
    font-weight: bold;
}

.nav-arrow::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--aa-gold-light), var(--aa-gold), var(--aa-gold-dark));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.15);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.5),
        0 0 0 8px rgba(212, 175, 55, 0.1);
}

.nav-arrow:hover::before {
    opacity: 1;
}

.nav-arrow:active {
    transform: scale(1.05);
}

.nav-arrow:disabled {
    background: var(--aa-gray-200);
    border-color: var(--aa-gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

.nav-arrow:disabled::before {
    display: none;
}

.page-indicators {
    display: flex;
    gap: 20px;
    align-items: center;
}

.page-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
}

.page-dot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aa-gold-light), var(--aa-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.page-dot.active {
    background: var(--aa-gold);
    border-color: var(--aa-gold-dark);
    transform: scale(1.3);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.page-dot.active::before {
    opacity: 1;
}

.page-dot:hover:not(.active) {
    background: rgba(212, 175, 55, 0.7);
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--aa-gold);
    border-radius: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.menu-note p {
    font-family: var(--font-serif-body);
    font-size: 14px;
    color: var(--aa-gray-800);
    margin: 0;
    line-height: 1.6;
}

.navigation-hint {
    text-align: center;
    margin: 20px 0;
    padding: 15px 20px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.navigation-hint p {
    font-family: var(--font-serif-body);
    font-size: 13px;
    color: var(--aa-gray-800);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

/* Over Oud-Elsloo Section - Premium Photo Wall */
.over-oud-elsloo {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--aa-white) 0%, var(--aa-gold-accent) 100%);
    position: relative;
    overflow: hidden;
}

.over-oud-elsloo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="vintage" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23vintage)"/></svg>');
    pointer-events: none;
}

.elsloo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.elsloo-text {
    order: 1;
    padding-right: 40px;
}

.story-text {
    margin-bottom: 40px;
}

.story-intro {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    line-height: 1.8;
    color: var(--aa-gray-800);
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}

.drop-cap {
    font-family: 'Playfair Display', serif;
    font-size: 4em;
    font-weight: 700;
    color: var(--aa-gold);
    float: left;
    line-height: 0.8;
    margin-right: 8px;
    margin-top: 4px;
    text-shadow: 2px 2px 4px rgba(212, 175, 55, 0.3);
}

.story-main {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--aa-gray-700);
    margin-bottom: 20px;
    font-weight: 400;
}

.story-ambiance {
    font-family: 'Lora', serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--aa-gray-600);
    font-style: italic;
    margin-bottom: 0;
}

.story-hint {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: var(--aa-gold-dark);
    font-style: italic;
    margin-top: 25px;
    text-align: center;
    opacity: 0.8;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding-top: 15px;
}

[data-theme="dark"] .story-hint {
    color: var(--aa-gold);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}


.elsloo-gallery {
    order: 2;
    position: relative;
}

.photo-wall {
    position: relative;
    min-height: 700px;
}

.photo-frame {
    position: absolute;
    background: var(--aa-white);
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 280px;
}

.photo-frame:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.photo-frame.frame-1 {
    top: 10px;
    left: 5px;
    transform: rotate(-8deg);
}

.photo-frame.frame-2 {
    top: 200px;
    right: 5px;
    transform: rotate(12deg);
}

.photo-frame.frame-3 {
    top: 400px;
    left: 20px;
    transform: rotate(-5deg);
}

.photo-frame:hover {
    transform: translateY(-8px) scale(1.02) rotate(0deg) !important;
}

.nail {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #8B4513 0%, #654321 100%);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.nail::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.wall-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.photo-frame:hover .wall-photo {
    transform: scale(1.02);
}

.photo-caption {
    margin-top: 12px;
    text-align: center;
}

.photo-caption h4 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--aa-gold-dark);
    margin-bottom: 4px;
    font-weight: 600;
}

.photo-caption p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: var(--aa-gray-600);
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .elsloo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .elsloo-text {
        order: 2;
        padding-right: 0;
    }
    
    .elsloo-gallery {
        order: 1;
    }
    
    .photo-wall {
        min-height: 500px;
    }
    
    .photo-frame {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        padding: 12px;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    
    .photo-frame:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
    
    .wall-photo {
        height: 150px;
    }
    
    .story-intro {
        font-size: 16px;
    }
    
    .drop-cap {
        font-size: 3em;
    }
}

/* Opening Hours & Contact Section - Premium */
.hours-contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--aa-white) 0%, var(--aa-gold-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hours-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.05"/><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.03"/><circle cx="40" cy="40" r="0.5" fill="%23d4af37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant)"/></svg>');
    pointer-events: none;
}

/* Dark mode styling */
[data-theme="dark"] .hours-contact {
    background: linear-gradient(135deg, #3d2f1a 0%, #2a1f0f 100%);
}

[data-theme="dark"] .hours-contact::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant-dark" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.08"/><circle cx="10" cy="10" r="0.5" fill="%23d4af37" opacity="0.04"/><circle cx="40" cy="40" r="0.5" fill="%23d4af37" opacity="0.04"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant-dark)"/></svg>');
}

.hours-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-family: 'Lora', serif;
    font-size: 16px;
    color: var(--aa-gold-dark);
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .section-subtitle {
    color: var(--aa-gold);
}

[data-theme="dark"] .section-icon {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

[data-theme="dark"] .section-icon:hover {
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.7));
}

/* Newspaper Photos */
.newspaper-photo {
    margin: 30px 0;
    text-align: center;
    break-inside: avoid;
}

.krant-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    filter: sepia(0.1) contrast(1.1);
    transition: all 0.3s ease;
}

.krant-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    filter: sepia(0.05) contrast(1.15);
}

.photo-caption {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: var(--aa-gray-600);
    margin-top: 8px;
    text-align: center;
    line-height: 1.4;
}

[data-theme="dark"] .photo-caption {
    color: var(--aa-gray-400);
}

[data-theme="dark"] .krant-photo {
    filter: sepia(0.1) contrast(1.1) brightness(0.9);
}

[data-theme="dark"] .krant-photo:hover {
    filter: sepia(0.05) contrast(1.15) brightness(0.95);
}

/* Hours Section */
.hours-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

[data-theme="dark"] .hours-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aa-gold) 0%, var(--aa-gold-dark) 100%);
    border-radius: 20px 20px 0 0;
}

.hours-grid {
    display: grid;
    gap: 20px;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 248, 248, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

[data-theme="dark"] .hours-day {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.hours-day:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--aa-gold);
}

.hours-day.weekend {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-color: rgba(212, 175, 55, 0.2);
}

[data-theme="dark"] .hours-day.weekend {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

.hours-day.closed {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(200, 200, 200, 0.3) 0%, rgba(240, 240, 240, 0.8) 100%);
}

[data-theme="dark"] .hours-day.closed {
    background: rgba(0, 0, 0, 0.4);
    opacity: 0.5;
}

.day-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.day {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--aa-gray-800);
}

[data-theme="dark"] .day {
    color: #ffffff !important;
}

.day-french {
    font-family: 'Lora', serif;
    font-size: 12px;
    color: var(--aa-gold-dark);
    font-style: italic;
    text-transform: lowercase;
}

[data-theme="dark"] .day-french {
    color: var(--aa-gold);
}

.time {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: var(--aa-gray-700);
    font-weight: 500;
    text-align: right;
    line-height: 1.4;
}

[data-theme="dark"] .time {
    color: var(--aa-gray-300);
}

.hours-note {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

[data-theme="dark"] .hours-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.note-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.hours-note p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: var(--aa-gray-700);
    margin: 0;
    line-height: 1.5;
}

[data-theme="dark"] .hours-note p {
    color: var(--aa-gray-300);
}

/* Contact Section */
.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

[data-theme="dark"] .contact-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--aa-gold) 0%, var(--aa-gold-dark) 100%);
    border-radius: 20px 20px 0 0;
}

.contact-grid {
    display: grid;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 248, 248, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

[data-theme="dark"] .contact-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
    border-color: var(--aa-gold);
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aa-gold) 0%, var(--aa-gold-dark) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.contact-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--aa-gold-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

[data-theme="dark"] .contact-details h3 {
    color: var(--aa-gold);
}

.contact-details p {
    font-family: 'Source Sans Pro', sans-serif;
    color: var(--aa-gray-700);
    line-height: 1.6;
    margin: 0;
}

[data-theme="dark"] .contact-details p {
    color: var(--aa-gray-300);
}

.contact-details a {
    color: var(--aa-gold-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

[data-theme="dark"] .contact-details a {
    color: var(--aa-gold);
}

.contact-details a:hover {
    color: var(--aa-gold);
    text-decoration: underline;
}

[data-theme="dark"] .contact-details a:hover {
    color: var(--aa-gold-light);
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
}

[data-theme="dark"] .contact-note {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.contact-note p {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--aa-gray-700);
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

[data-theme="dark"] .contact-note p {
    color: var(--aa-gray-300);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hours-contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hours-card,
    .contact-card {
        padding: 25px;
    }
    
    .hours-day,
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .time {
        text-align: left;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon .icon {
        width: 35px;
        height: 35px;
    }
}

/* Reservation Section - Light Mode */
.reservation {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--aa-white) 0%, var(--aa-gold-accent) 100%);
    position: relative;
}

.reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reservation-light-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="5" cy="5" r="0.3" fill="%23d4af37" opacity="0.05"/><circle cx="35" cy="35" r="0.3" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23reservation-light-pattern)"/></svg>');
    pointer-events: none;
}

.reservation-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin: 60px 0;
    position: relative;
    z-index: 2;
}

.reservation-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--aa-gold);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

/* Reservation Section - Dark Mode */
[data-theme="dark"] .reservation {
    background: linear-gradient(135deg, var(--aa-black) 0%, #1a0f0a 100%);
}

[data-theme="dark"] .reservation::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="reservation-dark-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.2"/><circle cx="5" cy="5" r="0.3" fill="%23d4af37" opacity="0.1"/><circle cx="35" cy="35" r="0.3" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23reservation-dark-pattern)"/></svg>');
}

[data-theme="dark"] .reservation-form-container {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--aa-gold);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.3);
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--aa-black);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="dark"] .form-group label {
    color: var(--aa-white);
}

/* Light Mode Form Styling */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--aa-gold);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--aa-white);
    color: var(--aa-black);
    transition: all 0.3s ease;
}

/* Dark Mode Form Styling */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--aa-gold);
    color: var(--aa-white);
    backdrop-filter: blur(5px);
}

[data-theme="dark"] .form-group input::placeholder,
[data-theme="dark"] .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Light Mode Focus States */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aa-gold-dark);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Dark Mode Focus States */
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .form-group textarea:focus {
    outline: none;
    border-color: var(--aa-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23D4AF37" stroke-width="2"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
}

.form-note p {
    color: var(--aa-gray-600);
    font-size: 0.85rem;
    font-style: italic;
}

[data-theme="dark"] .form-note p {
    color: var(--aa-gray-400);
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Light Mode Info Boxes */
.reservation-info .info-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--aa-gold);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

/* Dark Mode Info Boxes */
[data-theme="dark"] .reservation-info .info-box {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--aa-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

/* Light Mode Hover Effects */
.reservation-info .info-box:hover {
    border-color: var(--aa-gold-dark);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

/* Dark Mode Hover Effects */
[data-theme="dark"] .reservation-info .info-box:hover {
    border-color: var(--aa-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    background: rgba(0, 0, 0, 0.8);
}

.reservation-info .info-box h3 {
    font-family: var(--font-serif-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--aa-black);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

[data-theme="dark"] .reservation-info .info-box h3 {
    color: var(--aa-white);
}

.reservation-info .info-box p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--aa-gold-dark);
    margin-bottom: 8px;
}

.reservation-info .info-box span {
    color: var(--aa-gray-600);
    font-size: 0.9rem;
    font-style: italic;
}

[data-theme="dark"] .reservation-info .info-box span {
    color: var(--aa-gray-400);
}

/* Icon Styling */
.info-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-icon .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
    transition: all 0.3s ease;
}

.info-icon .icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.5));
}

.contact-icon .icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.contact-icon .icon:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.4));
}

.btn-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Dark mode icon adjustments */
[data-theme="dark"] .info-icon .icon {
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.5));
}

[data-theme="dark"] .info-icon .icon:hover {
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.7));
}

[data-theme="dark"] .contact-icon {
    background: linear-gradient(135deg, var(--aa-gold) 0%, var(--aa-gold-dark) 100%);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

[data-theme="dark"] .contact-icon:hover {
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.6);
}

[data-theme="dark"] .contact-icon .icon {
    filter: brightness(0) invert(1);
}

[data-theme="dark"] .contact-icon .icon:hover {
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(255, 255, 255, 0.5));
}

/* Form Validation Styling */
.form-group input.error, .form-group select.error, .form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.field-error {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
    font-weight: 500;
}

.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

[data-theme="dark"] .form-group input.error, [data-theme="dark"] .form-group select.error, [data-theme="dark"] .form-group textarea.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.3);
}

[data-theme="dark"] .field-error {
    color: #ff6b6b;
}

[data-theme="dark"] .form-message.success {
    background: rgba(40, 167, 69, 0.2);
    color: #90ee90;
    border-color: rgba(40, 167, 69, 0.3);
}

[data-theme="dark"] .form-message.error {
    background: rgba(220, 53, 69, 0.2);
    color: #ff6b6b;
    border-color: rgba(220, 53, 69, 0.3);
}

/* Footer */
/* Footer - Perfect UI/UX */
.footer {
    background: linear-gradient(135deg, var(--aa-white) 0%, var(--aa-gold-accent) 100%);
    color: var(--aa-gray-800);
    padding: 40px 0 20px;
    border-top: 2px solid var(--aa-gold);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.1"/><circle cx="5" cy="5" r="0.3" fill="%23d4af37" opacity="0.05"/><circle cx="35" cy="35" r="0.3" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    pointer-events: none;
}

/* Dark mode footer */
[data-theme="dark"] .footer {
    background: var(--aa-black);
    color: var(--aa-white);
}

[data-theme="dark"] .footer::before {
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern-dark" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.15"/><circle cx="5" cy="5" r="0.3" fill="%23d4af37" opacity="0.08"/><circle cx="35" cy="35" r="0.3" fill="%23d4af37" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern-dark)"/></svg>');
}

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo .logo-bracket {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--aa-gold-dark);
    font-weight: 300;
}

[data-theme="dark"] .footer-logo .logo-bracket {
    color: var(--aa-gold);
}

.footer-logo .logo-text {
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--aa-gold-dark);
    font-style: italic;
    letter-spacing: 0.5px;
}

[data-theme="dark"] .footer-logo .logo-text {
    color: var(--aa-gold);
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 8px;
    color: var(--aa-gray-800);
}

[data-theme="dark"] .footer-logo h3 {
    color: var(--aa-white);
}

.footer-subtitle {
    font-family: 'Lora', serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    margin-top: 5px;
    color: var(--aa-gold-dark);
    font-style: italic;
}

[data-theme="dark"] .footer-subtitle {
    color: var(--aa-gold);
}

.footer-tagline {
    font-family: 'Lora', serif;
    font-size: 16px;
    font-style: italic;
    margin: 20px 0 25px;
    color: var(--aa-gray-600);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

[data-theme="dark"] .footer-tagline {
    color: var(--aa-gray-300);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--aa-gold-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

[data-theme="dark"] .social-link {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--aa-gold);
}

.social-link:hover {
    background: var(--aa-gold);
    color: var(--aa-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

[data-theme="dark"] .social-link:hover {
    background: var(--aa-gold);
    color: var(--aa-black);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--aa-gray-500);
    font-size: 13px;
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    z-index: 1;
}

[data-theme="dark"] .footer-bottom {
    color: var(--aa-gray-400);
    border-top: 1px solid rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
    }
    
    .nav-right {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .signature-text {
        font-size: 36px;
    }
    
    .gallery-overlay {
        padding: 30px 20px 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 20px;
    }
    
    .gallery-overlay p {
        font-size: 14px;
    }
    
    .newspaper-content {
        column-count: 1;
        padding: 15px 20px;
    }
    
    .menu-page {
        padding: 20px;
    }
    
    .newspaper-title {
        font-size: 24px;
        margin-bottom: 5px;
    }
    
    .newspaper-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .section-header {
        font-size: 20px;
        margin: 20px 0 15px;
        padding: 10px 0;
        gap: 10px;
    }
    
    .section-icon {
        width: 28px;
        height: 28px;
    }
    
    .newspaper-photo {
        margin: 20px 0;
    }
    
    .krant-photo {
        max-width: 250px;
    }
    
    .photo-caption {
        font-size: 11px;
        margin-top: 6px;
    }
    
    .newspaper-article {
        margin-bottom: 25px;
        padding: 15px;
        break-inside: avoid;
    }
    
    .article-headline {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .article-subheadline {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .article-content {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .menu-item-newspaper {
        padding: 8px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
    }
    
    .menu-item-name {
        font-size: 14px;
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }
    
    .menu-item-description {
        font-size: 12px;
        color: var(--aa-gray-600);
        margin-top: 2px;
        line-height: 1.3;
    }
    
    .menu-item-price {
        font-size: 14px;
        font-weight: 700;
        color: var(--aa-gold-dark);
        white-space: nowrap;
        margin-left: 10px;
    }
    
    .info-box {
        padding: 15px;
        margin: 20px 0;
        font-size: 12px;
    }
    
    .info-box-title {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .contact-info {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .article-byline {
        font-size: 11px;
        margin-top: 10px;
    }
    
    .drop-cap {
        font-size: 2.5em;
        line-height: 0.8;
        margin-right: 4px;
    }
    
    /* Menu Navigation Mobile */
    .menu-navigation {
        padding: 20px 10px;
        gap: 15px;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--aa-gold);
        color: var(--aa-white);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        touch-action: manipulation;
    }
    
    .nav-arrow:hover {
        background: var(--aa-gold-dark);
        transform: scale(1.1);
    }
    
    .nav-arrow:active {
        transform: scale(0.95);
    }
    
    .nav-arrow svg {
        width: 24px;
        height: 24px;
    }
    
    .page-indicators {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .page-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        cursor: pointer;
        transition: all 0.3s ease;
        touch-action: manipulation;
    }
    
    .page-dot.active {
        background: var(--aa-gold);
        transform: scale(1.2);
    }
    
    .page-dot:hover {
        background: var(--aa-gold);
        transform: scale(1.1);
    }
    
    .navigation-hint {
        text-align: center;
        margin-top: 15px;
        font-size: 12px;
        color: var(--aa-gray-600);
        font-style: italic;
    }
    
    /* Dark mode mobile menu */
    [data-theme="dark"] .menu-item-price {
        color: var(--aa-gold);
    }
    
    [data-theme="dark"] .menu-item-description {
        color: var(--aa-gray-400);
    }
    
    [data-theme="dark"] .navigation-hint {
        color: var(--aa-gray-400);
    }
    
}
    
    .page-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .menu-item {
        padding: 12px 0;
    }
    
    .item-name {
        font-size: 16px;
    }
    
    .item-price {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .featured-item {
        padding: 20px;
        margin-top: 25px;
    }
    
    .featured-title {
        font-size: 18px;
    }
    
    .featured-desc {
        font-size: 13px;
    }
    
    .featured-price {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .menu-item-large {
        padding: 15px;
    }
    
    .item-name-large {
        font-size: 18px;
    }
    
    .item-desc {
        font-size: 14px;
    }
    
    .item-price-large {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .drink-category {
        padding: 15px;
    }
    
    .drink-title {
        font-size: 14px;
    }
    
    .drink-desc {
        font-size: 13px;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
    }
    
    .page-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-tagline {
        font-size: 16px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .welcome-content,
    .oud-elsloo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .welcome-text {
        padding-right: 0;
    }
    
    .oud-elsloo-text {
        padding-left: 0;
        order: 2;
    }
    
    .oud-elsloo-image {
        order: 1;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo h3 {
        font-size: 24px;
    }
    
    .footer-tagline {
        font-size: 15px;
        margin: 15px 0 20px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
    }

/* Accessibility - Focus states */
.nav-link:focus,
.cta-button:focus,
.hamburger:focus,
.social-link:focus,
.nav-arrow:focus,
.theme-switch:focus {
    outline: 2px solid var(--aa-gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

/* Skip to content link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--aa-gold);
    color: var(--aa-black);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-weight: 600;
    font-family: 'Source Sans Pro', sans-serif;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link:focus,
    .cta-button:focus,
    .hamburger:focus,
    .social-link:focus,
    .nav-arrow:focus,
    .theme-switch:focus {
        outline: 3px solid;
        outline-offset: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    /* Menu optimizations for very small screens */
    .newspaper-content {
        padding: 10px 15px;
    }
    
    .menu-page {
        padding: 15px;
    }
    
    .newspaper-title {
        font-size: 20px;
    }
    
    .newspaper-subtitle {
        font-size: 10px;
    }
    
    .section-header {
        font-size: 18px;
        margin: 15px 0 10px;
        gap: 8px;
    }
    
    .section-icon {
        width: 24px;
        height: 24px;
    }
    
    .newspaper-photo {
        margin: 15px 0;
    }
    
    .krant-photo {
        max-width: 200px;
    }
    
    .photo-caption {
        font-size: 10px;
        margin-top: 5px;
    }
    
    .newspaper-article {
        margin-bottom: 20px;
        padding: 10px;
    }
    
    .article-headline {
        font-size: 14px;
    }
    
    .article-subheadline {
        font-size: 11px;
    }
    
    .article-content {
        font-size: 12px;
    }
    
    .menu-item-newspaper {
        padding: 6px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .menu-item-name {
        font-size: 13px;
    }
    
    .menu-item-description {
        font-size: 11px;
    }
    
    .menu-item-price {
        font-size: 13px;
        margin-left: 0;
        align-self: flex-end;
    }
    
    .info-box {
        padding: 10px;
        margin: 15px 0;
        font-size: 11px;
    }
    
    .info-box-title {
        font-size: 12px;
    }
    
    .contact-info {
        font-size: 10px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
    }
    
    .nav-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .page-dot {
        width: 10px;
        height: 10px;
    }
    
    .navigation-hint {
        font-size: 11px;
    }
}
    
    .section-title {
        font-size: 28px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .welcome,
    .over-oud-elsloo,
    .opening-hours,
    .contact,
    .reservation {
        padding: 60px 0;
    }
    
    .reservation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reservation-form-container {
        padding: 25px;
    }
    
    .reservation-info .info-box {
        padding: 20px;
    }
