:root {
    --primary: #B91C1C;
    --primary-hover: #991b1b;
    --accent: #D4AF37;
    --accent-hover: #b3912b;
    --bg-color: #FAFAF9;
    --text-dark: #1F2937;
    --text-light: #F9FAFB;
    --nav-bg: rgba(250, 250, 249, 0.85);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
}

/* --------------------
    Navbar (Glassmorphism)
-------------------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 2rem;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* --------------------
    Hero Section
-------------------- */
.hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Absolute Positioning for the Hero Background Image */
.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Image covers the full screen. Object-position right ensures the food is anchored on the right side, giving us the left side's empty space for text. */
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    /* Adding a subtle scale animation for premium feel */
    animation: gentle-zoom 15s infinite alternate ease-in-out;
}

/* Optional gradient fade so the text is always legible if screen shrinks */
.image-fade {
    position: absolute;
    top: 0; left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, rgba(250, 250, 249, 1) 0%, rgba(250, 250, 249, 0.8) 40%, rgba(250, 250, 249, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin-left: 5%; /* Shifted further left */
    padding: 2rem;
    animation: slide-up 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6b7280;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item .icon {
    font-size: 1.25rem;
}

/* --------------------
    Buttons
-------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px; /* Pill shape */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(185, 28, 28, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(185, 28, 28, 0.5);
}

.btn-accent {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.4);
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* --------------------
    Animations
-------------------- */
@keyframes gentle-zoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

@keyframes slide-up {
    0% { 
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------
    Feature Gallery Section
-------------------- */
.feature-section {
    padding: 8rem 0;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--bg-color);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 6rem;
    margin-bottom: 8rem;
    padding: 0 4rem;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    max-width: 500px;
}

.feature-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.feature-text p {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
}

.feature-image {
    flex: 1.2;
    position: relative;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.feature-image img:hover {
    transform: scale(1.02);
}

/* --------------------
    Footer
-------------------- */
.site-footer {
    background-color: #111827; 
    color: #F9FAFB;
    padding: 6rem 4rem 2rem 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.brand-col .logo {
    color: white;
    margin-bottom: 1rem;
    display: block;
}

.brand-col p {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-hours p {
    color: #D1D5DB;
    margin-bottom: 0.5rem;
}

.sitemap ul {
    list-style: none;
    padding: 0;
}

.sitemap li {
    margin-bottom: 0.8rem;
}

.sitemap a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap a:hover {
    color: var(--accent);
}

.map-address {
    margin-top: 1rem;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6B7280;
    font-size: 0.9rem;
}

/* --------------------
    Media Queries
-------------------- */
@media (max-width: 1024px) {
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        gap: 3rem;
        padding: 0 2rem;
    }
    .feature-text {
        max-width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-title { font-size: 4rem; }
    .hero-content { margin-left: 5%; }
}


@media (max-width: 768px) {
    .nav-links { display: none; }
    
    .hero {
        align-items: flex-start;
        padding-top: 100px; /* Space for navbar */
    }
    
    .image-fade {
        width: 100%;
        background: linear-gradient(to bottom, rgba(250, 250, 249, 1) 40%, rgba(250, 250, 249, 0.8) 70%, rgba(250, 250, 249, 0) 100%);
    }

    .hero-image {
        object-position: bottom right; /* Focus on food at bottom */
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-subtitle {
        margin: 0 auto 2rem auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-features {
        justify-content: center;
    }
}

/* --------------------
    Menu Page Styles (Bennett's Inspired)
-------------------- */
.menu-hero {
    padding: 12rem 2rem 6rem;
    background-color: #111827;
    color: white;
    text-align: center;
}

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

.page-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.page-subtitle {
    font-size: 1.2rem;
    color: #9CA3AF;
}

.menu-page-container {
    max-width: 1000px;
    margin: 4rem auto 8rem;
    padding: 0 2rem;
}

.menu-category {
    margin-bottom: 4rem;
}

.menu-category h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.menu-divider {
    border: 0;
    height: 4px;
    background-color: var(--primary);
    width: 60px;
    margin-bottom: 2rem;
}

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5rem;
    border-bottom: 1px dotted #D1D5DB;
    padding-bottom: 0.5rem;
}

.menu-item-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-left: 1rem;
}

.menu-item p {
    color: #4B5563;
    line-height: 1.5;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .page-title {
        font-size: 3rem;
    }
    .menu-hero {
        padding: 10rem 1rem 4rem;
    }
}
