:root {
    --zesty-green: #4CAF50; 
    --deep-green: #1B5E20;  
    --fresh-white: #ffffff;
    --heat-red: #D32F2F;    
    --light-bg: #F1F8E9;   
    --spice-orange: #FF6B35; 
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
    background-color: var(--light-bg);
}

h1, h2, h3 {
    /* Kurale has a beautiful Indic-calligraphy feel */
    font-family: 'Kurale', serif; 
    font-weight: 400; /* Kurale looks best at regular weight */
    color: var(--deep-green);
    text-transform: none; /* Let the font's natural curves show */
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Optional: Add a spicy accent to your H1 or specific words */
h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--royal-gold);
    display: inline-block;
    padding-bottom: 5px;
}

/* LIVE LOCATION BANNER */
.location-banner {
    color: black;
    text-align: center;
    padding: 12px;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* HEADER */
header {
    background: var(--deep-green);
    color: var(--fresh-white);
    padding: 1.5rem;
    text-align: center;
    border-bottom: 5px solid var(--zesty-green);
}
header h1 { margin: 0; color: var(--fresh-white); font-size: 2.8rem; line-height: 1; }
header span { color: var(--zesty-green); }
.tagline-sub { 
    font-size: 1rem; 
    font-weight: 400; 
    color: #C8E6C9; 
    margin-top: 5px;
    letter-spacing: 2px;
}

/* HERO SECTION */
.hero {
    /* White Gradient + Working Samosa Photo */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%), 
                url('assets/banner.png') no-repeat center center;
    
    /* Zoomed in 140% to focus on textures and straight angle position */
    background-size: 100%; 

    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 20px;
}

.hero-content h2 {
    color: #000000;            /* Black letters */
    background-color: #ffffff; /* White background */
    font-size: 3.5rem;
    margin-bottom: 0;
    line-height: 1.1;
    
    /* These additions make it look professional */
    display: inline-block;     /* Wraps the white background tightly around the text */
    padding: 10px 30px;        /* Adds space inside the white box */
    text-transform: uppercase;
}
/* THE NEW TAGLINE STYLING */
.main-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--zesty-green);
    margin-top: 10px;
    text-transform: none;
}

.btn-spicy {
    background: var(--zesty-green);
    color: var(--deep-green);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 30px;
}
.btn-spicy:hover {
    background: var(--fresh-white);
    transform: scale(1.05);
}

.section { padding: 4rem 10%; text-align: center; background: var(--fresh-white); }

/* MENU PREVIEW */
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 3rem; }
.menu-item { background: #fff; border: 1px solid #eee; border-radius: 15px; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

/* --- MENU CARD CONTAINER --- */
.menu-section {
    background-color: #fafdfa;
    border-radius: 15px;
    padding: 25px; /* Equal padding for both ensures perfect alignment */
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    box-sizing: border-box; /* Crucial for alignment */
}

.menu-card {
        display: flex;
        flex-direction: row;
        gap: 30px;
        align-items: flex-start; /* Keeps tops aligned */
        justify-content: center;
        flex-wrap: wrap; /* Allows stacking on small screens */
    }

/* Give the Curry section more space than the Snacks */
.menu-card .menu-section:first-child {
    flex: 1; /* Street Snacks */
    min-width: 300px;
}

.menu-card .menu-section:last-child {
    flex: 2; /* Curry Boxes */
    min-width: 500px; /* Ensures the 3 columns inside don't squash too much */
}

.menu-section h3, .menu-section h4 {
    margin-top: 0; 
}
/* Basic styling for the menu lists */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    padding: 10px; 
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-weight: 600;
}

.section-title {
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--zesty-green);
    display: inline-block;
    padding-bottom: 5px;
}

/* Curry Grid internal styling */
.curry-grid {
    display: flex;
    gap: 20px;
    text-align: left;
}

.curry-column {
    flex: 1;
}

.subsection-title {
    font-size: 1rem;
    color: var(--heat-red);
    margin: 15px 0 10px 10px;
    text-transform: uppercase;
}

.curry-pricing-banner {
    background: var(--zesty-green);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: bold;

    margin: 0 auto 25px auto; /* Centers it and adds space below it */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive: Stack sections on mobile */
@media (max-width: 900px) {
    .menu-card {
        flex-direction: column;
    }
    .menu-card .menu-section {
        width: 100%;
    }
    .curry-grid {
        flex-direction: column;
    }
}

.dietary-tags { font-size: 0.8rem; margin-bottom: 10px; }
.tag-v { color: #4CAF50; font-weight: bold; } /* Vegetarian */
.tag-vg { color: #8BC34A; font-weight: bold; } /* Vegan */
.tag-spicy { color: var(--heat-red); font-weight: bold; }


/* --- FOOTER DECORATION --- */
.menu-footer-deco {
    text-align: center;
    padding: 10px;
    color: var(--zesty-green);
    font-size: 1.5rem;
}

/* --- VISUAL MENU IMAGE GRID --- */
.menu-image-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 side-by-side */
    gap: 30px;
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    justify-content: center;
}

.menu-page {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* This shadow creates an artistic "paper" depth */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: zoom-in; /* Indicates the user can look closer */
}

.menu-page img {
    width: 100%;
    height: auto; /* Natural height to keep menu text readable */
    display: block;
    transition: transform 0.5s ease;
}

/* Artistic Hover: Lifts the menu page and zooms slightly */
.menu-page:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--zesty-green);
}

/* Center the section title and subtitle */
#visual-menu h2 {
    margin-bottom: 5px;
}

#visual-menu p {
    color: var(--heat-red);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* Responsive: Stack on mobile */
@media (max-width: 850px) {
    .menu-image-row {
        grid-template-columns: 1fr; /* Single column on phones */
        max-width: 450px; /* Limits width so menus don't look huge on mobile */
    }
}

footer { background: var(--deep-green); color: white; padding: 3rem; text-align: center; }

/* Section Container */
.events-section {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Light background to contrast with white cards */
    text-align: center;
}

.section-title {
    color: var(--deep-green);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    margin-bottom: 40px;
}

/* Grid Layout */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Styling */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: left;
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
}

.event-content {
    padding: 25px;
}

.event-content h3 {
    color: var(--deep-green);
    margin-bottom: 10px;
}

.event-date {
    font-weight: bold;
    color: var(--zesty-green);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Tags Styles */
.event-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.tag-event { background: #e3f2fd; color: #1976d2; }
.tag-celebration { background: #fff3e0; color: #f57c00; }
.tag-offer { background: #e8f5e9; color: var(--deep-green); }