/* Color Palette */
:root {
    --saffron: #FF9933;
    --maroon: #9C063D;
    --deep-green: #0D3B29;
    --gold: #D4AF37;
    --cream: #FFF7E6;
    --ink: #1E1E1E;
    --bg: #fffaf0;
    --shadow: rgba(0, 0, 0, 0.08)
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 20% 10%, #fff1d6 0%, #fffaf0 40%, #fffdf6 100%) fixed, url("assets/bg-authentic.svg");
    background-repeat: no-repeat, repeat;
    background-size: auto, 160px 160px;
    background-attachment: fixed, fixed;
    line-height: 1.6
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}
/* ================= HEADER ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #4B1E1E;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* ================= NAVBAR ================= */

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0.65rem 1.2rem;
    min-height: 80px; /* PERFECT height */
}

/* ================= LOGO ================= */

.logo img {
    height: 65px;
    width: auto;
}

/* ================= HAMBURGER ================= */

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 2px solid var(--gold);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
}

.menu-toggle .bar {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
}

/* ================= NAV LINKS ================= */

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #FFF6E5;
    padding: 0.45rem 0.9rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    background: #d4af37;
    color: #4b1e1e;
}
.explore-btn {
    background: #B11226;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s ease;
}

.explore-btn:hover {
    background: #8F0E1E;
}


/* Hero */
.hero {
    background:
        linear-gradient(
            135deg,
            rgba(255, 153, 51, 0.15),
            rgba(212, 175, 55, 0.12)
        ),
        radial-gradient(
            ellipse at bottom,
            rgba(156, 6, 61, 0.25),
            rgba(156, 6, 61, 0) 70%
        ),
        url("assets/hero-authentic.svg");

    background-blend-mode: normal, normal, normal; /* 🔥 KEY FIX */
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: center bottom, center bottom, center;
    background-size: cover, cover, 220px 220px;

    min-height: 60vh;
    display: grid;
    place-items: center;
    text-align: center;

    color: #2b1b1b;
    padding: 3rem 1rem;

    border-bottom: 6px solid var(--gold);
}



.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    color:#F5C86B;
}

.hero p {
    margin: 0 0 1.25rem;
    font-size: 1.9rem;
    color: #FFD98A;
    line-height: 1.0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}

.btn {
    display: inline-block;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    font-weight: 600
}

.btn-primary {
    background: var(--maroon);
    color: #fff;
    border: 2px solid var(--gold)
}

.btn-primary:hover {
    background: #7a0530
}

.btn-outline {
    border: 2px solid var(--maroon);
    color: var(--maroon)
}

.btn-outline:hover {
    background: rgba(156, 6, 61, 0.1)
}

/* Sections */
.section {
    padding: 3rem 1rem
}

.container {
    max-width: 1100px;
    margin: 0 auto
}

.section h2 {
    color: var(--maroon);
    font-size: 1.8rem;
    margin: 0 0 1rem;
    position: relative
}

.section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--saffron));
    border-radius: 2px;
    margin-top: 8px
}

.about p {
    margin: 0.5rem 0;
    color: #3b2a2a
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.card {
    background: #fff;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 14px;
    padding: 1rem;
    box-shadow: 0 8px 20px var(--shadow);
    transition: transform 0.2s ease
    
}

.card:hover {
    transform: translateY(-4px)
}

.card h3 {
    margin: 0 0 0.5rem;
    color: var(--deep-green)
}

.price {
    color: var(--maroon);
    font-weight: 700
}

/* Reviews Carousel */
.reviews {
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.8), rgba(255, 250, 240, 1))
}

.carousel {
    position: relative;
    background: #fff;
    border: 2px solid rgba(156, 6, 61, 0.35);
    border-radius: 16px;
    padding: 1rem;
    overflow: hidden
}

.carousel-track {
    display: flex;
    gap: 1rem;
    transition: transform 0.35s ease;
    will-change: transform;
    padding: 0;
    margin: 0;
    list-style: none
}

.carousel-slide {
    min-width: 100%;
    opacity: 0.5;
    transition: opacity 0.25s ease
}

.carousel-slide[aria-hidden="false"] {
    opacity: 1
}

.carousel blockquote {
    margin: 0;
    font-size: 1.05rem;
    color: #2b1b1b
}

.carousel footer {
    margin-top: 0.5rem;
    color: #555
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid var(--gold);
    background: var(--maroon);
    color: #fff;
    padding: 0.4rem 0.6rem;
    border-radius: 50%;
    cursor: pointer
}

.carousel-control:hover {
    background: #7a0530
}

.carousel-control.prev {
    left: 0.5rem
}

.carousel-control.next {
    right: 0.5rem
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.9rem
}

.form-group label {
    font-weight: 600;
    color: #3b2a2a
}

.form-group input,
.form-group textarea {
    padding: 0.6rem;
    border-radius: 10px;
    border: 2px solid #e2d7c8;
    background: #fff
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(156, 6, 61, 0.2)
}

.error {
    color: #a32020;
    font-size: 0.85rem;
    min-height: 1.1em
}

.form-status {
    margin-top: 0.75rem;
    font-weight: 600
}

.map-placeholder {
    background: #fff;
    border: 2px dashed rgba(212, 175, 55, 0.6);
    border-radius: 14px;
    padding: 1rem;
    text-align: center
}

/* Footer */
.site-footer {
    background: #2b1b1b;
    color: #fff;
    padding: 1.5rem 1rem;
    margin-top: 1rem;
    border-top: 6px solid var(--gold)
}

.site-footer .small {
    opacity: 0.8
}

/* Responsive */
@media (max-width:960px) {
    .cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .contact-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    .menu-toggle {
        display: flex
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--maroon);
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(212, 175, 55, 0.45);
        display: none
    }

    .nav-links.open {
        display: flex
    }

    .nav-link {
        padding: 0.8rem 1rem
    }

    .cards {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 1.7rem
    }
}
/* Reviews Section */
.section.reviews {
    background-color: #fff9f5; /* Soft cream background */
    padding: 60px 0;
    text-align: center;
}

#reviews-heading {
    font-size: 2.5rem;
    color: #5d0c1d; /* Deep maroon for a premium Indian feel */
    margin-bottom: 40px;
}

/* Carousel Container */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Soft shadow */
}

/* The Track */
.carousel-track {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    transition: transform 0.6s ease-in-out;
}

/* Individual Slide */
.carousel-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
}

/* Image/Review Screenshot Styling */
.review-media {
    margin: 0;
    width: 100%;
    max-width: 500px; /* Constrains the width so it doesn't look huge */
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.review-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Shows the full review screenshot */
}

/* Navigation Arrows */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #5d0c1d;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
    font-size: 1.2rem;
    transition: 0.3s;
}

.carousel-control:hover {
    background: #8e162a;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev { left: 15px; }
.carousel-control.next { right: 15px; }
.hero {
    /* Set the height to fill the screen */
    min-height: 100vh;
    
    /* 1. Dark Overlay + 2. Your Image Link */
    background-image: linear-gradient(rgba(126, 122, 122, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://wallpapers.com/images/hd/festive-indian-food-with-rice-and-chicken-i39qrhkpvunqe0hb.jpg');
    
    /* Ensures the image fills the area without stretching weirdly */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* Centers your text and button perfectly */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white; /* Makes text white so it stands out */
}




/* Main Heading */
.hero-title {
    color: #F5D76E;
    font-size: 2.4rem;
    font-weight: 700;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.8rem;
}

/* Subtitle */
.hero-subtitle {
    color: #F3EDE2;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* CTA Button */
.explore-btn {
    background: #B11226;
    color: #FFF6E5;
    border: 2px solid #D4AF37;
    padding: 0.65rem 1.4rem;
    font-size: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.explore-btn:hover {
    background: #8F0E1E;
}
.hero {
    position: relative;
}

/* Hero content stays centered */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 9rem;   /* ⬅️ more breathing space */
}


/* FLOATING CENTER LOGO */
.hero-logo {
    position: absolute;
    top: 10%;                 /* ⬅️ WAS 45% — too low */
    left: 50%;
    transform: translate(-50%, -50%);
    
    height: 110px;
    z-index: 3;

    background: #D4AF37;;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* Heading */
.hero-title {
    color: #F5D76E;
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 3.5rem; /* text starts BELOW logo */
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
}
/* ===== STORY SECTION ===== */

.story-section {
    background: #FFF7E8;
    padding: 4rem 2rem;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

/* ===== LEFT TEXT ===== */

.story-text h2 {
    font-size: 2.2rem;
    color: #8F0E1E;
    margin-bottom: 0.4rem;
}

.story-text .underline {
    display: block;
    width: 70px;
    height: 4px;
    background: #D4AF37;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #3b2a2a;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

/* ===== RIGHT IMAGES ===== */

.story-images {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-images img {
    width: 50%;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
    object-fit: cover;
}


.story-images.side-by-side {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.story-images.side-by-side img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.since-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    background: #FFF6E5;
    border: 3px solid #D4AF37;
    border-radius: 50%;

    width: 120px;
    height: 120px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    z-index: 5;
}

.since-badge span {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #8F0E1E;
}

.since-badge strong {
    font-size: 1.6rem;
    color: #8F0E1E;
    font-weight: 700;
}
/* ===== STATS SECTION ===== */

.stats-section {
    background: #FFF7E8;
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* ===== STAT CARD ===== */

.stat-card {
    background: #ffffff;
    border-radius: 22px;

    padding: 2.2rem 1.8rem;
    text-align: center;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(212, 175, 55, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Lift on hover */
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 0 0 2px rgba(212, 175, 55, 0.4);
}

/* ===== ICON ===== */

.stat-icon {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

/* ===== TEXT ===== */

.stat-card h3 {
    font-size: 1.8rem;
    color: #8F0E1E;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.stat-card p {
    font-size: 0.95rem;
    color: #3b2a2a;
    line-height: 1.6;
}

/* ===== CENTER CARD EMPHASIS ===== */

.stat-card.highlight {
    background: linear-gradient(
        135deg,
        #FFF6E5,
        #FFE8C2
    );
}
/* ===== SERVICES SECTION ===== */

.services {
    background: #FFF7E8;
    padding: 4rem 2rem;
}

.services h2 {
    font-size: 2.2rem;
    color: #8F0E1E;
    margin-bottom: 2rem;
}

/* ===== CARD LAYOUT ===== */

.services .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* side by side */
    gap: 2rem; /* proper distance between cards */
}

/* ===== INDIVIDUAL CARD ===== */

.services .card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.8rem;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.12),
        inset 0 0 0 2px rgba(212, 175, 55, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover effect */
.services .card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.18),
        inset 0 0 0 2px rgba(212, 175, 55, 0.4);
}

/* ===== CARD CONTENT ===== */

.services .card h3 {
    color: #0f3d2e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.services .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 1rem;
}

.services .card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #3b2a2a;
}
@media (max-width: 900px) {
    .services .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services .cards {
        grid-template-columns: 1fr;
    }
}
/* ===== CONTACT SECTION ===== */

.contact {
    background: #FFF7E8;
    padding: 4rem 2rem;
}

.contact h2 {
    color: #8F0E1E;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

/* ===== CONTACT BOX ===== */

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;

    background: #ffffff;
    border-radius: 22px;
    padding: 2.5rem;

    box-shadow: 0 14px 34px rgba(0,0,0,0.12);
}

/* ===== LEFT IMAGE ===== */

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

/* ===== RIGHT CONTENT ===== */

.contact-details h3 {
    font-size: 1.4rem;
    color: #3b2a2a;
    margin-bottom: 1rem;
}

.contact-details p {
    font-size: 1rem;
    color: #3b2a2a;
    margin-bottom: 0.8rem;
}

/* ===== CALL BUTTON ===== */

.call-btn {
    display: inline-block;
    margin-top: 1.2rem;

    padding: 0.6rem 1.4rem;
    border-radius: 10px;

    background: #B11226;
    color: #FFF6E5;
    font-weight: 600;
    text-decoration: none;

    border: 2px solid #D4AF37;
    transition: all 0.25s ease;
}

.call-btn:hover {
    background: #8F0E1E;
}
/* ===== WE SERVE SECTION ===== */

.serve-section {
    background: #FFF7E8;
    padding: 4rem 2rem;
}

.serve-section h2 {
    font-size: 2.3rem;
    color: #8F0E1E;
    text-align: center;
    margin-bottom: 0.5rem;
}

.serve-subtitle {
    text-align: center;
    color: #3b2a2a;
    margin-bottom: 3rem;
}

/* GRID */
.serve-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.2rem;
}

/* CARD */
.serve-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.5rem;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.12),
        inset 0 0 0 2px rgba(212, 175, 55, 0.25);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.serve-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.18),
        inset 0 0 0 2px rgba(212, 175, 55, 0.4);
}

/* IMAGE */
.serve-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

/* TITLE */
.serve-card h3 {
    font-size: 1.2rem;
    color: #0f3d2e;
    margin-bottom: 0.8rem;
}

/* LIST */
.serve-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serve-card ul li {
    font-size: 0.95rem;
    color: #3b2a2a;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 16px;
}

.serve-card ul li::before {
    content: "•";
    color: #D4AF37;
    position: absolute;
    left: 0;
}
.serve-card.special {
    grid-column: 1 / -1;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.serve-card.special img {
    width: 45%;
    height: auto;
}

.serve-card.special .content {
    width: 55%;
}
html {
  scroll-behavior: smooth;
}
/* GALLERY SECTION */
.gallery {
  background-color: #111;
  padding: 80px 6%;
}

.gallery-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 2.2rem;
  color: #f5c16c;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.gallery-card {
  background-color: #1b1b1b;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

/* IMAGES */
.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* VIDEOS */
.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background-color: #000;
}
