/* ========== RESET ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0e0e0e;
    color: #fff;
}

/* ========== HEADER ========== */
.site-header {
    position: absolute;
    top: 0;                /* ✅ ADD THIS */
    left: 0;               /* ✅ ADD THIS */
    width: 100%;
   height: 130px;
    padding: 10px 0;       /* 🔽 padding thoda kam */
    z-index: 1000;         /* 🔼 hero se upar */
    background-color: #ffffff;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Nav wrapper */
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===============================
   LOGO (FINAL & PROPER)
================================ */
.logo {
    margin-top: -50px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Logo Image */
.logo img {
    height: 80px;              /* 🔥 perfect size */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Logo Text */
.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}

/* Optional divider look (premium touch) */
.logo span::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 22px;
    background: rgba(255,255,255,0.4);
    margin-right: 12px;
    vertical-align: middle;
}

/* ===============================
   MOBILE LOGO (<= 768px)
================================ */
@media (max-width: 768px) {

    /* Header spacing fix */
    .site-header {
        padding: 12px 0;
    }

    /* Logo alignment */
    .logo {
        margin-top: 0;     /* 🔥 remove any negative margin */
    }

    .logo img {
        height: 56px;      /* ✅ perfect mobile size */
        max-width: 160px;
    }

    /* Nav wrapper vertical center */
    .nav-wrapper {
        align-items: center;
    }
}

/* ===============================
   LARGE DESKTOP LOGO (>= 992px)
================================ */
@media (min-width: 992px) {

    .logo img {
        height: 90px;      /* 🔥 hero-level branding */
    }
}

/* DESKTOP NAV */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #cfa670;
}

/* ========== HAMBURGER ========== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000000;
    margin-bottom: 5px;
}


/* ========== OFFCANVAS (FRONT FIX) ========== */

/* Overlay */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 9998;   /* 🔥 hero/slider se upar */
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas Menu */
.offcanvas-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background: #111;
    padding: 30px;
    transition: left 0.4s ease;
    z-index: 9999;   /* 🔥 overlay se bhi upar */
    overflow-y: auto;
}

.offcanvas-menu.active {
    left: 0;
}

/* Header */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.offcanvas-header span {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #fff;
}

.offcanvas-header button {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

/* Navigation */
.offcanvas-nav a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.offcanvas-nav a:hover {
    color: #cfa670;
}

/* ===============================
   FORCE HERO / SLIDER BELOW
================================ */
.hero-slider,
.slider-track,
.slide {
    position: relative;
    z-index: 1;   /* 👈 menu ke niche */
}

/* ========== RESPONSIVE ========== */

/* Tablets & Mobiles */
@media (max-width: 991px) {
    .desktop-menu {
        display: none;
    }

    .mobile-only {
        display: flex;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .offcanvas-menu {
        width: 280px;
        padding: 25px;
    }

    .logo span {
        font-size: 20px;
    }
}



/* ================================
   HERO SLIDER (FINAL CLEAN VERSION)
================================ */

.hero-slider {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    height: 100%;
    width: 98%; /* 3 slides */
    transition: transform 1.2s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 50%,
        rgba(0,0,0,0.15) 100%
    );
}

/* Content */
.hero-content {
    position: relative;
    margin-left: 8%;
    max-width: 520px;
    color: #fff;
    z-index: 2;
}

.hero-content .subtitle {
    color: #cfa670;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;

}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0;
}

/* Button */
.hero-content .btn {
    display: inline-block;
    padding: 12px 32px;
    border: 1px solid #cfa670;
    color: #cfa670;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background: #cfa670;
    color: #000;
}

/* ================================
   TABLET RESPONSIVE
================================ */
@media (max-width: 991px) {
    .hero-content {
        margin-left: 6%;
        max-width: 420px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {
    .slide {
        background-position: center;
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin: 0;
        padding: 0 20px;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content .btn {
        padding: 10px 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content .subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
}



/* ================================
   ABOUT + RESERVATION SECTION
================================ */

.about-reserve {
    background: #f6f1e9;
    padding: 100px 0;
}

.about-reserve-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* LEFT CONTENT */
.about-content {
    flex: 1;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s ease;
}

/* ACTIVE STATE */
.about-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle {
    color: #cfa670;
    letter-spacing: 3px;
    font-size: 13px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.about-content.animate .section-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin: 20px 0;
    color: #111;

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.4s;
}

.about-content.animate h2 {
    opacity: 1;
    transform: translateY(0);
}

.about-content p {
    color: #555;
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 30px;

    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease 0.6s;
}

.about-content.animate p {
    opacity: 1;
    transform: translateY(0);
}

/* Outline button */
.outline-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #cfa670;
    color: #cfa670;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;

    opacity: 0;
    transform: translateY(20px);
}

.about-content.animate .outline-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.8s;
}

.outline-btn:hover {
    background: #cfa670;
    color: #000;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .about-reserve-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .about-content h2 {
        font-size: 34px;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-content p {
        margin: 0 auto 30px;
    }
}

/* ================================
   RESERVE BOX – IMAGES + ACTIONS
================================ */

/* MAIN BOX */
.reserve-box {
    margin-top: -40px;
    padding: 60px;
    max-width: 520px;

    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.reserve-box.animate {
    opacity: 1;
    transform: translateY(0);
}

/* TITLE */
.reserve-box h3 {
    color: #c0a616;
    text-align: center;
    font-size: 30px;
    margin-bottom: 35px;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.reserve-box.animate h3 {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE GRID */
.reserve-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.reserve-images img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;

    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease;
}

/* STAGGER EFFECT */
.reserve-box.animate .reserve-images img:nth-child(1) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: scale(1);
}

.reserve-box.animate .reserve-images img:nth-child(2) {
    transition-delay: 0.45s;
    opacity: 1;
    transform: scale(1);
}

.reserve-box.animate .reserve-images img:nth-child(3) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: scale(1);
}

/* ACTION BUTTONS */
.reserve-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border: 1px solid #000;
    color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;

    opacity: 0;
    transform: translateY(20px);
}

.reserve-box.animate .reserve-btn {
    opacity: 1;
    transform: translateY(0);
}

.reserve-box.animate .reserve-btn.whatsapp {
    transition-delay: 0.8s;
}

.reserve-box.animate .reserve-btn.call {
    transition-delay: 1s;
}

/* WhatsApp */
.reserve-btn.whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.reserve-btn.whatsapp:hover {
    background: #1ebe5d;
}

/* Call */
.reserve-btn.call {
    background: transparent;
}

.reserve-btn.call:hover {
    background: #fff;
    color: #000;
}

/* ================================
   TABLET RESPONSIVE
================================ */
@media (max-width: 991px) {
    .reserve-images img {
        height: 90px;
    }
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 768px) {

    .reserve-box {
        margin-top: 0;
        padding: 40px;
    }

    .reserve-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .reserve-images img {
        height: 120px;
    }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {

    .reserve-images {
        grid-template-columns: 1fr;
    }

    .reserve-images img {
        height: 160px;
    }

    .reserve-btn {
        font-size: 13px;
        padding: 12px;
    }
}


/* ===== Reset ===== */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* ===== Section ===== */
.special-thalis {
    background: #ffffff;
    padding: 80px 0;
}

.special-thalis .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

/* ===== Headings ===== */
.center { text-align: center; }

.section-subtitle {
    font-size: 14px;
    letter-spacing: 3px;
    color: #c59d5f;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #bdb216;
    margin-bottom: 60px;
}

/* ===== Grid ===== */
.thali-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 100px; /* space for overlap */
}

/* ===== Card ===== */
.thali-card {
    position: relative;
    overflow: visible;
    transition: transform 0.4s ease;
}

.thali-card:hover {
    transform: translateY(-10px);
}

/* ===== Image ===== */
.thali-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.thali-card:hover img {
    transform: scale(1.05);
}

/* ===== Info Panel (Overlap) ===== */
/* ===== Info Panel (Collapsed by default) ===== */
.thali-info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background: #ffffff;
    text-align: center;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;

    height: 60px;              /* ONLY title visible */
    transition: height 0.5s ease;
    z-index: 2;
}

/* Title */
.thali-info h3 {
    margin: 0;
    font-size: 16px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #c59d5f;
    text-transform: uppercase;
}


/* ===== Hidden Details ===== */
.thali-details {
    margin-top: 18px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}


.thali-details p {
    margin: 6px 0;
    font-size: 14px;
    color: #555;
}

.thali-details .price {
    margin-top: 14px;
    font-weight: 600;
    color: #c59d5f;
}

/* ===== Hover Reveal ===== */
.thali-card:hover .thali-info {
    height: 260px;   /* expanded white card */
}

.thali-card:hover .thali-details {
    opacity: 1;
    transform: translateY(0);
}


/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .thali-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .thali-grid {
        grid-template-columns: 1fr;
    }

    .thali-img img {
        height: 280px;
    }

    .section-title {
        font-size: 28px;
    }

    .thali-info {
        width: 90%;
    }
}


/* =========================
   VIDEO SHOWREEL SECTION
========================= */

.video-showreel {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.video-showreel video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-showreel .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(120, 40, 0, 0.65); /* warm orange like demo */
    z-index: 1;
}

.video-showreel .video-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.video-showreel h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin: 15px 0 30px;
}

.video-showreel .play-btn {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-showreel .play-btn:hover {
    background: #fff;
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .video-showreel h2 {
        font-size: 32px;
    }
}

/* =========================
   PHOTO GALLERY
========================= */

.photo-gallery {
    padding: 100px 0;
    background: #fff;
}

.photo-gallery .section-title {
    margin-bottom: 10px;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 260px;
    gap: 18px;
    margin-top: 60px;
}

/* Gallery Item (LAYOUT STATE) */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    min-height: 260px;          /* CRITICAL FIX */
    background: #111;           /* prevents white collapse */
}

/* Animation state */
.gallery-item.show {
    animation: galleryFadeUp 0.8s ease forwards;
}

/* Animation keyframes */
@keyframes galleryFadeUp {
    from {
        transform: translateY(40px) scale(0.95);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

/* Hover zoom */
.gallery-item:hover img {
    transform: scale(1.12);
}

/* Dark overlay on hover */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Tall & Wide items */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* LOAD MORE BUTTON */
.gallery-btn {
    margin-top: 60px;
    text-align: center;
    color: #bdb216;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .photo-gallery {
        padding: 70px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
        gap: 15px;
    }
}


/* LOAD MORE BUTTON */
/* LOAD MORE BUTTON */
.gallery-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 40px;
    background: transparent; /* remove red after testing */
}

.gallery-btn .outline-btn {
    display: inline-block;        /* CRITICAL */
    padding: 14px 42px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #bdb216;
    border: 2px solid #bdb216;
    background: transparent;

    opacity: 1 !important;        /* OVERRIDE animation */
    visibility: visible !important;
    position: relative;
    z-index: 5;

    transition: all 0.35s ease;
}

/* Hover */
.gallery-btn .outline-btn:hover {
    background: #bdb216;
    color: #000;
}


/* Mobile spacing */
@media (max-width: 576px) {
    .gallery-btn {
        margin-top: 40px;
        margin-bottom: 30px;
    }

    .gallery-btn .outline-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* ===============================
   ABOUT HERO (VIDEO)
================================ */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;          /* flexible height */
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Video */
.about-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 2;
}

/* Content Wrapper */
.about-hero-inner {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-left: clamp(5%, 8vw, 10%);
    padding-right: 20px;
    color: #ffffff;
}

/* Title */
.hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.15;
}

/* Subtitle */
.hero-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    max-width: 520px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ===============================
   LARGE SCREENS (4K / Wide)
================================ */
@media (min-width: 1600px) {
    .about-hero {
        min-height: 90vh;
    }

    .hero-title {
        font-size: 80px;
    }
}

/* ===============================
   TABLET (<= 992px)
================================ */
@media (max-width: 992px) {
    .about-hero {
        min-height: 85vh;
    }

    .about-hero-inner {
        max-width: 600px;
    }

    .hero-title {
        letter-spacing: 3px;
    }
}

/* ===============================
   MOBILE (<= 768px)
================================ */
@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
        
    }

    .about-hero-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 34px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 15px;
    }
}

/* ===============================
   SMALL MOBILE (<= 480px)
================================ */
@media (max-width: 480px) {
    .about-hero {
        min-height: 75vh;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 14px;
    }
}



/* ===============================
   GLOBAL RESET
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #2b2b2b;
    background-color: #fff;
    line-height: 1.7;
}

/* ===============================
   CONTAINER
================================ */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
}

.center {
    text-align: center;
}

/* ===============================
   SECTION BACKGROUNDS
================================ */
.about-section {
    background: #ffffff;
}

.about-section.light-bg {
    background: #faf6f2;
}

.about-section.dark-bg {
    background: #1f1f1f;
    color: #ffffff;
}

/* ===============================
   ZIG-ZAG GRID
================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Default order */
.about-grid .about-text {
    order: 1;
}

.about-grid .about-image {
    order: 2;
}

/* Reverse order */
.about-grid.reverse .about-text {
    order: 2;
}

.about-grid.reverse .about-image {
    order: 1;
}

/* ===============================
   TEXT STYLING
================================ */
.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #8b0000;
}

.dark-bg h2 {
    color: #ffb347;
}

.about-text p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #444;
}

.dark-bg p {
    color: #e0e0e0;
}

/* ===============================
   IMAGE STYLING
================================ */
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.6s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ===============================
   LISTS
================================ */
.about-points {
    list-style: none;
    margin-top: 20px;
}

.about-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #8b0000;
}
/* ===============================
   COMMITMENT GRID (MODERN)
================================ */

/* Grid wrapper */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

/* Card */
.commitment-grid div {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 22px;
    border-radius: 18px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    color: #2b2b2b;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease;
}

/* Decorative top line */
.commitment-grid div::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #8b0000, #ffb347);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Hover effect */
.commitment-grid div:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: #ffffff;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
    .commitment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .commitment-grid div {
        padding: 26px 20px;
        font-size: 14.5px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

    .commitment-grid div {
        padding: 24px 18px;
        font-size: 14px;
    }
}


/* ===============================
   WHY BAJIRAO
================================ */
.why-list {
    list-style: none;
    max-width: 600px;
    margin: 30px auto;
}

.why-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.marathi-line {
    margin-top: 25px;
    font-style: italic;
    font-size: 18px;
    color: #ffb347;
}

/* ===============================
   SCROLL ANIMATIONS
================================ */
.animate {
    opacity: 2;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* Left & Right animation for zig-zag */
.animate-left {
    transform: translateX(-50px);
}

.animate-right {
    transform: translateX(50px);
}

.animate-left.show,
.animate-right.show {
    transform: translateX(0);
    opacity: 1;
}

/* ===============================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Stack order */
    .about-grid .about-text,
    .about-grid .about-image {
        order: unset;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 576px) {
    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 15px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 50px 15px;
    }
}

/* ===============================
   MENU HERO (VIDEO)
================================ */
.menu-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Video */
.menu-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4)
    );
    z-index: 2;
}

/* Content */
.menu-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-left: clamp(5%, 8vw, 10%);
    color: #ffffff;
}

.menu-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.menu-hero-subtitle {
    font-size: 16px;
    max-width: 520px;
    opacity: 0.9;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .menu-hero {
        height: 55vh;
    }

    .menu-hero-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .menu-hero-subtitle {
        font-size: 15px;
    }
}

/* ===============================
   MENU SECTION – PREMIUM STYLE
================================ */
.menu-section {
    position: relative;
    padding: 100px 0;
    background: url('../images/menu-bg.jpg') center / cover no-repeat;

}

/* Soft overlay for readability (ADDED ONLY) */
.menu-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
    z-index: 1;
}

/* Keep content above overlay */
.menu-section .container {
    position: relative;
    z-index: 2;
}

/* ===============================
   HEADER
================================ */
.menu-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.menu-header p {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a87c3a;
    margin-bottom: 60px;
}

/* ===============================
   MENU GRID
================================ */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
}

/* ===============================
   MENU CARD
================================ */
.menu-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

/* subtle underline */
.menu-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #a87c3a;
}

/* ===============================
   MENU LIST
================================ */
.menu-card ul {
    list-style: none;
}

.menu-card li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.15);
    font-size: 15px;
}

/* Item name */
.menu-card li span:first-child {
    font-weight: 500;
    color: #2b2b2b;
    max-width: 70%;
}

/* Price */
.menu-card li span:last-child {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: #a87c3a;
    white-space: nowrap;
}

/* Hover effect */
.menu-card li:hover span:first-child {
    color: #a87c3a;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablets */
@media (max-width: 992px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .menu-header h2 {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .menu-section {
        padding: 70px 0;
    }

    .menu-header h2 {
        font-size: 30px;
    }

    .menu-card h3 {
        font-size: 22px;
    }

    .menu-card li {
        font-size: 14px;
    }

    .menu-card li span:last-child {
        font-size: 15px;
    }
}


/* ===============================
   BAR HERO SECTION
================================ */
.bar-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Video */
.bar-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.bar-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.88),
        rgba(0,0,0,0.55)
    );
    z-index: 2;
}

/* ===============================
   CONTENT
================================ */
.bar-hero-content {
    position: relative;
    z-index: 3;
    max-width: 720px;
    padding-left: clamp(5%, 8vw, 10%);
    color: #ffffff;

    /* Animation initial state */
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1.4s ease forwards;
    animation-delay: 0.4s;
}

/* Tagline */
.bar-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfa670;
    margin-bottom: 15px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* Title */
.bar-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 82px);
    letter-spacing: 5px;
    margin-bottom: 20px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.8s;
}

/* Description */
.bar-hero-content p {
    font-size: 16px;
    max-width: 540px;
    opacity: 0.9;
    margin-bottom: 35px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 1s;
}

/* Buttons */
.bar-hero-buttons {
    display: flex;
    gap: 20px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 1.2s;
}

/* Buttons style */
.btn-primary {
    background: #cfa670;
    color: #000;
    padding: 14px 34px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e1b980;
}

.btn-outline {
    border: 1px solid #cfa670;
    color: #cfa670;
    padding: 14px 34px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #cfa670;
    color: #000;
}

/* ===============================
   ANIMATION KEYFRAMES
================================ */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================
   RESPONSIVE (ALL DEVICES)
================================ */

/* Tablets */
@media (max-width: 1024px) {
    .bar-hero-content {
        max-width: 600px;
    }

    .bar-hero-content p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .bar-hero {
        height: 85vh;
    }

    .bar-hero-content {
        padding-right: 20px;
    }

    .bar-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .bar-hero-content h1 {
        letter-spacing: 3px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bar-hero {
        height: 80vh;
    }

    .bar-tagline {
        font-size: 12px;
    }

    .bar-hero-content p {
        font-size: 14px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 28px;
        font-size: 13px;
    }
}


/* ===============================
   GALLERY HERO (IMAGE)
================================ */
.gallery-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Image */
.gallery-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/gallery.jpg') center / cover no-repeat;
    z-index: 1;

    /* subtle zoom animation */
    transform: scale(1.08);
    animation: heroZoom 12s ease forwards;
}

/* Overlay */
.gallery-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.5)
    );
    z-index: 2;
}

/* ===============================
   CONTENT
================================ */
.gallery-hero-content {
    position: relative;
    z-index: 3;
    max-width: 740px;
    padding-left: clamp(5%, 8vw, 10%);
    padding-right: 20px;
    color: #ffffff;

    /* animation initial state */
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeUp 1.4s ease forwards;
    animation-delay: 0.4s;
}

/* Tagline */
.gallery-tagline {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #cfa670;
    margin-bottom: 18px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.6s;
}

/* Title */
.gallery-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: 5px;
    margin-bottom: 20px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 0.8s;
}

/* Description */
.gallery-hero-content p {
    font-size: clamp(14px, 2vw, 16px);
    max-width: 540px;
    opacity: 0.9;
    margin-bottom: 35px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 1s;
}

/* Buttons */
.gallery-hero-buttons {
    display: flex;
    gap: 20px;

    opacity: 0;
    animation: heroFadeUp 1.2s ease forwards;
    animation-delay: 1.2s;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

/* ===============================
   RESPONSIVE – LARGE SCREENS
================================ */
@media (min-width: 1600px) {
    .gallery-hero {
        min-height: 90vh;
    }
}

/* ===============================
   RESPONSIVE – TABLET
================================ */
@media (max-width: 1024px) {
    .gallery-hero-content {
        max-width: 620px;
    }
}

/* ===============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {
    .gallery-hero {
        min-height: 85vh;
        align-items: flex-end;
        padding-bottom: 60px;
    }

    .gallery-hero-content {
        padding-left: 20px;
    }

    .gallery-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .gallery-hero-content h1 {
        letter-spacing: 3px;
    }
}

/* ===============================
   RESPONSIVE – SMALL MOBILE
================================ */
@media (max-width: 480px) {
    .gallery-hero {
        min-height: 80vh;
    }

    .gallery-tagline {
        font-size: 12px;
    }
}

/* ===============================
   GALLERY SECTION
================================ */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin-bottom: 10px;
}

.gallery-header p {
    font-size: 15px;
    color: #777;
}

/* ===============================
   MASONRY GRID (FREEPIK STYLE)
================================ */
.gallery-grid.masonry {
    column-count: 4;
    column-gap: 20px;
    margin-top: 50px;
}

/* Gallery Item */
.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* Images */
.gallery-item img {
    width: 100%;
    display: block;
    border-radius: 14px;
    transition: transform 0.6s ease, filter 0.6s ease;
}

/* Hover Overlay */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0),
        rgba(0,0,0,0.55)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */
@media (max-width: 1200px) {
    .gallery-grid.masonry {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery-grid.masonry {
        column-count: 2;
    }

    .gallery-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .gallery-grid.masonry {
        column-count: 1;
    }

    .gallery-section {
        padding: 50px 0;
    }
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #000;
    color: #ccc;
    padding-top: 60px;
    font-size: 14px;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: #bdb216;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-col p {
    line-height: 1.7;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #bdb216;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border: 1px solid #bdb216;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bdb216;
    border-radius: 50%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #bdb216;
    color: #000;
}

/* Bottom bar */
.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid #222;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

