:root {
    --bg-color: #fdfaf1; /* Cream */
    --side-panel: #4a0404; /* Deep Burgundy */
    --main-panel: #fdfaf1; /* Cream */
    --accent: #d4af37; /* Gold */
    --accent-dark: #8c6d1a; /* Bronze */
    --text-dark: #2c2c2c; /* Charcoal */
    --text-light: #ffffff;
    --border: rgba(140, 109, 26, 0.3); /* Bronze border */
    --glass: rgba(255, 255, 255, 0.1);
    --coming-soon: #28a745; /* Green */
}
/* Apply border-box globally so padding and borders are included in element size calculations */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    margin: 0; padding: 0; height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow: hidden;
}

.app-container {
    display: grid;
    grid-template-columns: 280px 1fr 320px;
    height: 100vh;
    gap: 1px;
    background-color: var(--border);
}

.left-block {
    background-color: var(--side-panel);
    padding: 30px 20px;
    overflow-y: auto;
    border-right: 1px solid var(--border);
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-box {
    margin-bottom: 40px;
    text-align: center;
}

.logo-box h1 {
    font-family: 'Playfair Display', Arial, Helvetica, sans-serif;
    font-size: 1.6rem;
    background: linear-gradient(to bottom, #f1e5ac, #d4af37, #b08f33);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
    margin: 1px 0.3px 20px;
    filter: drop-shadow(4px 10px 6px rgba(0,0,0,0.5));
}

.nav-item {
    padding: 15px 20px;
    margin-bottom: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    color: #d1d1d1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: 1px solid transparent;
}
.nav-item.active {
    background-color: rgba(212, 175, 55, 0.2) !important; /* Soft gold glow */
    color: var(--accent) !important;                    /* Bright gold text */
    border-left: 4px solid var(--accent) !important;   /* Solid gold bar on the left */
    transform: translateX(8px);                         /* Pop it out slightly */
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.middle-block {
    background-image: linear-gradient(
        rgba(45, 30, 30, 0.7), /* Darker brown-maroon */
        rgba(60, 50, 50, 0.6)
    ), url('Images/background.jpg');
    
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Keeps the background still while scrolling */
    padding: 20px;
}

.nav-item:hover {
    color: var(--text-light);
    background-color: var(--glass);
    transform: translateX(8px);
}

.nav-item.active {
    background-color: rgba(212, 175, 55, 0.2); /* Soft gold tint */
    color: var(--accent) !important;           /* Bright gold text */
    border-left: 4px solid var(--accent);      /* Gold indicator bar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateX(10px);               /* Moves it slightly right */
    font-weight: 800;
}

.middle-block {
    background-color: var(--main-panel);
    padding: 40px;
    overflow-y: auto;
    scroll-behavior: smooth;
    scroll-behavior: smooth;
    overflow-y: auto;
}

.section-header {
    margin-bottom: 30px;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 15px;
    animation: fadeIn 1s ease-out;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--side-panel);
    font-size: 2.2rem;
    color: #D4AF37;
    text-shadow: 
        3px 3px 0px rgba(0, 0, 0, 0.8),   /* Sharp dark edge */
        6px 6px 12px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.dish-card {
    position: relative;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease-out backwards;
    overflow: hidden;
    border-radius: 8px;
}

.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--coming-soon);
    color: white;
    padding: 2px 24px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.dish-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(74, 4, 4, 0.15);
}

.dish-card img {
    width: 100%;
    /* Use aspect-ratio instead of a fixed height */
    aspect-ratio: 16 / 9; 
    object-fit: cover; /* Ensures the photo doesn't look squashed */
    transition: transform 0.6s ease;
}

.dish-card:hover img {
    transform: scale(1.05);
}

.dish-info {
    padding: 15px;
    text-align: center;
}

.dish-card .price {
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 1rem;
}

.right-block {
    background-color: var(--side-panel);
    padding: 20px 15px; /* Reduced padding to prevent horizontal scroll */
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* This distributes items: Top (Logo), Middle (Map), Bottom (Footer) */
    justify-content: space-between; 
    
    /* STOPS SCROLLING: Locks block to screen height */
    height: 100vh; 
    overflow: hidden; 
    box-sizing: border-box; 
    
    border-left: 0px;
}

.right-block h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.4rem;
    letter-spacing: 2px;
}
.find-us-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--side-panel) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
/* 1. Update your existing h1 to allow for a smooth light transition */
.logo-box h1 {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); /* Makes the "light" fade in smoothly */
    cursor: pointer;
    display: inline-block;
}
/* 2. The "Lights Appear" Hover Effect */
.logo-box h1:hover {
    /* Brightens the gold gradient colors */
    filter: brightness(1.4) contrast(1.1);
    
    /* Creates a multi-layered gold glow (The "Light" effect) */
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.8),  /* Soft inner glow */
        0 0 25px rgba(212, 175, 55, 0.5),  /* Medium outer glow */
        0 0 50px rgba(212, 175, 55, 0.3);  /* Wide atmospheric light */

    /* Optional: A very slight scale up makes it feel more "alive" */
    transform: scale(1.03);
}
.find-us-btn:hover {
    background-color: #f1e5ac;
    transform: translateY(-2px);
}
.promo-card {
    width: 240px !important;   
    height: auto !important;    
    width: 240px !important;   
    height: auto !important;    
    margin-top: auto; /* THIS pushes the map to the absolute bottom */
    margin-bottom: 20px; /* Gives it a little breathing room from the screen edge */
}
.promo-card:hover {
    border-color: #f1e5ac;
}

.promo-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.10s ease-in;
}

.logo {
    max-width: 95%; /* Increased from 80% to 95% */
    height: auto;
    display: block;
    margin: 0 auto;
}   

.promo-card:last-of-type {
    border: 1px solid var(--accent); /* Puts the line back on the map */
    background: var(--side-panel);
    padding: 5px;
    height: 300px;
}

.promo-card iframe {
    width: 100% !important;
    height: 140px !important;
    border-radius: 4px;
    margin-bottom: 10px;
}

.promo-card .promo-text {
    background: transparent !important;
    padding: 10px 0;
    font-size: 0.8rem;
}
.promo-text {
    text-align: center;
    padding: 5px 0 !important;
    background: transparent !important;
}
.promo-text span {
    display: inline-block;
    background-color: var(--accent); /* Gold background */
    color: var(--side-panel) !important; /* Dark burgundy text */
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px; /* Space above the address */
    text-transform: uppercase;
}
.promo-text p a {
    color: var(--accent) !important; /* This forces the Gold color */
    text-decoration: none !important; /* Removes the underline */
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.promo-card.map-card {
    /* Reducing this width creates more distance from the column lines */
    width: 190px !important; 
    background: rgba(0,0,0,0.3);
    border: 1.5px solid var(--accent);
    padding: 8px;
    border-radius: 8px;
    margin-top: auto;
    /* This ensures it stays perfectly centered in the gap */
    
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.5);
}
.description-banner {
    grid-column: 1 / -1; /* Spans the full width of the menu */
    background: transparent !important; /* Removes the box */
    border: none !important;           /* Removes the border */
    box-shadow: none !important;       /* Removes the shadow */
    padding: 20px 0 40px 0 !important; /* Space above and below */
    text-align: center;
}

/* 2. The Glowing Text Effect */
.description-banner p {
    color: var(--accent) !important;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 600;
    font-style: italic;
    
    /* MULTI-LAYER GLOW: Creates that 'light-up' effect */
    text-shadow: 
        0 0 10px rgba(212, 175, 55, 0.6), 
        0 0 20px rgba(212, 175, 55, 0.3);
    
    /* Optional: Subtile breathing animation to make it feel alive */
    animation: textGlow 3s ease-in-out infinite;
}
.footer-credits {
    font-size: 0.7rem;
    color: var(--accent);
    text-align: center;
    width: 100%;
    padding-bottom: 10px; /* Distance from the very bottom of the screen */
    opacity: 0.8;
    line-height: 1.4;
    text-transform: uppercase;
}
.promo-text p a:hover {
    color: #f1e5ac !important; 
}


@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
}

/* 1. THE BASE LAYOUT (Desktop & TV) */
.app-container {
    display: grid;
    /* Use 'minmax' so columns can shrink on smaller laptops */
    grid-template-columns: minmax(200px, 280px) 1fr minmax(250px, 320px);
    min-height: 100vh;
    background-color: var(--border);
}

/* 2. THE SCROLL FIX */
/* This ensures you can scroll on mobile/TV while keeping the app look on desktop */
body, html {
    margin: 0; padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    overflow-x: hidden; /* Prevents side-scrolling */
    overflow-y: auto;   /* Allows vertical scrolling on all devices */
}

/* 3. TABLET & SMALL LAPTOP (Below 1100px) */
@media (max-width: 1100px) {
    .app-container {
        /* Merge the right block into the bottom or hide it if it's too crowded */
        grid-template-columns: 240px 1fr;
    }
    .right-block {
        grid-column: span 2; /* Moves Halal info/Map to a full-width row at the bottom */
        border-left: none;
        border-top: 1px solid var(--border);
    }
}

/* 4. MOBILE PHONE (Below 768px) */
@media (max-width: 768px) {
    .app-container {
        display: flex;
        flex-direction: column; /* Stacks everything: Logo -> Menu -> Halal */
    }
    
    .left-block, .middle-block, .right-block {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .left-block {
        padding: 20px 10px;
    }
    
    /* Make the logo slightly smaller on phones */
    .logo-box h1 {
        font-size: 1.2rem;
    }
}

/* 5. BIG SCREEN / TELEVISION (Above 1900px) */
@media (min-width: 1900px) {
    .right-block {
        gap: 50px; 
    }

    .promo-card {
        max-width: 380px; /* Makes things larger for 4K Televisions */
    }

    .promo-card:last-of-type {
        height: 450px;    /* Makes the map much taller on TV */
    }
/* 1. The Pulse Animation for the Badge */
@keyframes statusPulse {
    0% {
        transform: scale(1);
        background-color: var(--coming-soon);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    50% {
        transform: scale(1.1); /* Slight grow */
        background-color: #34ce57; /* Brighter Green */
        box-shadow: 0 0 15px rgba(40, 167, 69, 0.8); /* Green Glow */
    }
    100% {
        transform: scale(1);
        background-color: var(--coming-soon);
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
}

/* 2. Apply it to your existing status-badge class */
.status-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--coming-soon);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 10;
    
    /* Apply the animation here */
    animation: statusPulse 2s infinite ease-in-out;
    pointer-events: none; /* Ensures the badge doesn't block clicks on the card */
}
}
@keyframes shineSweep {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes logoBreathing {
    0%, 100% {
        filter: brightness(1) contrast(1);
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        filter: brightness(1.4) contrast(1.1);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.8), 
                     0 0 40px rgba(212, 175, 55, 0.4);
    }
}
@keyframes textGlow {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 10px rgba(212, 175, 55, 0.4); }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(212, 175, 55, 0.8); }
}

.logo-box h1 {
    /* ... keep your existing styles ... */
    animation: logoBreathing 4s ease-in-out infinite;
}