:root {
    /* --- Color Palette --- */
    --primary-color: #A62924; /* Deep Red/Burgundy - Main Brand Color */
    --secondary-color: #F8F4E3; /* Creamy off-white - Background */
    --accent-color: #38312C; /* Dark Brown/Coffee - Text/Accents */
    --text-light: #F0F0F0; /* Light Text for dark backgrounds */
    --shadow-color: rgba(0, 0, 0, 0.1);

    /* --- Typography --- */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;

    /* --- Spacing & Radius --- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --spacing-lg: 4rem;
    --spacing-md: 2rem;
    --spacing-sm: 1rem;
    --spacing-xs: 0.5rem;
}

/* ========================================================= */
/* 1. Base Styles, Resets & Typography */
/* ========================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--accent-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
}

a:hover, a:focus {
    color: var(--accent-color);
    opacity: 0.9;
    outline: none; /* Handled by specific components */
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 5vw, 3rem); }
h3 { font-size: 1.75rem; }

section {
    padding: var(--spacing-lg) 5%;
    text-align: center;
    position: relative; /* For section separation effects */
}

/* ========================================================= */
/* 2. Utility Classes & Reusable Components */
/* ========================================================= */

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.shadow-lg {
    box-shadow: 0 10px 30px var(--shadow-color);
}

/* --- Buttons (CTA) --- */
.cta-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(166, 41, 36, 0.4);
}

.cta-button:hover, .cta-button:focus {
    background-color: #7D1F1C; /* Darker primary */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(166, 41, 36, 0.6);
    color: white; /* Maintain text color on focus/hover */
    outline: 2px solid white; /* Accessibility focus ring */
    outline-offset: -5px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.secondary-button:hover, .secondary-button:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}


/* ========================================================= */
/* 3. Header & Navigation */
/* ========================================================= */
.main-header {
    background-color: var(--secondary-color);
    padding: var(--spacing-sm) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: var(--spacing-md);
}

.desktop-nav a {
    color: var(--accent-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

/* Navigation Underline Effect */
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease-out;
}
.desktop-nav a:hover::after,
.desktop-nav a:focus::after {
    width: 100%;
}

.mobile-nav-toggle, .mobile-nav {
    display: none; 
}


/* ========================================================= */
/* 4. Section Specific Styles */
/* ========================================================= */

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('placeholder-hero-image.jpg') center/cover no-repeat fixed; /* Added fixed parallax effect */
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: var(--spacing-md);
    animation: fadeInDown 1s ease-out;
}
.hero-content h1 {
    color: white;
    text-shadow: 0 2px 4px var(--shadow-color);
}
.hero-content p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

/* --- Menu Snapshot Section --- */
.menu-snapshot-section {
    background-color: white;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Use grid for better alignment */
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1100px;
    margin: var(--spacing-lg) auto;
}

.dish-card {
    background-color: var(--secondary-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.dish-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.dish-photo {
    height: 250px;
    width: 100%;
    background-color: #ddd; /* Placeholder background */
    background-size: cover;
    background-position: center;
}
.dish-card h3, .dish-card p {
    padding: 0 var(--spacing-md);
}
.dish-card p {
    padding-bottom: var(--spacing-md);
    font-size: 0.95rem;
}


/* --- About Section --- */
.about-section {
    background-color: var(--secondary-color);
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.about-image {
    height: 400px;
    background-color: #ccc;
    border-radius: var(--radius-md);
    box-shadow: 5px 5px 15px var(--shadow-color);
}
.about-text {
    padding: var(--spacing-sm);
}

/* --- Location & Reservations --- */
.location-section {
    background-color: white;
}
.location-info {
    max-width: 800px;
    margin: var(--spacing-md) auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    text-align: left;
}
.location-info p {
    grid-column: span 2;
    font-size: 1.1rem;
}

.map-placeholder {
    grid-column: 1 / -1; /* Spans across both columns */
    height: 350px;
    background-color: #ccc;
    border: 1px solid #aaa;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.reservation-form {
    max-width: 500px;
    margin: var(--spacing-md) auto;
    padding: var(--spacing-md);
    background-color: white;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 10px var(--shadow-color);
    text-align: left;
}
.reservation-form input {
    width: 100%;
    padding: 1rem;
    margin-bottom: var(--spacing-sm);
    border: 1px solid #ccc;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.reservation-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(166, 41, 36, 0.3);
    outline: none;
}


/* ========================================================= */
/* 5. Footer */
/* ========================================================= */
footer {
    background-color: var(--accent-color);
    color: white;
    padding: var(--spacing-md) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

footer a {
    color: var(--text-light);
    margin-left: var(--spacing-xs);
}
footer a:hover, footer a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ========================================================= */
/* 6. Mobile Responsiveness & Animations */
/* ========================================================= */

@media (max-width: 768px) {
    /* General Adjustments */
    section { padding: var(--spacing-md) 5%; }
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .hero-section { height: 70vh; background-attachment: scroll; } /* Disable parallax on mobile */

    /* Navigation */
    .desktop-nav { display: none; }
    .mobile-nav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary-color);
        z-index: 1001; /* Ensure button is on top */
    }
    /* Mobile Menu styles remain similar to original */
    /* ... */

    /* Layouts */
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; 
        height: 250px;
        width: 100%;
    }

    .dishes-grid {
        gap: var(--spacing-md);
    }
    .dish-card {
        max-width: none;
    }

    .location-info {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        text-align: center;
    }
    .location-info p {
        grid-column: span 1;
    }

    footer {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Keyframe Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-select {
  position: relative;
  display: inline-block;
}

.styled-select {
  padding: 10px 35px 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff url('data:image/svg+xml;utf8,<svg fill="black" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M4 6l4 4 4-4"/></svg>') no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 15px;
  cursor: pointer;
}
/* small focus state for accessibility */
.styled-select:focus {
  outline: 2px solid rgba(166,41,36,0.25);
  outline-offset: 2px;
}

/* hide mobile menu button */
.mobile-nav-toggle {
  display: none !important;
  /* optional for assistive tech */
  aria-hidden: true;
}