* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
    scroll-behavior: smooth;

}


body {
    background: #fff;
    color: #333;
     
}

/* logo */

.brand {
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.name-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.logo-img {
    width: 55px;
    height: auto;
}

.tagline {
    font-size: 12px;
    color: #555;
    margin-top: 1px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 20px;
    }

    .logo-img {
        width: 40px;
    }

    .tagline {
        font-size: 10px;
    }
}


/* change */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 25px;
}

.nav a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
}

.nav a.active {
    color: green;
}

.call-btn {
    background: #2e7d32;
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .nav {
        display: none; /* hide menu by default */
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(243, 243, 243, 0.97);
        padding-top: 100px;
        align-items: center;
        gap: 30px;
        z-index: 999;
    }

    .nav.open {
        display: flex; /* show menu when open */
        animation: slideIn 0.3s ease forwards;
    }

    .call-btn {
        display: none; /* hide call button on mobile */
    }

    .menu-toggle {
        display: block; /* always show toggle button */
    }
}

/* Animation for overlay */
@keyframes slideIn {
    0% { opacity: 0; transform: translateX(100%); }
    100% { opacity: 1; transform: translateX(0); }
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/sliderbg.jpeg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-content {
    position: relative;
    color: #fff;
    padding: 0 20px;
    max-width: 1200px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin: 0;
}

.hero p {
    font-size: 1.25rem;
    margin-top: 15px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons2 {
    

    margin-top: 25px;
    display: flex;
    justify-content: center;


    gap: 15px;
    flex-wrap: wrap;
}
.btn {
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease, transform 0.3s ease;
}

.btn.primary {
    background: #4caf50;
}

.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
}



/* ===== Responsive ===== */

/* Large desktops */
@media (min-width: 1200px) {
    .hero h1 { font-size: 4rem; }
    .hero p { font-size: 1.5rem; }
    .btn { font-size: 1.1rem; padding: 16px 32px; }
}

/* Laptops */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero p { font-size: 1.4rem; }
    .btn { font-size: 1rem; padding: 15px 28px; }
}

/* Tablets */
@media (max-width: 991px) and (min-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.25rem; }
    .btn { font-size: 0.95rem; padding: 14px 26px; }
}

/* Small tablets / large phones */
@media (max-width: 767px) and (min-width: 480px) {
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .btn { font-size: 0.9rem; padding: 12px 22px; }
}

/* Mobile / iPhone */
@media (max-width: 479px) {
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .btn { font-size: 0.85rem; padding: 10px 18px; }
    .hero-buttons { flex-direction: column; gap: 16px; }
}

/* Scroll animation helper */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}


/* STORY */

/* STORY ANIMATION SETUP */
.story {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 10%;
    gap: 50px;

    /* IMPORTANT FIX */
    height: auto;          /* ❌ remove 100vh */
    position: relative;    /* ❌ remove absolute */
    overflow: visible;     /* ❌ remove hidden */

    background: #fff;
}


/* initial hidden state */
.story-text,
.story-text h2,
.story-text p,
.story-stats,
.story-image {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

/* show state */
.story.show .story-text {
    opacity: 1;
    transform: translateY(0);
}

.story.show .story-text h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.story.show .story-text p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.story.show .story-text p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.story.show .story-stats {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.65s;
}

/* image animation */
.story.show .story-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* existing styles (unchanged) */
.story-text h2 span {
    color: #4caf50;
}

.section-tag {
    color: #c9a34d;
    font-size: 13px;
}

.story-stats {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 380px;
    border-radius: 14px;
}

.image-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
}

/* responsive */
@media (max-width: 768px) {
    .story {
        flex-direction: column;
        text-align: center;
    }

    .story-image img {
        width: 100%;
        max-width: 350px;
    }
}

/* zomato */


.order-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 22px;
}

/* 🔽 animation start state */
.platform-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px 20px;
    text-align: center;
    min-width: 145px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(40px);
    transition: 
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.3s ease;
}

/* 🔼 animation end state */
.order-platforms.show .platform-card {
    opacity: 1;
    transform: translateY(0);
}

/* stagger effect */
.order-platforms.show .platform-card:nth-child(1) {
    transition-delay: 0.2s;
}

.order-platforms.show .platform-card:nth-child(2) {
    transition-delay: 0.4s;
}

.platform-card span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.platform-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.platform-card:hover {
    transform: translateY(-6px);
}

/* logos */
.platform-logo {
    width: 44px;
    margin-bottom: 6px;
}

/* brand hover effects */
.swiggy-card:hover {
    box-shadow: 0 10px 22px rgba(252, 128, 25, 0.35);
}

.zomato-card:hover {
    box-shadow: 0 10px 22px rgba(239, 79, 95, 0.35);
}

/* mobile view */
@media (max-width: 480px) {
    .platform-card {
        min-width: 120px;
        padding: 14px;
        font-size: 14px;
    }

    .platform-logo {
        width: 36px;
    }
}



/* WHY */

/* WHY SECTION */
.why {
    background: #fafafa;
    padding: 70px 10%;
    text-align: center;
    overflow: hidden;
}

/* Heading */
.why h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Subtitle */
.why-sub {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Initial hidden state for animation */
.why h2,
.why-sub,
.card {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* Visible state */
.why.show h2 {
    opacity: 1;
    transform: translateY(0);
}

.why.show .why-sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* Cards container */
.why-cards {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;              /* IMPORTANT */
    justify-content: center;
}

/* Card */
.card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    width: 300px;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
}

/* Icon inside card */
.card {
    font-size: 15px;
}

.card h4 {
    font-size: 20px;
    margin: 12px 0 8px;
    font-weight: 600;
}

/* Card animation stagger */
.why.show .card {
    opacity: 1;
    transform: translateY(0);
}

.why.show .card:nth-child(1) { transition-delay: 0.3s; }
.why.show .card:nth-child(2) { transition-delay: 0.5s; }
.why.show .card:nth-child(3) { transition-delay: 0.7s; }
.why.show .card:nth-child(4) { transition-delay: 0.9s; }

/* Hover effect */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

/* Tablet view */
@media (max-width: 1024px) {
    .why {
        padding: 60px 6%;
    }

    .card {
        width: 280px;
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .why h2 {
        font-size: 28px;
    }

    .why-sub {
        font-size: 14px;
    }

    .why-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 360px;
    }
}


/* MENU */
.menu {
    padding: 80px clamp(16px, 6vw, 10%);
    overflow: hidden;
}

/* GRID FIX (no right-side extra margin) */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.menu-card {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.menu-animate.show .menu-card {
    opacity: 1;
    transform: translateY(0);
}

/* stagger animation */
.menu-animate.show .menu-card:nth-child(1) { transition-delay: 0.1s; }
.menu-animate.show .menu-card:nth-child(2) { transition-delay: 0.25s; }
.menu-animate.show .menu-card:nth-child(3) { transition-delay: 0.4s; }
.menu-animate.show .menu-card:nth-child(4) { transition-delay: 0.55s; }

.menu-card img {
    width: 100%;
    border-radius: 14px;
    display: block;
}

/* PRICE TAG */
.price {
    background: #fff;
    padding: 6px 12px;
    border-radius: 14px;
    position: relative;
    top: -18px;
    display: inline-block;
    font-weight: 600;
}

/* MOBILE */
@media (max-width: 480px) {
    .menu {
        padding: 60px 16px;
    }
}


/* REVIEWS */
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 60px 10%;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    text-align: left;
}

.review-card p {
    margin: 15px 0;
    font-size: 15px;
    color: #555;
}

.review-card h4 {
    font-size: 15px;
}

.review-card span {
    font-size: 13px;
    color: #888;
}

.all-reviews {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    color: #4caf50;
    text-decoration: none;
    font-weight: 500;
}

/* VISIT */
.visit {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    padding: 70px 10%;
    background: #2b2b2b;
    color: #fff;
}

.visit-info h2 {
    margin-bottom: 20px;
}

.visit-item {
    margin-bottom: 15px;
    font-size: 15px;
}

.visit-item p {
    margin-left: 20px;
    color: #ddd;
}

.visit-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-call {
    background: #c9a34d;
    color: #000;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
}

.btn-dir {
    border: 1px solid #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
}

.visit-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .reviews {
        grid-template-columns: 1fr;
    }

    .visit {
        grid-template-columns: 1fr;
    }

    .quote-content h2 {
        font-size: 1.8rem;
    }
}

/* FOOTER */
.footer {
    background: #2f2f2f;
    color: #e0e0e0;
    padding: 60px 8% 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 40px;
}

.footer h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
}

.rating {
    margin-top: 12px;
    font-size: 14px;
}

.rating span {
    color: #aaa;
}

/* LINKS */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul a {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 14px;
}

.footer ul a:hover {
    color: #fff;
}

/* BUTTONS */
.btn-footer {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-decoration: none;
    font-weight: 500;
}

.btn-footer.call {
    background: #4caf50;
    color: #fff;
}

.btn-footer.whatsapp {
    border: 1px solid #fff;
    color: #fff;
}

.footer-tags {
    margin-top: 12px;
    font-size: 13px;
    color: #aaa;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid #444;
    padding-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .btn-footer {
        max-width: 260px;
        margin: 12px auto;
    }
}

/*  */
.veg-square {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #2e7d32;
    border-radius: 2px;   /* square look */
    position: relative;
}

.veg-square::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #2e7d32;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ================================
   BANQUET SECTION
================================ */

/* main layout */
.banquet {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 80px 10%;
    gap: 60px;

    height: auto;
    position: relative;
    overflow: visible;

    background: #fff;
}

/* LEFT TEXT AREA */
.banquet-text {
    flex: 1.6;                /* more space to text */
    font-size: 17px;
    line-height: 1.7;
}

/* initial hidden state */
.banquet-text,
.banquet-text h2,
.banquet-text p,
.banquet-image {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

/* show state */
.banquet.show .banquet-text {
    opacity: 1;
    transform: translateY(0);
}

.banquet.show .banquet-text h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.banquet.show .banquet-text p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.banquet.show .banquet-text p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* RIGHT IMAGE AREA */
.banquet-image {
    flex: 1;                  /* less space than text */
    display: flex;
    flex-direction: column;   /* VERTICAL stack */
    gap: 20px;

    position: relative;
}

/* image animation */
.banquet.show .banquet-image {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

/* images */
.banquet-image img {
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    object-fit: cover;
}

/* highlight text */
.banquet-text h2 span {
    color: #4caf50;
}

/* section tag */
.section-tag {
    color: #c9a34d;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
    .banquet {
        flex-direction: column;
        padding: 60px 20px;
        text-align: center;
    }

    .banquet-text {
        flex: unset;
    }

    .banquet-image {
        align-items: center;
    }

    .banquet-image img {
        max-width: 100%;
    }
}
/*  */

