:root{
    --dark:#111;
    --gold:#c9a44c;
    --light:#faf7f2;
}
:root {
  --navbar-height: 78px;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
    font-family:Poppins,sans-serif;
    background:var(--light);
    color:#222;
}


/* 1. UNIVERSAL MOBILE GLIMPSE REMOVAL */
/* This covers all your buttons and clickable cards */
button, 
a, 
.menu-toggle, 
.language-btn, 
.gallery-btn, 
.video-card, 
.feature-card,
.lightbox-close {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    cursor: pointer;
}

/* 2. SPECIFIC FIX FOR VIDEO & FEATURE CARDS */
/* Since these are large, we avoid scaling to prevent "missed clicks" */
/* Instead, we use a subtle brightness change for feedback */
.video-card:active, 
.feature-card:active {
    filter: brightness(0.9);
    transition: filter 0.1s ease;
}

/* 3. LIGHTBOX BUTTONS (Prev/Next/Close) */
/* Keep these stable (no moving) for 100% click accuracy */
.gallery-btn:active, 
.lightbox-close:active {
    opacity: 0.5;
}

/* 4. NAVIGATION BUTTONS (Menu/Language) */
/* Scaling is fine here as they are usually isolated UI elements */
.menu-toggle:active, 
.language-btn:active {
    opacity: 0.7;
    transform: scale(0.95);
}

/* 5. ACCESSIBILITY SAFETY */
/* Ensures keyboard users can still navigate */
button:focus-visible, 
.feature-card:focus-visible, 
.video-card:focus-visible {
    outline: 2px solid #333;
    outline-offset: 4px;
}

.gallery-btn {
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer;
}


/* HERO */
.hero {
    min-height: calc(100vh - var(--navbar-height));
    margin-top: var(--navbar-height);

    position: relative;
    overflow: hidden;
}
.slides{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1.2s;
}
.slides.active{opacity:1}
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    pointer-events: none;
}
.hero-content{
    position:relative;
    z-index:5;
    color:white;
    height:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}
.hero-content h1{
    font-family:Playfair Display,serif;
    font-size:clamp(3rem,6vw,5rem);
}
.hero-content button{
    margin-top:30px;
    padding:14px 40px;
    border:none;
    border-radius:30px;
    background:var(--gold);
    color:#111;
    font-weight:500;
    cursor:pointer;
    transition:all .35s ease;
}

.hero-content button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(212,175,55,.35);
}

.explore-btn::after {
    content: "↓";
    display: inline-block;
    margin-left: 6px;
    animation: bounce 1.4s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}


/* SECTIONS */
section{padding:100px 20px;max-width:1200px;margin:auto}
h2{
    font-family:Playfair Display,serif;
    font-size:42px;
    text-align:center;
    margin-bottom:30px;
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    text-align:center;
    font-size:18px;
}

/* ===== PREMIUM GALLERY ===== */
.gallery {
    padding-top: 70px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.gallery-item {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 25px 60px rgba(0,0,0,0.18);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover effect */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.15),
        transparent
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none; /* ✅ THIS IS THE FIX */
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 85px rgba(0,0,0,0.35);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}
.gallery-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh; /* mobile-safe */
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-image {
  max-width: 90vw;
  max-height: 75dvh;
  object-fit: contain;
}

.gallery-close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10001;

  width: 36px;
  height: 36px;
  border-radius: 50%;

  background: white;
  color: black;
  font-size: 20px;
  border: none;
}
.gallery-image {
  touch-action: pan-y;
}

/* ===== LIGHTBOX ===== */

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* Close */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
}

/* Navigation */
.nav-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000 !important;
    font-weight: 500;
}
/* ===== IMAGE COUNTER ===== */
/* CONSOLIDATED IMAGE COUNTER FIX */
.image-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    
    /* THE KEY: Width auto and pointer-events none prevents it from blocking buttons */
    width: auto !important; 
    display: inline-block !important;
    pointer-events: none !important; 
    z-index: 50 !important;
}

/* Mobile spacing tweak */
@media (max-width: 768px) {
    .image-counter {
        bottom: 22px;
        font-size: 12px;
    }
}


.nav-btn.prev { left: 30px; }
.nav-btn.next { right: 30px; }

/* Mobile */
@media (max-width: 768px) {
    .nav-btn {
        font-size: 44px;
    }
}
/* ===== VIDEO SECTION ===== */
.videos{
    padding:100px 8%;
    background:linear-gradient(180deg,#0b0b0b,#141414);
    text-align:center;
}

.section-title{
    font-size:42px;
    font-family:'Playfair Display',serif;
    color:#fff;
    margin-bottom:60px;
}

/* GRID */
.video-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}

/* CARD */
.video-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    cursor:pointer;
    box-shadow:0 30px 60px rgba(0,0,0,.6);
    transition:.5s;
}

.video-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.8);
    transition:.5s;
}

.video-card:hover img{
    transform:scale(1.08);
    filter:brightness(.5);
}

/* PLAY BUTTON */
.play-btn{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:70px;
    color:#fff;
    background:rgba(0,0,0,.25);
    transition:.4s;
}

.video-card:hover .play-btn{
    transform:scale(1.2);
}

/* ===== MODAL ===== */
.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.video-modal iframe{
    width:80%;
    height:70%;
    border-radius:20px;
}

.close-btn{
    position:absolute;
    top:30px;
    right:40px;
    font-size:35px;
    color:white;
    cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){
    .video-modal iframe{
        width:95%;
        height:45%;
    }
}

/* LOCATION */
.location iframe{
    width:100%;
    height:420px;
    border:none;
    border-radius:20px;
}

/* FOOTER */
footer{
    background:#111;
    color:white;
    text-align:center;
    padding:30px;
}

/* ===== PREMIUM NAVBAR ===== */
.lux-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 9999;

    backdrop-filter: blur(12px);
    background: rgba(15, 15, 15, 0.6);

    display: flex;
    align-items: center;
}
.lux-navbar {
  background: linear-gradient(
      180deg,
      rgba(10,10,10,0.85),
      rgba(10,10,10,0.65)
  );
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.lux-navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 0 24px;   /* vertical padding removed */
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav-logo span {
  font-size: 18px;
  letter-spacing: 0.6px;
  font-weight: 600;
  color: #f5f5f5;
}

.nav-logo img {
  height: 44px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.35);
}

.nav-logo img {
    height: 42px;
    border-radius: 50%;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}
.lux-navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 60%;
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
      90deg,
      transparent,
      #d4af37,
      transparent
  );
  opacity: 0.7;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #d4af37;
}

/* CTA BUTTON */
.nav-btn {
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000 !important;
    font-weight: 500;
}





/* MOBILE */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(10,10,10,0.95);
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

}

/* ===== FEATURES SECTION ===== */
/* ===== FEATURES WITH PHOTOS ===== */
.features-photo{
  padding:140px 8%;
  background:
    radial-gradient(circle at top,
      rgba(212,175,55,0.25),
      transparent 60%),
    linear-gradient(180deg,#0e0e0e,#151515);
  color:white;
  position:relative;
  overflow:hidden;
}

/* HEADER */
.features-header{
  text-align:center;
  max-width:750px;
  margin:0 auto 90px;
}

.luxury-badge{
  display:inline-block;
  padding:10px 26px;
  border-radius:40px;
  background:linear-gradient(135deg,#d4af37,#f3e5ab);
  color:#000;
  font-size:13px;
  font-weight:600;
  margin-bottom:25px;
}

.features-header h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  margin-bottom:20px;
}

.features-header p{
  font-size:16px;
  color:#d0d0d0;
  line-height:1.8;
}

/* GRID */
.features-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
}

/* CARD */
.feature-card{
  position:relative;
  height:420px;
  border-radius:26px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 40px 80px rgba(0,0,0,.7);
  transition:.6s;
}

.feature-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s;
}

/* OVERLAY */
.feature-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2),
    transparent
  );
  padding:35px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  opacity:.95;
  transition:.6s;
}

.feature-overlay h3{
  font-family:'Playfair Display',serif;
  font-size:22px;
  margin-bottom:12px;
}

.feature-overlay p{
  font-size:14px;
  line-height:1.7;
  color:#e0e0e0;
}

/* HOVER EFFECT */
.feature-card:hover{
  transform:translateY(-15px) scale(1.03);
}

.feature-card:hover img{
  transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .features-header h2{
    font-size:36px;
  }

  .feature-card{
    height:360px;
  }
}

@media(max-width:480px){
  .feature-card{
    height:300px;
  }
}

/* ===== FEATURE VIDEO MODAL ===== */
.feature-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.feature-video-box {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}

.feature-video-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.feature-video-modal .close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .feature-video-box {
    border-radius: 14px;
  }
}

/* ===== PREMIUM ABOUT ===== */
.about-premium{
  padding:130px 8%;
  background:linear-gradient(180deg,#f7f5f1,#ffffff);
}

.about-wrap{
  display:grid;
  grid-template-columns:1.3fr 1fr;
  gap:80px;
  align-items:center;
}

/* BADGE */
.about-badge{
  display:inline-block;
  padding:8px 18px;
  border-radius:30px;
  background:#d4af37;
  color:#000;
  font-size:13px;
  font-weight:500;
  margin-bottom:20px;
}

/* HEADLINE */
.about-left h2{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1.2;
  margin-bottom:30px;
  color:#1c1c1c;
}

.about-left h2 span{
  color:#d4af37;
}

/* TEXT */
.about-left p{
  font-size:16px;
  line-height:1.9;
  color:#444;
  margin-bottom:18px;
}

.lead-text{
  font-size:18px;
  color:#222;
  font-weight:500;
}

/* RIGHT STATS */
.about-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.stat-card{
  background:#ffffff;
  padding:35px 25px;
  border-radius:22px;
  text-align:center;
  box-shadow:0 25px 50px rgba(0,0,0,.12);
  transition:.4s;
}

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

.stat-card span{
  font-size:34px;
  font-weight:700;
  color:#d4af37;
  display:block;
  margin-bottom:10px;
}

.stat-card p{
  font-size:14px;
  color:#555;
  letter-spacing:.5px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .about-wrap{
    grid-template-columns:1fr;
    text-align:center;
  }

  .about-left h2{
    font-size:36px;
  }

  .about-right{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:480px){
  .about-right{
    grid-template-columns:1fr;
  }
}



/* Mobile Fix */
@media (max-width: 768px) {
  .availability h2 {
    font-size: 2rem;
  }
}
.availability {
    animation: fadeUp 0.8s ease-in-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* LUXURY FOOTER STYLES */
.site-footer {
    background: #0a0a0a; /* Darker for better contrast with Gold */
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Inter', sans-serif;
    position: relative;
}

/* Elegant top border gradient */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
    opacity: 0.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    text-align: center;
}

/* BRANDING SECTION */
.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    letter-spacing: 6px;
    color: #d4af37; /* Matching your 'Book Now' button */
    margin-bottom: 10px;
    text-transform: uppercase;
}

.brand-title span { color: #fff; font-weight: 300; }

.brand-tagline {
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 30px;
}

.luxury-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.luxury-divider .line { width: 80px; height: 1px; background: rgba(212, 175, 55, 0.3); }
.luxury-divider .diamond { color: #d4af37; font-size: 12px; }

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.col-heading {
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.footer-col p { font-size: 0.95rem; line-height: 1.8; opacity: 0.7; }

/* ANIMATED LINKS */
.footer-nav a, .social-btn, .contact-item a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.6;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-nav a:hover, .social-btn:hover {
    color: #d4af37;
    opacity: 1;
    transform: translateY(-3px); /* Elegant float animation */
}

.social-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

/* BOTTOM BAR WRAPPER */
.footer-bottom {
    background: #050505; /* Pure black for contrast */
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1); /* Very faint gold border */
    position: relative;
}

.bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

/* COPYRIGHT STYLING */
.copyright {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.gold-text {
    color: #d4af37; /* Branded Gold */
    font-weight: 600;
}

/* DEVELOPER CREDIT: THE "SIGNATURE" */
.dev-credit {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.crafted-text {
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.alekh-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.4s ease;
    padding: 2px 5px;
}

/* THE "EYE-CATCHY" HOVER GLOW */
.alekh-link:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8), 
                 0 0 30px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

/* Animated underline that grows from center */
.alekh-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background: #d4af37;
    transition: all 0.4s ease;
}

.alekh-link:hover::after {
    width: 100%;
    left: 0;
}

.sparkle-icon {
    display: inline-block;
    animation: pulse 2s infinite;
    font-size: 10px;
}

/* SUBTLE PULSE ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; text-shadow: 0 0 10px #d4af37; }
    100% { transform: scale(1); opacity: 0.7; }
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .brand-title { font-size: 1.6rem; }
    .bottom-container { flex-direction: column; gap: 15px; text-align: center; }
}

/* PREMIUM VIDEO INDICATOR */
.feature-card .play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.feature-card .play-indicator::after {
    content: '';
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    margin-left: 5px;
}

/* Show play button on hover */
.feature-card:hover .play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Glassmorphism Badge */
.video-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    color: #d4af37;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

/* Pulsing Red Dot */
.video-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #ff4b2b;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff4b2b;
}


.parallax {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll; /* mobile safe */
    }
}

html {
    scroll-behavior: smooth;
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== IMAGE LIGHTBOX MODAL ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

/* Image */
.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s ease;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
}

/* Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .lightbox img {
        max-width: 95%;
        max-height: 75%;
    }
}

.no-scroll {
    overflow: hidden;
}

/* ===== FLOATING SMART CTA ===== */
.smart-cta {
    position: fixed;
    right: 24px;
    bottom: 24px; /* Aligned with your mobile bar height */
    z-index: 9999;
    
    /* Initial state: Hidden (swaps in on scroll) */
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
    
    /* Smooth transition for the 'swap' and 'pop' effect */
    transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.cta-main {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 22px;
    background: linear-gradient(135deg, #d4af37, #b8962e);
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Actions Menu Container */
.cta-actions {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

/* Active State */
.smart-cta.active .cta-actions {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Individual Action */
.cta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15,15,15,0.95);
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

/* Hover */
.cta-item:hover {
    background: #d4af37;
    color: #000;
}

/* Hide text on very small screens */
@media (max-width: 360px) {
    .cta-item span {
        display: none;
    }
}


/* Ensure the CTA is also hidden when the lightbox is open */
body.lightbox-is-open .smart-cta {
    display: none !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .smart-cta {
        right: 16px;
        /* Matches your bar spacing */
        bottom: 90px; 
    }
    .cta-main {
        width: 54px;
        height: 54px;
        font-size: 20px;
    }
}


/* ===== STICKY MOBILE BOOKING BAR ===== */
/* ===== FINAL MASTER FIX: FLOATING NAV BAR ===== */
.mobile-booking-bar {
    position: fixed;
    bottom: 25px; 
    left: 50%;
    /* Keep centering and set initial state */
    transform: translate(-50%, 0); 
    
    /* Crucial for the slide effect */
    transition: transform 0.3s ease-in-out !important;
    
    width: 90vw;
    max-width: 380px;
    height: 65px;
    
    /* Premium Glass Design */
    background: rgba(10, 10, 10, 0.85) !important; 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 100px; 
    
    display: none; /* Shown via Media Query */
    align-items: center;
    justify-content: space-around;
    z-index: 99999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    box-sizing: border-box;
    z-index: 100000 !important; /* Extremely high to stay on top of everything */
    pointer-events: auto !important; /* Ensures the bar captures touches */
    user-select: none; /* Prevents text selection while tapping */
    -webkit-tap-highlight-color: transparent; /* REMOVES THE BLUE GLIMPSE */
}

/* Maintain display flex on mobile */
@media (max-width: 850px) {
    .mobile-booking-bar {
        display: flex;
    }
}

/* Individual Items */
.mb-item {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    background: transparent !important; /* Forces background to stay transparent */
    border: none !important;
    transition: transform 0.2s ease;
    -webkit-tap-highlight-color: transparent; /* REMOVES THE BLUE GLIMPSE */
    cursor: pointer;
    position: relative;
    z-index: 10;
    
    /* Improve touch area */
    min-width: 60px; 
    height: 100%;
}

/* Special Styling for the Book Button */
.mb-item.book {
    color: #d4af37 !important; /* Solid Gold text */
    font-weight: 700;
}

/* Fix for icons/images inside items */
.mb-item img, .mb-item span {
    font-size: 18px;
    display: block;
}

/* Prevent accidental horizontal scrolling on the whole page */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}



/* ===== VENUE MANAGER ===== */
.venue-manager {
    padding: 120px 8%;
    background: #fff;
    text-align: center;
}

.manager-card {
    max-width: 420px;
    margin: 40px auto 0;
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

.manager-card img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 4px solid #d4af37;
}

.manager-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}

.manager-card .role {
    font-size: 14px;
    color: #888;
    margin-bottom: 18px;
}

.manager-text {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.manager-btn {
    display: inline-block;
    padding: 12px 26px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobile spacing */
@media (max-width: 768px) {
    .venue-manager {
        padding: 90px 6%;
    }
}

/* ===== BOOKING PANEL ===== */
.booking-panel {
    max-width: 420px;
    margin: 40px auto 0;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    text-align: center;
}

.booking-panel h3 {
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.booking-panel input,
.booking-panel select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.booking-panel button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#25D366,#1ebe5d);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    cursor: pointer;
}

/* ===== GOOGLE REVIEWS (CURATED) ===== */
.google-reviews {
    padding: 120px 8%;
    background: linear-gradient(180deg,#ffffff,#f7f7f7);
    text-align: center;
}

.google-reviews h2 {
    margin: 15px 0 10px;
}

.rating-summary {
    font-size: 20px;
    color: #d4af37;
    margin-bottom: 50px;
}

.rating-summary span {
    display: block;
    font-size: 14px;
    color: #666;
    margin-top: 6px;
}

/* GRID */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    transition: transform 0.4s ease;
}

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

.review-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.review-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.review-card span {
    font-size: 13px;
    color: #888;
}

/* GOOGLE BUTTON */
.google-review-btn {
    display: inline-block;
    margin-top: 50px;
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg,#4285F4,#34A853);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* Mobile spacing */
@media (max-width: 768px) {
    .google-reviews {
        padding: 90px 6%;
    }
}

/* ===== FIX MOBILE DATE INPUT ===== */
.booking-panel input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    background-color: #ffffff;
    color: #222;

    min-height: 44px;
    font-size: 14px;
    padding: 12px 14px;

    border-radius: 12px;
    border: 1px solid #ddd;
}

/* Ensure date text is visible on iOS */
.booking-panel input[type="date"]::-webkit-datetime-edit {
    color: #222;
}

.booking-panel input[type="date"]::-webkit-datetime-edit-text,
.booking-panel input[type="date"]::-webkit-datetime-edit-month-field,
.booking-panel input[type="date"]::-webkit-datetime-edit-day-field,
.booking-panel input[type="date"]::-webkit-datetime-edit-year-field {
    color: #222;
}

/* Placeholder style fallback */
.booking-panel input[type="date"]::placeholder {
    color: #777;
}

.booking-label {
    display: block;
    text-align: left;
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
}

/* Default */
.date-desktop {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Hide mobile elements on desktop */
.date-mobile,
.real-mobile-date {
    display: none;
}

/* Mobile behavior */
@media (max-width: 768px) {
    .date-desktop {
        display: none;
    }

    .date-mobile {
        display: block;
        width: 100%;
        padding: 12px 14px;
        border-radius: 12px;
        border: 1px solid #ddd;
        font-size: 14px;
        background: #fff;
        color: #222;
    }

     .real-mobile-date {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 44px;
        z-index: -1;
    }
}

.date-wrapper {
    position: relative;
    width: 100%;
    cursor: pointer;
}

#bookingDateDisplay {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    color: #222;
    cursor: pointer;
}

/* Hide real picker but keep it functional */
#bookingDateReal {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}
/* FIX: Make full date input clickable on desktop */
.booking-panel input[type="date"] {
    cursor: pointer;
    pointer-events: auto;
    background-color: #fff;
}

/* Chrome / Edge full click support */
.booking-panel input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 1;
}
.booking-panel select,
.booking-panel button {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 12px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.nav-links a.feature-link {
    color: #d4af37;
    font-weight: 500;
}

/* ===== LOCATION PREMIUM ===== */
.location {
    text-align: center;
    padding: 120px 8%;
}

.location-sub {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 15px;
    color: #666;
}

/* Card */
.location-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    overflow: hidden;
}

/* Map */
.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
}

/* CTA */
.map-actions {
    padding: 25px;
    background: #fafafa;
}

.map-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 30px;
    background: linear-gradient(135deg,#4285F4,#34A853);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

/* ===== VENUE INFO ===== */
.venue-info {
    padding: 120px 8%;
    background: linear-gradient(180deg,#ffffff,#f7f7f7);
    text-align: center;
}

/* HIGHLIGHTS */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 25px;
    margin: 60px auto;
    max-width: 1000px;
}

.highlight-card {
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* FAQ */
/* ===== PREMIUM FAQ ===== */
.faq-container {
    max-width: 850px;
    margin: 70px auto 0;
}

.faq-item {
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 18px;
    padding: 0 24px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question-text {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/* Icon */
.faq-question .icon {
    font-size: 22px;
    color: #d4af37;
    transition: transform 0.4s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, opacity 0.35s ease;
    opacity: 0;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-bottom: 22px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}


/* ===== FAQ HOVER GLOW ===== */
.faq-item:hover {
    box-shadow:
        0 25px 55px rgba(212,175,55,0.25),
        0 0 0 1px rgba(212,175,55,0.25);
}

.faq-question:hover .question-text {
    color: #d4af37;
}

/* Mobile tap feedback */
@media (max-width: 768px) {
    .faq-item:active {
        box-shadow:
            0 18px 40px rgba(212,175,55,0.35);
    }
}

.faq-question .icon {
    transition: transform 0.45s ease, color 0.3s ease;
}

.faq-item.active .icon {
    color: #b8962e;
}

.faq-question {
    -webkit-tap-highlight-color: transparent;
}

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    padding: 120px 8%;
    background: linear-gradient(180deg,#ffffff,#f7f7f7);
    text-align: center;
}

.trusted-by h2 {
    margin: 18px 0 60px;
}

/* GRID */
.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

/* CARD */
.trusted-card {
    background: #ffffff;
    padding: 36px 24px;
    border-radius: 22px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.trusted-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 70px rgba(212,175,55,0.25),
        0 0 0 1px rgba(212,175,55,0.25);
}

/* NUMBER */
.trusted-number {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

/* TEXT */
.trusted-card p {
    font-size: 14px;
    color: #555;
    letter-spacing: 0.5px;
}

/* FOOTNOTE */
.trusted-footnote {
    margin-top: 45px;
    font-size: 15px;
    color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
    .trusted-by {
        padding: 90px 6%;
    }

    .trusted-number {
        font-size: 34px;
    }
}



.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.9);
}





/* Mobile */
@media (max-width: 768px) {

  .lang-switcher {
    transform: scale(0.95);
  }

}




/* Active language */
.lang-btn.active {
  background: var(--gold);
  color: #111;
  font-weight: 500;
}
.language-selector {
  position: relative;
}

.language-btn {
    padding: 7px 14px;
    border-radius: 999px;

    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);

    color: #fff;
    font-size: 13px;
    font-weight: 500;

    backdrop-filter: blur(8px);
    cursor: pointer;

    transition: background 0.2s ease, border-color 0.2s ease;
}
.language-btn {
  background: linear-gradient(
      135deg,
      rgba(212,175,55,0.22),
      rgba(212,175,55,0.12)
  );
  border: 1px solid rgba(212,175,55,0.45);
  color: #f7e7b5;
  padding: 8px 16px;
  font-size: 14px;
  box-shadow: 0 6px 20px rgba(212,175,55,0.25);
}

.language-btn:hover {
    background: rgba(255,255,255,0.14);
    border-color: #c9a24d;
}

.language-menu {
    position: absolute;
    top: 130%;
    right: 0;
    min-width: 180px;

    background: rgba(25, 25, 25, 0.92);
    backdrop-filter: blur(12px);

    border-radius: 16px;
    padding: 6px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);

    opacity: 0;
    transform: translateY(-8px) scale(0.98);
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;

    z-index: 1300;
}

.language-menu.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.language-menu button {
    width: 100%;
    padding: 10px 14px;

    background: transparent;
    border: none;
    border-radius: 12px;

    color: #f5f5f5;
    font-size: 14px;
    text-align: left;

    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-menu button:hover {
    background: rgba(201, 162, 77, 0.18);
    color: #c9a24d;
}

.language-menu a:hover {
  background: #c9a24d;
  color: #000;
}


/* ===============================
   MOBILE NAVBAR FIX (SAFE)
================================ */


@media (max-width: 768px) {

  .lux-navbar {
    padding: 10px 14px;
  }

  .brand-text {
    font-size: 16px;
  }

}

.language-selector {
    position: relative;
    z-index: 1100;
}

.language-btn {
    pointer-events: auto;
    position: relative;
    z-index: 1200;
    cursor: pointer;
}

/* ===============================
   LANGUAGE-SPECIFIC FONTS
================================ */

html {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

html[lang="hi"] {
    font-family: "Hind", system-ui, sans-serif;
}

html[lang="gu"] {
    font-family: "Noto Serif Gujarati", serif;
}

html[lang="hi"],
html[lang="gu"] {
    line-height: 1.7;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}
.menu-toggle {
  color: #fff;
  font-size: 26px;
  opacity: 0.9;
}

.menu-toggle:hover {
  color: #d4af37;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 992px) {
    #navLinks {
        display: none;
    }

    #navLinks.active {
        display: flex;
        flex-direction: column;
    }
}

/* =========================
   MOBILE NAVBAR FIX ONLY
   ========================= */
@media (max-width: 768px) {

  /* Navbar container */
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    width: 100%;
  }

  /* Logo section */
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0; /* VERY IMPORTANT */
    max-width: 70%;
  }

  .nav-logo img {
    width: 38px;
    height: auto;
    flex-shrink: 0;
  }

  .nav-logo span {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Hide nav links from layout (not just visually) */
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #111;
    display: none;
    flex-direction: column;
    padding: 20px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  /* Language button smaller */
  .language-btn {
    font-size: 14px;
    padding: 5px 10px;
    white-space: nowrap;
  }

  /* Menu toggle */
  .menu-toggle {
    display: block;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
  }
}
/* Desktop arrow (default) */
.desktop-arrow {
  display: inline;
}
.language-btn {
    /* Removes the blue highlight on mobile Chrome/Safari/Edge */
    -webkit-tap-highlight-color: transparent;
    
    /* Removes the dotted outline on focus in some desktop browsers */
    outline: none;
}

/* Optional: Add your own subtle active state so users know it was clicked */
.language-btn:active {
    background-color: rgba(0, 0, 0, 0.05);
}
.language-menu button {
    -webkit-tap-highlight-color: transparent;
}
/* =========================
   MOBILE-ONLY ARROW FIX
   ========================= */
@media (max-width: 768px) {

  /* Hide desktop arrow */
  .desktop-arrow {
    display: none;
  }

  /* Mobile-safe arrow */
  .language-btn::after {
    content: "▾";
    margin-left: 6px;
    font-size: 14px;
    display: inline-block;
  }

  .language-btn {
    display: flex;
    align-items: center;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {

  .lux-navbar {
    background: linear-gradient(
      180deg,
      rgba(12,12,12,0.92),
      rgba(12,12,12,0.78)
    );
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(212,175,55,0.25);
  }

}
@media (max-width: 768px) {

  .nav-logo span {
    font-size: 16px;          /* slightly bigger */
    font-weight: 600;
    letter-spacing: 0.4px;
    color: #f5f5f5;
  }

  .nav-logo img {
    width: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  }

}
@media (max-width: 768px) {

  .language-btn {
    background: linear-gradient(
      135deg,
      rgba(212,175,55,0.22),
      rgba(212,175,55,0.12)
    );
    border: 1px solid rgba(212,175,55,0.45);
    color: #f7e7b5;
    font-size: 13px;
    padding: 6px 14px;
    box-shadow: 0 6px 18px rgba(212,175,55,0.25);
  }

}

@media (max-width: 768px) {

  .menu-toggle {
    font-size: 26px;
    color: #ffffff;
    opacity: 0.9;
  }

  .menu-toggle:active {
    color: #d4af37;
  }

}
@media (max-width: 768px) {

  .nav-container {
    padding: 12px 16px; /* slightly more breathing room */
  }

}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  touch-action: none;
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* FIX PREV / NEXT BUTTON VISIBILITY ON MOBILE ONLY */
@media (max-width: 768px) {
  #prevBtn,
  #nextBtn {
    position: fixed;        /* detach from image/container */
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;         /* above image */
  }

  #prevBtn {
    left: 8px;              /* keep inside screen */
  }

  #nextBtn {
    right: 8px;             /* keep inside screen */
  }
}

/* MOBILE FIX: PREV / NEXT BUTTON POSITION + SIZE */
/* MOBILE FIX: PREV / NEXT BUTTON – CORRECT ALIGNMENT */
@media (max-width: 768px) {
  #prevBtn,
  #nextBtn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;

    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  /* Move arrows slightly DOWN to match image box */
  #prevBtn {
    left: 6px;
    margin-top: 18px;
  }

  #nextBtn {
    right: 6px;
    margin-top: 18px;
  }
}

/* Remove blue glimpse from Gallery Buttons */
 
.lightbox-close {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
    user-select: none;
    cursor: pointer;
    z-index: 100001; /* Higher than the image to ensure clickability */
}

/* Optional: Add a slight scale effect when touched for better feedback */

.lightbox-close:active {
    transform: scale(0.9);
    opacity: 0.7;
}

/* MOBILE: ALIGN ARROWS TO IMAGE CENTER */
@media (max-width: 768px) {
  #prevBtn,
  #nextBtn {
    position: absolute;     /* ← key change */
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;

    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  #prevBtn {
    left: 6px;
  }

  #nextBtn {
    right: 6px;
  }
}

body.lang-hi {
  font-family: "Hind", "Noto Sans Devanagari", sans-serif;
}

body.lang-gu {
  font-family: "Hind Vadodara", "Noto Sans Gujarati", sans-serif;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox img {
  max-width: 90%;
  max-height: 85%;
  user-select: none;
  pointer-events: none; /* 🔥 prevents tap-through */
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 18px;
    
    /* THE FIXES */
    z-index: 100005 !important; /* Force to the very top */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer !important;
}
#lightboxImg {
    z-index: 10 !important;
    pointer-events: none; /* Allow clicks to pass through to the modal/buttons */
    max-width: 90%;
    max-height: 85%;
}
.lightbox-close, .nav-btn {
    -webkit-tap-highlight-color: transparent !important;
    outline: none !important;
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 24px;
  color: white;
  z-index: 25;
  cursor: pointer;
}

.lightbox {
  touch-action: pan-y;
}


.lightbox {
  display: none;
}

/* Lightbox image – premium frame */
#lightboxImg {
  border-radius: 16px;
  background: #000;

  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 25px 60px rgba(0,0,0,0.55);

  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.lightbox.active #lightboxImg {
  box-shadow:
    0 0 0 1px rgba(201,164,76,0.35),
    0 30px 70px rgba(0,0,0,0.6);
}


.dev-credit a {
    color: #c9a44c; /* gold accent */
    text-decoration: none;
    font-weight: 500;
    margin-left: 4px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.dev-credit a:hover {
    color: #e6c96f;
}

.footer-emoji {
    font-size: 0.9em; /* Makes it slightly smaller so it doesn't distract */
    opacity: 0.7;    /* Makes it less 'loud' than the text */
    margin-left: 3px;
}

/* Gujarati language enhancements */
html[lang="gu"] body {
    font-family: "Noto Sans Gujarati", system-ui, sans-serif;
}

/* Slightly boost Gujarati text size */
html[lang="gu"] .manager-card,
html[lang="gu"] .luxury-badge,
html[lang="gu"] .manager-btn {
    font-size: 1.08em;
    line-height: 1.6;
}

/* Headings need a bit more presence */
html[lang="gu"] .manager-card h3 {
    font-size: 1.15em;
    font-weight: 600;
}

html[lang="gu"] .manager-text {
    letter-spacing: 0.2px;
}

#imageModal {
    pointer-events: auto;
}

#imageModal * {
    pointer-events: auto;
}


.nav-links {
  display: flex;
  gap: 28px;
}
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: block;
    font-size: 26px;
    color: white;
    background: none;
    border: none;
    z-index: 10001;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100vh - 78px);
    background: #111;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (min-width: 769px) {
  .nav-links {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    height: auto !important;
    background: transparent !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

/* ===============================
   MOBILE DESKTOP-SITE NAVBAR FIX
   (Does NOT affect real desktop or mobile)
================================ */



html.mobile-desktop-site .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

html.mobile-desktop-site .nav-logo img {
  height: 36px;
}

html.mobile-desktop-site .nav-logo span {
  font-size: 16px;
  white-space: nowrap;
}

html.mobile-desktop-site .nav-links {
  display: flex !important;
  flex-direction: row !important;
  gap: 18px;
  position: static !important;
  height: auto !important;
  background: transparent !important;
}

html.mobile-desktop-site .nav-links a {
  font-size: 14px;
  padding: 6px 8px;
}

html.mobile-desktop-site .menu-toggle {
  display: none !important;
}

html.mobile-desktop-site .nav-links a {
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ===============================
   TABLET NAVBAR OPTIMIZATION
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  .navbar,
  #navbar {
    padding: 10px 28px;
    height: 70px;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-logo span {
    font-size: 17px;
  }

  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 15px;
    padding: 6px 10px;
  }
}

/* ===============================
   NAVBAR HEIGHT LOCK
================================ */
.navbar,
#navbar {
  min-height: 64px;
}

.navbar {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* =========================================
   DESKTOP SITE ON MOBILE – NAVBAR FIX
   DOES NOT AFFECT:
   ✔ normal mobile
   ✔ real desktop
========================================= */



html.desktop-site-mobile .nav-container {
  align-items: center;
}

html.desktop-site-mobile .nav-logo img {
  height: 34px;
}

html.desktop-site-mobile .nav-logo span {
  font-size: 16px;
}

html.desktop-site-mobile .nav-links {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  gap: 18px;
  height: auto !important;
  background: transparent !important;
}

html.desktop-site-mobile .nav-links a {
  font-size: 14px;
  padding: 6px 8px;
}

html.desktop-site-mobile .menu-toggle {
  display: none !important;
}

html.desktop-site-mobile .language-selector {
  transform: scale(0.95);
}

/* =========================================
   DESKTOP SITE ON MOBILE – FINAL FIX
========================================= */

html.desktop-site-mobile .lux-navbar {
  height: 64px !important;
}

html.desktop-site-mobile .nav-container {
  padding: 0 20px !important;
  height: 64px !important;
}

html.desktop-site-mobile .menu-toggle {
  display: none !important;
}

html.desktop-site-mobile .nav-links {
  position: static !important;
  display: flex !important;
  flex-direction: row !important;
  height: auto !important;
  background: transparent !important;
}

html.desktop-site-mobile .nav-links a {
  font-size: 14px !important;
  padding: 6px 8px !important;
}

html.desktop-site-mobile .nav-logo img {
  height: 34px !important;
}

html.desktop-site-mobile .nav-logo span {
  font-size: 16px !important;
}

/* ===== PREMIUM HOVER FOR HIGHLIGHTS ===== */
.highlight-card {
  position: relative;
  overflow: hidden;

  transition:
    transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    box-shadow 0.45s ease,
    background 0.35s ease;
}

/* Soft gold glow layer */
.highlight-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(212,175,55,0.35),
    transparent 65%
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Hover / focus */
.highlight-card:hover,
.highlight-card:focus-within {
  transform: translateY(-10px) scale(1.03);

  box-shadow:
    0 30px 70px rgba(0,0,0,0.18),
    0 0 0 1px rgba(212,175,55,0.35);
}

.highlight-card:hover::before {
  opacity: 1;
}

/* Emoji / icon pop */
.highlight-card:hover {
  letter-spacing: 0.3px;
}

/* ===== MOBILE TAP FEEDBACK (NO HOVER JANK) ===== */
@media (max-width: 768px) {
  .highlight-card:active {
    transform: scale(0.98);
    box-shadow:
      0 18px 40px rgba(212,175,55,0.35);
  }
}

.highlight-card:hover {
  text-shadow: 0 0 12px rgba(212,175,55,0.45);
}

/* Hide the booking bar when the image modal is active */
#imageModal:not([style*="display: none"]) ~ .mobile-booking-bar,
#imageModal:not([style*="display: none"]) + .mobile-booking-bar {
    display: none !important;
}

/* Alternative fix if your JS toggles a class like 'active' or 'show' */
#imageModal.active ~ .mobile-booking-bar,
#imageModal.show ~ .mobile-booking-bar {
    display: none !important;
}

/* Hard-hide the bar and CTA whenever the lightbox class is active */
body.lightbox-is-open .mobile-booking-bar,
body.lightbox-is-open .smart-cta {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    display: none !important; /* Forces it off the layout entirely */
}







