@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

:root {
    --primary-blue: #003366;
    --accent-gold: #B8860B;
    --site-white: #FFFFFF;
    --site-offwhite: #F8F8F8;
    --text-dark: #1A1A1A;
    --text-muted: #4A4A4A;
    --font-serif: 'Lora', serif;
    --font-sans: 'Inter', sans-serif;
    --max-width: 1200px;
    --transition: all 0.4s ease;
    --fluid-h1: clamp(2.5rem, 8vw, 5rem);
    --fluid-h2: clamp(2rem, 6vw, 3.5rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--site-white);
    color: var(--text-dark);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 120px 5%;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Header - Persistent & Refined */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 5%;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}



nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav ul li a:hover {
    color: var(--accent-gold);
}

/* Hero Section - Centered & High Impact */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1514362545857-3bc16c4c7d1b?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: scroll;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: var(--fluid-h1);
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
}

.btn:hover {
    background: white;
    color: var(--primary-blue);
}

/* Story Section Layout */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.story-grid.reverse {
    direction: ltr;
    /* Ensure text matches image swap */
}

.story-image-main {
    height: 500px;
    box-shadow: 20px 20px 0 #f0f0f0;
}

.story-image-side {
    height: 400px;
    box-shadow: -20px 20px 0 #f0f0f0;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: var(--fluid-h2);
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.story-content h3 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-grid.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* Menu Section - Typography Focus */
.menu {
    border-top: 1px solid #eee;
}

.menu-title {
    text-align: center;
    margin-bottom: 80px;
}

.menu-title h2 {
    font-family: var(--font-serif);
    font-size: var(--fluid-h2);
    color: var(--primary-blue);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-category h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    border-bottom: 1.5px solid var(--accent-gold);
    padding-bottom: 10px;
    margin-bottom: 40px;
    text-transform: lowercase;
}

.menu-item {
    margin-bottom: 35px;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-header h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 500;
}

.menu-dots {
    flex: 1;
    border-bottom: 1px dotted #ccc;
    margin: 0 10px;
}

.menu-price {
    font-family: var(--font-serif);
    font-size: 1.2rem;
}

.menu-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 5px;
}

/* Location & Hours Section */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--site-offwhite);
}

.hours-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.hours-container h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.hours-list {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.hour-row span:first-child {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-wrapper {
    max-width: 800px;
    margin: 0 auto;
    height: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 20px 5%;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li a {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    section {
        padding: 80px 5%;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .info-section {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hours-container {
        padding: 60px 10%;
    }

    .map-wrapper {
        height: 350px;
    }

    .story-image-main,
    .story-image-side {
        height: 300px;
        box-shadow: 10px 10px 0 #f0f0f0;
    }
}