/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Poppins:wght@300;400;600&display=swap');

:root {
    --maroon: #800000;
    --gold: #D4AF37;
    --cream: #FFFDD0;
    --white: #ffffff;
    --text: #333;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background-color: var(--maroon);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    sticky: top;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--gold);
}

/* Sections */
section { padding: 80px 10%; }

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--maroon);
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1555244162-803834f70033?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; margin-bottom: 10px; }
.hero p { font-size: 1.5rem; color: var(--gold); margin-bottom: 30px; }

/* Buttons */
.btn {
    padding: 12px 35px;
    background-color: var(--gold);
    color: var(--maroon);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn:hover { background-color: var(--white); transform: scale(1.05); }

/* Footer */
footer {
    background-color: var(--maroon);
    color: var(--gold);
    text-align: center;
    padding: 30px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Floating WhatsApp */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Grid Layouts */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; padding: 30px; border-radius: 15px; shadow: 0 10px 20px rgba(0,0,0,0.05); border-top: 5px solid var(--gold); }
/* Add this to your existing style.css */

.stats-bar {
    background: var(--maroon);
    color: var(--gold);
    padding: 40px 10%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    text-align: center;
    gap: 20px;
    border-bottom: 3px solid var(--gold);
}

.stats-item h3 { font-size: 2.5rem; margin-bottom: 5px; }
.stats-item p { font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }

.usp-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 15px; }

.specialty-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.process-step {
    position: relative;
    padding-left: 50px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--maroon);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.feature-box {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    border-top: 5px solid var(--maroon);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    border-top: 5px solid var(--gold);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.1);
}

.usp-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}
/* Interactive Service Pillars */
.service-pillar {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    border-bottom: 5px solid var(--gold);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* The Effect when Clicked */
.service-pillar.active {
    background: var(--maroon);
    border-bottom: 5px solid var(--gold);
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.2);
}

.service-pillar.active h4, 
.service-pillar.active p, 
.service-pillar.active i {
    color: #fff !important; /* Text turns white when background is maroon */
}

.service-pillar i {
    font-size: 2rem;
    color: var(--maroon);
    transition: color 0.3s;
}
/* Hidden Gallery Styling */
.dish-gallery {
    display: none; /* Hidden by default */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(128,0,0,0.1);
}

/* Container for the revealed dishes */
.menu-reveal-container {
    display: none; /* Hidden by default */
    margin-top: 40px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}

/* Show the container when active */
.menu-reveal-container.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.dish-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.dish-item:last-child {
    border-bottom: none;
}

.dish-thumb {
    width: 100px;
    height: 100px;
    border-radius: 50%; /* Circular images for dishes */
    object-fit: cover;
    border: 3px solid var(--gold);
}

.dish-info h4 {
    font-family: 'Playfair Display';
    color: var(--maroon);
    margin-bottom: 5px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* Container and Section Spacing */
.specialties-section {
    padding: 80px 10%;
    background-color: #fdfcfb; /* Very light cream to make white boxes pop */
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* The Specialty Box */
.specialty-box {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden; /* Clips the image to the border radius */
    border: 1px solid #eee;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

/* Image Container */
.box-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Content Area inside Box */
.box-body {
    padding: 30px;
    text-align: left;
}

.box-tag {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.box-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.box-body p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- SATISFYING ANIMATION ON TOUCH/HOVER --- */
.specialty-box:hover {
    transform: translateY(-10px); /* Lifts the box up */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Adds a deep soft shadow */
    border-color: var(--gold); /* Subtle gold border highlight */
}

.specialty-box:hover .box-image img {
    transform: scale(1.1); /* Subtle zoom in on image */
}
/* Ensure the text is centered for the USP boxes */
.text-center {
    text-align: center;
}

/* Styling the icons inside the boxes */
.usp-icon-wrapper {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

/* Interaction: When the box is touched/hovered, the icon pops slightly */
.specialty-box:hover .usp-icon-wrapper {
    transform: scale(1.2);
    color: var(--maroon);
}

/* Refined spacing for USP boxes without images */
.specialty-box .box-body {
    padding: 50px 30px; /* More vertical padding for a luxurious feel */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 320px; /* Keeps all boxes the same height */
}

.specialty-box h3 {
    margin-bottom: 15px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}
/* --- MOBILE RESPONSIVENESS ADDITIONS --- */

/* Hide Hamburger by default on Desktop */
.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1001; /* Ensure button is always on top */
}

/* Tablet & Mobile Adjustments */
@media (max-width: 768px) {
    .menu-toggle { 
        display: block; 
    }
    .nav-links {
        display: none; /* Hide by default */
        position: absolute;
        top: 100%; /* Sits right under the navbar */
        left: 0;
        width: 100%;
        background: var(--maroon);
        flex-direction: column;
        gap: 0;
        text-align: center;
        border-top: 1px solid var(--gold);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    /* This class is added by JavaScript */
    .nav-links.active { 
        display: flex; 
    }

    /* Change this to match your ID: #nav-list */
    #nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--maroon);
        flex-direction: column;
        gap: 0;
        display: none; /* Hidden by default */
        text-align: center;
        border-top: 1px solid var(--gold);
        z-index: 1000; /* Ensure menu covers other content */
        padding: 0;
        margin: 0;
        list-style: none;
    }

    /* This rule triggers when JS adds the class */
    #nav-list.active { 
        display: flex !important; 
    } 

    #nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    }

    #nav-list a {
        display: block;
        padding: 20px;
        font-size: 1.1rem;
        color: white; /* Ensure text is visible */
        text-decoration: none;
    }

    /* Hero Text Scaling */
    .hero h1 { font-size: 2.5rem; padding: 0 10px; }
    .hero p { font-size: 1.1rem; }

    /* Sections Padding */
    section { padding: 50px 5%; }
    .section-title { font-size: 2.2rem; }

    /* Stats Bar Stacking */
    .stats-bar { flex-direction: column; gap: 30px; }

    /* Grid layout for Mobile */
    .specialties-grid {
        grid-template-columns: 1fr; 
    }
    
    .specialty-box .box-body {
        min-height: auto; 
    }
}

/* Landscape/Small Mobile */
@media (max-width: 480px) {
    .logo { font-size: 1.2rem; }
    .hero { height: 70vh; }
}

/* Landscape/Small Mobile */
@media (max-width: 480px) {
    .logo { font-size: 1.2rem; }
    .hero { height: 70vh; }
}
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Stays hidden on mobile */
        flex-direction: column;
        /* ... other styles ... */
    }

    .nav-links.active {
        display: flex; /* Shows only when 'active' class is added via JS */
    }
}