/* ==========================================================================
   1. VARIABLES & BASE RESETS
   ========================================================================== */
:root {
    --bg-main: #fdfbf7;         /* Warm, elegant cream background */
    --bg-card: #ffffff;         /* Pure white for distinct cards */
    --text-primary: #1c1512;    /* Deep, elegant charcoal */
    --text-muted: #5c524d;       /* Soft, highly readable clay-grey */
    --accent-color: #8c2d19;    /* Luxurious terracotta/culinary red */
    --accent-hover: #6e2010;    /* Deep crimson for interactive states */
    --star-gold: #d4af37;       /* Metallic gold for five-star ratings */
    --success-green: #2e7d32;   /* Elegant green for operational status */
    
    /* Elegant Google Fonts Upgrades */
    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* FIX: Prevents fixed navbar from cutting off section headings when clicked */
section {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   2. REUSABLE COMPONENTS & TYPOGRAPHY
   ========================================================================== */
.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 24px;
    text-align: center;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 12px;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--text-primary);
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 16px 38px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(140, 45, 25, 0.25);
}

/* ==========================================================================
   3. LIVE OPERATIONAL STATUS BADGE
   ========================================================================== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(46, 125, 50, 0.08);
    border: 1px solid rgba(46, 125, 50, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--success-green);
}

/* The Live Pulsing Dot Effect */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success-green);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--success-green);
    border-radius: 50%;
    left: 0;
    top: 0;
    animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* ==========================================================================
   4. NAVIGATION BAR (DESKTOP STATE)
   ========================================================================== */
.navbar {
    background-color: rgba(253, 251, 247, 0.96);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(28, 21, 18, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1010;
}

.brand-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.menu-toggle {
    display: none;
}

.hamburger-label {
    display: none; /* Hidden on desktop viewports */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1010;
}

.hamburger-label span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links .nav-cta {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-links .nav-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
    padding: 200px 24px 120px 24px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1.2s ease-out;
}

.hero-subtext {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
}

.hero-section h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* ==========================================================================
   6. ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: #f7f4ee;
}

.about-section p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
}

/* ==========================================================================
   7. MULTI-CARD GRID LAYOUT
   ========================================================================== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Perfect columns on desktop screen widths */
    gap: 32px;
    margin-top: 50px;
}

.menu-card {
    background-color: var(--bg-card);
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(28, 21, 18, 0.02);
    border: 1px solid rgba(28, 21, 18, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(28, 21, 18, 0.06);
}

.menu-image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #eee;
}

.menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-image {
    transform: scale(1.04);
}

.menu-card-content {
    padding: 32px;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.menu-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   8. REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background-color: #f7f4ee; 
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.review-card {
    background-color: var(--bg-card);
    padding: 44px 36px;
    border-radius: 8px;
    text-align: left;
    border: 1px solid rgba(28, 21, 18, 0.03);
    box-shadow: 0 4px 15px rgba(28, 21, 18, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--star-gold);
    font-size: 1.1rem;
    margin-bottom: 18px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(28, 21, 18, 0.06);
    padding-top: 16px;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   9. FOOTER SECTION
   ========================================================================== */
.site-footer {
    background-color: #1c1512;
    color: #e5deda;
    padding: 80px 24px 30px 24px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    border-bottom: 1px solid rgba(229, 222, 218, 0.1);
    padding-bottom: 48px;
}

.footer-brand h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #b0a49e;
}

.footer-info h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.footer-info p {
    color: #e5deda;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
}

.footer-info .clickable-phone {
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
}

.footer-bottom {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #8c807a;
    font-size: 0.85rem;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   10. DEVICE MEDIA QUERIES (MULTI-BREAKPOINT OPTIMIZATION)
   ========================================================================== */

/* --- TABLETS & LAPTOPS --- */
@media (max-width: 1024px) {
    .menu-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr); /* Clean 2-column distribution */
        gap: 24px;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
}

/* --- MOBILE SMARTPHONES (Logo Left, Hamburger Right Activation) --- */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 20px;
    }
    
    .brand-logo {
        height: 42px; /* Elegant smaller mobile dimensions */
    }

    /* Enables visibility of the native Right-Side Hamburger trigger element */
    .hamburger-label {
        display: flex;
    }

    /* Transforms main standard desktop link row into a premium vertical app drawer */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Keeps drawer off-screen until tapped */
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); /* Silk-smooth slide transition animation */
        z-index: 1000;
        padding: 40px;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    /* PURE CSS INTERACTIVE PANEL TRIGGERS: Changes burger bars into a crisp close 'X' */
    .menu-toggle:checked ~ .hamburger-label span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background-color: var(--accent-color);
    }
    
    .menu-toggle:checked ~ .hamburger-label span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .hamburger-label span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
        background-color: var(--accent-color);
    }

    /* Forces mobile drawer forward onto screen area viewport */
    .menu-toggle:checked ~ .nav-links {
        right: 0;
    }

    /* Mobile Text & Grid Rescale Optimization Rules */
    .hero-section {
        padding-top: 160px;
    }
    .hero-section h1 {
        font-size: 2.4rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .menu-grid, .reviews-grid {
        grid-template-columns: 1fr; /* 1 clean card row for smooth smartphone thumb-scrolling */
        gap: 30px;
    }
}