/* ═══════════════════════════════════════════════════════════
   LUCKY INTERNATIONAL — BANQUETS PAGE CSS
   Import order: tokens.css → base.css → loaders.css → banquets.css
═══════════════════════════════════════════════════════════ */

html, body { overflow-x: hidden; }

/* ── Navigation (matches rooms.css pattern) ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 80px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
#navbar.scrolled {
  background: rgba(249,248,246,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--divider);
  box-shadow: 0 4px 24px rgba(26,26,26,0.06);
}
#navbar:not(.scrolled) .nav-logo-name,
#navbar:not(.scrolled) .nav-logo-addr,
#navbar:not(.scrolled) .nav-links a { color: var(--white); }
#navbar:not(.scrolled) .nav-links a::after { background: var(--white); }
#navbar:not(.scrolled) .nav-dhaba-link { color: rgba(255,255,255,0.85) !important; }
#navbar:not(.scrolled) .hamburger span { background: var(--white); }
#navbar.scrolled .nav-logo-name,
#navbar.scrolled .nav-logo-addr,
#navbar.scrolled .nav-links a { color: var(--fg); }
#navbar.scrolled .nav-dhaba-link { color: var(--dred) !important; }
#navbar.scrolled .hamburger span { background: var(--fg); }

.nav-inner {
  height: 100%;
  padding: 0 var(--margin-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  line-height: 1;
}
.nav-logo-addr {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg);
  opacity: 0.5;
  line-height: 1;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-dhaba-link { color: var(--dred) !important; font-weight: 600; }
.nav-dhaba-link::after { background: var(--dred) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--fg);
  transition: all var(--transition-base);
}
#mobile-overlay {
  display: flex;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: var(--z-overlay);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0.35s;
  pointer-events: none;
}
#mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: all;
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    visibility 0s linear 0s;
}

#mobile-overlay a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
}
.overlay-dhaba { color: var(--dred) !important; }
.overlay-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 24px;
  color: var(--fg);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  background: none;
  border: none;
}

/* ── Page Hero ── */
#banquets-hero {
  position: relative;
  height: 65vh;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 0 var(--margin-desktop) 0;
  overflow: hidden;
}
.banquets-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%),
    url('../assets/images/banquets/banquets-banner.png') center/cover no-repeat;
  filter: grayscale(0.15);
  transition: filter 1500ms ease-in-out;
}
#banquets-hero:hover .banquets-hero-bg { filter: grayscale(0); }
.banquets-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}
.banquets-hero-eyebrow { color: var(--gold); margin-bottom: 16px; }
.banquets-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.banquets-hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}
.banquets-venue-nav {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.banquets-venue-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}
.banquets-venue-nav a:hover { color: var(--gold); }
.venue-dot {
  width: 3px; height: 3px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Intro Section ── */
#banquets-intro {
  padding: 100px var(--margin-desktop) 80px;
  text-align: center;
  background: var(--bg);
}
.banquets-intro-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 24px;
}
.banquets-intro-body {
  font-size: 17px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 64px;
}
.banquets-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--divider);
  max-width: 820px;
  margin: 0 auto;
}
.stat-item {
  flex: 1;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-30);
}
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--divider);
  flex-shrink: 0;
}

/* ── Venue Sections ── */
#swayambar,
#multipurpose {
  background: var(--bg);
}

/* Venue Hero Image */
.venue-hero-image {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #111;
}
.venue-hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  align-items: flex-end;
  padding: 56px var(--margin-desktop);
}
.venue-hero-overlay--dark {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 60%);
}
.venue-hero-label { display: flex; flex-direction: column; gap: 16px; }
.venue-hero-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1.5px;
}

/* Venue Details Grid */
.venue-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--divider);
}
.venue-details-grid--alt .venue-description { order: 2; }
.venue-details-grid--alt .venue-specs-panel { order: 1; }

.venue-description {
  padding: 72px var(--margin-desktop) 72px 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.venue-details-grid--alt .venue-description {
  padding: 72px 80px 72px var(--margin-desktop);
}
.venue-desc-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.venue-desc-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 20px;
}

/* Specs panel */
.venue-specs-panel {
  padding: 72px 80px 72px 60px;
  background: #F4F3F0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.venue-details-grid--alt .venue-specs-panel {
  padding: 72px 60px 72px var(--margin-desktop);
}
.specs-block { display: flex; flex-direction: column; gap: 16px; }
.specs-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg-30);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--divider);
}

/* Capacity grid */
.capacity-grid { display: flex; flex-direction: column; gap: 0; }
.capacity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
}
.capacity-row:last-child { border-bottom: none; }
.capacity-layout {
  font-size: 13px;
  font-weight: 400;
  color: var(--fg-70);
}
.capacity-count {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

/* Specs list */
.specs-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.specs-list li {
  font-size: 13px;
  color: var(--fg-70);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.amenity-icon { color: var(--gold); font-size: 8px; flex-shrink: 0; }

/* Layout toggle */
.layout-toggle {
  display: flex;
  gap: 0;
  border: 1px solid var(--divider);
  width: fit-content;
}
.layout-btn {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fg-50);
  background: transparent;
  border: none;
  border-right: 1px solid var(--divider);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.layout-btn:last-child { border-right: none; }
.layout-btn.active {
  background: var(--fg);
  color: var(--white);
}
.layout-btn:hover:not(.active) {
  background: var(--fg-10);
  color: var(--fg);
}
.layout-diagram-wrap {
  position: relative;
  border: 1px solid var(--divider);
  background: var(--white);
  overflow: hidden;
}
.layout-diagram {
  display: none;
  padding: 16px;
}
.layout-diagram.active { display: block; }
.layout-diagram svg { width: 100%; height: auto; }

/* ── Venue Gallery Row ── */
.venue-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.venue-gallery-item {
  position: relative;
  overflow: hidden;
  background: #111;
  height: 300px;
}
.venue-gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.venue-gallery-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.venue-gallery-item:hover .venue-gallery-cap { opacity: 1; }

/* ── Services Strip ── */
#banquets-services {
  background: var(--fg);
  padding: 100px var(--margin-desktop);
}
.services-inner { max-width: var(--max-width); margin: 0 auto; }
.services-header {
  margin-bottom: 56px;
}
.services-header .h2 { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.service-card {
  padding: 40px 32px;
  background: var(--fg);
  transition: background var(--transition-base);
}
.service-card:hover { background: #222; }
.service-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.service-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* ── Contact CTA ── */
#banquets-cta {
  position: relative;
  padding: 120px var(--margin-desktop);
  text-align: center;
  background: #0A0A0A;
  overflow: hidden;
}
.banquets-cta-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/banquets/banquets-banner.png') center/cover no-repeat;
  opacity: 0.06;
  filter: grayscale(1);
}
.banquets-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banquets-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
#footer { background: #0A0A0A; padding: 80px var(--margin-desktop) 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  display: block;
  margin-bottom: 14px;
}
.footer-brand-addr { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-bottom: 20px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 14px; color: rgba(212,175,55,0.75); }
.footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.48); transition: color var(--transition-fast); }
.footer-links a:hover { color: var(--white); }
.footer-dhaba-link { color: var(--dred) !important; }
.footer-bottom { padding-top: 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.2); transition: color var(--transition-fast); }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 390px
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Nav */
  #navbar { height: 60px; }
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #banquets-hero { height: auto; min-height: 420px; padding: 0 20px 0; }
  .banquets-hero-headline { font-size: 36px; letter-spacing: -0.5px; }
  .banquets-hero-sub { font-size: 14px; }
  .banquets-hero-content { padding-bottom: 24px; }
  .banquets-venue-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 16px 0;
    gap: 16px;
  }
  .banquets-venue-nav::-webkit-scrollbar { display: none; }
  .banquets-venue-nav a { font-size: 9px; white-space: nowrap; }
  .venue-dot { display: none; }

  /* Intro */
  #banquets-intro { padding: 64px 20px 56px; }
  .banquets-intro-headline { font-size: 28px; }
  .banquets-intro-body { font-size: 15px; }
  .banquets-stats {
    flex-direction: column;
    max-width: 100%;
    gap: 0;
  }
  .stat-item { padding: 24px 20px; width: 100%; }
  .stat-number { font-size: 36px; }
  .stat-divider { width: 100%; height: 1px; }

  /* Divider */
  hr.divider-line { margin: 0 20px !important; }

  /* Venue hero image */
  .venue-hero-image { height: 260px; }
  .venue-hero-overlay,
  .venue-hero-overlay--dark { padding: 28px 20px; }
  .venue-hero-name { font-size: 28px; letter-spacing: -0.5px; }

  /* Venue details grid → stack */
  .venue-details-grid,
  .venue-details-grid--alt {
    display: block;
  }
  .venue-details-grid--alt .venue-description,
  .venue-details-grid--alt .venue-specs-panel { order: unset; }

  .venue-description,
  .venue-details-grid--alt .venue-description {
    padding: 40px 20px 32px 20px;
  }
  .venue-desc-headline { font-size: 24px; }
  .venue-desc-body { font-size: 14px; max-width: 100%; }

  .venue-specs-panel,
  .venue-details-grid--alt .venue-specs-panel {
    padding: 32px 20px 40px 20px;
  }

  /* Layout toggle */
  .layout-toggle { width: 100%; }
  .layout-btn { flex: 1; padding: 12px 8px; font-size: 10px; }

  /* Venue gallery → stack */
  .venue-gallery-row { grid-template-columns: 1fr; }
  .venue-gallery-item { height: 220px; }
  .venue-gallery-cap { opacity: 1; }

  /* Services */
  #banquets-services { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 32px 24px; }

  /* CTA */
  #banquets-cta { padding: 72px 20px; }
  .banquets-cta-actions { flex-direction: column; align-items: stretch; }
  .banquets-cta-actions .btn { width: 100%; }

  /* Footer */
  #footer { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}
