/* ═══════════════════════════════════════════════════════════
   LUCKY INTERNATIONAL — HOMEPAGE CSS
   Scope: index.html only
   Import after: tokens.css → base.css → loaders.css
═══════════════════════════════════════════════════════════ */

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 3px;
  white-space: nowrap;
}
.nav-logo-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: inherit;
  line-height: 1;
}
.nav-logo-addr {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.6;
  line-height: 1;
}
.nav-dhaba-link {
  color: var(--dred) !important;
  font-weight: 600;
}
.nav-dhaba-link::after {
  background: var(--dred) !important;
}
.hero-logo {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
  display: block;
  filter: brightness(0) invert(1);
}

/* ── Navigation ── */
/* Nav text white when over hero (not scrolled) */
#navbar:not(.scrolled) .nav-logo,
#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;
}

/* Nav text returns to dark when scrolled (frosted bg) */
#navbar.scrolled .nav-logo,
#navbar.scrolled .nav-links a {
  color: var(--fg);
}
#navbar.scrolled .nav-dhaba-link {
  color: var(--dred) !important;
}
/* Active nav link */
.nav-active { color: var(--gold) !important; font-weight: 600 !important; }
.nav-active::after { width: 100% !important; background: var(--gold) !important; }

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  height: 80px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  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.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--divider);
  box-shadow: 0 4px 24px rgba(26, 26, 26, 0.08);
}

.nav-inner {
  height: 100%;
  padding: 0 var(--margin-desktop);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--fg);
  /* Swap for image: .nav-logo-img { height: 36px; width: auto; } */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--fg);
  position: relative;
  transition: color var(--transition-fast);
}
.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 { width: 100%; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

#navbar.scrolled .hamburger span { background: var(--fg); }

/* Mobile overlay */
#mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: var(--z-overlay);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;

  /* Hidden state */
  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);
  transition: color var(--transition-fast);
}
#mobile-overlay a:hover { color: var(--gold); }
.overlay-dhaba { color: var(--dred) !important; }
.overlay-close {
  position: absolute;
  top: 28px; right: 28px;
  font-size: 24px;
  color: var(--fg);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.58) 100%),
    url('../assets/images/hotel/full-overlay.png') center/cover no-repeat;
  /* Replace URL with: assets/images/hotel/hero.jpg */
}
.hero-content {
  position: relative;
  z-index: var(--z-above);
  padding: 0 var(--margin-desktop);
  width: 100%;
}
.hero-eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--white-70);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px; right: var(--margin-desktop);
  z-index: var(--z-above);
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.3);
}

/* ── Intro ── */
#intro {
  padding: 120px var(--margin-desktop);
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.intro-logo-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 40vw, 560px);
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.intro-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.25;
  max-width: 680px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.intro-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--fg-50);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

/* ── Rooms Preview ── */
#rooms-preview {
  padding: 100px 0 120px;
  background: var(--bg);
}
.rooms-header {
  padding: 0 var(--margin-desktop);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}
.rooms-header-left .eyebrow { color: var(--fg-30); margin-bottom: 12px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 0 var(--margin-desktop);
}
.room-card { cursor: pointer; }
.room-card-img {
  position: relative;
  overflow: hidden;
  background: #111;
  aspect-ratio: 3/4;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.room-tag {
  position: absolute;
  bottom: 0; left: 0;
}
.room-card-body { padding: 18px 0 0; }
.room-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.room-card-desc {
  font-size: 13px;
  color: var(--fg-50);
  line-height: 1.6;
  margin-bottom: 14px;
}
.room-card-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}
.room-card:hover .room-card-link { gap: 10px; }

/* ── Amenities Marquee ── */
#amenities-marquee {
  background: var(--fg);
  height: 72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Gallery Strip ── */
#gallery-strip { padding: 100px 0; background: var(--bg); }
.gallery-header {
  padding: 0 var(--margin-desktop);
  margin-bottom: 40px;
}
.gallery-header .eyebrow { color: var(--fg-30); margin-bottom: 10px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 10px;
  padding: 0 var(--margin-desktop);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: #111;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-large { grid-row: 1 / 3; height: 520px; }
.gallery-item:not(.gallery-large) { height: 255px; }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ── Dhaba Feature Banner ── */
#dhaba-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: #0E0E0A;
}
.dhaba-image {
  position: relative;
  overflow: hidden;
}
.dhaba-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
#dhaba-feature:hover .dhaba-image img { transform: scale(1.04); }
.dhaba-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 55%, #0E0E0A 100%);
}
.dhaba-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 60px;
  position: relative;
  overflow: hidden;
}
.dhaba-bg-logo {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(320px, 42vw, 620px);
  height: auto;
  opacity: 0.07;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.dhaba-eyebrow { color: var(--gold); margin-bottom: 20px; position: relative; z-index: 1; }
.dhaba-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 24px;
  position: relative; 
  z-index: 1;
}
.dhaba-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 40px;
  position: relative; 
  z-index: 1;
}
.dhaba-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: relative; z-index: 1; }
.dhaba-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dgreen);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px 16px;
}

/* ── Contact CTA ── */
#contact-cta {
  background: var(--fg);
  padding: 120px var(--margin-desktop);
  position: relative;
  overflow: hidden;
}
.cta-bg-logo {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(300px, 38vw, 580px);
  height: auto;
  opacity: 0.06;
  filter: brightness(0) invert(1);
  pointer-events: none;
  user-select: none;
}

.cta-inner { position: relative; z-index: var(--z-above); }
.cta-eyebrow { color: var(--gold); margin-bottom: 20px; }
.cta-headline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  max-width: 600px;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 48px;
}
.cta-actions { display: flex; gap: 16px; 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;
  /* Logo image: .footer-logo-img { height: 32px; width: auto; 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-dhaba-link:hover { opacity: 0.8; }
.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 var(--margin-mobile); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  #hero { padding-bottom: 80px; }
  .hero-content { padding: 0 var(--margin-mobile); }
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 14px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { right: var(--margin-mobile); bottom: 24px; }

  /* Intro */
  #intro { padding: 64px var(--margin-mobile); }

  /* Rooms */
  #rooms-preview { padding: 72px 0 80px; }
  .rooms-header { padding: 0 var(--margin-mobile); flex-direction: column; align-items: flex-start; gap: 20px; }
  .rooms-grid { grid-template-columns: 1fr; padding: 0 var(--margin-mobile); gap: 40px; }
  .room-card-img { aspect-ratio: 4/3; }

  /* Gallery */
  #gallery-strip { padding: 72px 0; }
  .gallery-header { padding: 0 var(--margin-mobile); }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 var(--margin-mobile);
    gap: 8px;
  }
  .gallery-large { grid-row: auto; grid-column: 1 / -1; height: 240px; }
  .gallery-item:not(.gallery-large) { height: 160px; }

  /* Dhaba Banner */
  #dhaba-feature { grid-template-columns: 1fr; }
  .dhaba-image { height: 280px; }
  .dhaba-overlay { background: linear-gradient(to bottom, transparent 30%, #0E0E0A 100%); }
  .dhaba-content { padding: 40px var(--margin-mobile) 56px; }
  .dhaba-actions { flex-direction: column; align-items: flex-start; }
  .dhaba-actions .btn { width: 100%; }

  /* Contact CTA */
  #contact-cta { padding: 72px var(--margin-mobile); }
  .cta-bg-text { display: none; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  /* Footer */
  #footer { padding: 56px var(--margin-mobile) 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  /* Divider */
  hr.divider-line { margin: 0 var(--margin-mobile) !important; }
}
