/* ============================================
   SHIVRUDRA HOTEL — style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --gold:     #D4A843;
  --gold2:    #F0C96A;
  --gold3:    #FFE0A0;
  --dark:     #0D0C0A;
  --dark2:    #181510;
  --dark3:    #221E16;
  --cream:    #FAF6EE;
  --cream2:   #F0EAD9;
  --text:     #2C2618;
  --muted:    #7A6E58;
  --white:    #FFFFFF;
  --serif:    'Cinzel', Georgia, serif;
  --sans:     'Outfit', sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; background: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── TOPBAR ────────────────────────────── */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 9px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: .4px;
  position: relative;
  z-index: 100;
}
.tb-left { display: flex; gap: 28px; }
.tb-left span { display: flex; align-items: center; gap: 7px; }
.tb-left i { color: var(--gold); font-size: 11px; }
.tb-right { display: flex; gap: 10px; }
.tb-right a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  transition: all .3s;
}
.tb-right a:hover { border-color: var(--gold); color: var(--gold); }


/* ── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 44px; left: 0; right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 52px;
  transition: all .4s var(--ease);
}
.navbar.stuck {
  top: 0;
  background: rgba(13,12,10,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 52px;
  box-shadow: 0 2px 30px rgba(0,0,0,.55);
  border-bottom: 1px solid rgba(212,168,67,.12);
}

/* ── LOGO ── */
.logo { cursor: pointer; display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--gold2) 55%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-sub {
  font-family: var(--sans);
  font-size: 7.5px;
  letter-spacing: 7px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}

/* ── DESKTOP NAV LINKS ── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.78);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: color .3s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* ── BOOK NOW BUTTON ── */
.btn-nav-book {
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: all .3s;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  white-space: nowrap;
  display: inline-block;
}
.btn-nav-book:hover {
  background: transparent;
  color: var(--gold);
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  z-index: 1002;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s, background .3s;
  transform-origin: center;
}
/* X state */
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* ══════════════════════════════════════════
   MOBILE DRAWER MENU
   ══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(340px, 85vw);
  height: 100dvh;
  background: var(--dark2);
  border-left: 1px solid rgba(212,168,67,.15);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(0.77,0,0.175,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.5);
  overflow-y: auto;
}
.mobile-menu.is-open {
  transform: translateX(0);
}

/* Drawer overlay backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.menu-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Drawer header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-menu-logo {
  display: flex;
  flex-direction: column;
}
.mobile-menu-logo .m-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, var(--gold2) 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.mobile-menu-logo .m-logo-sub {
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 500;
}
.mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all .3s;
  flex-shrink: 0;
}
.mobile-close:hover {
  background: rgba(212,168,67,.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* Drawer nav items */
.mobile-nav-list {
  list-style: none;
  padding: 12px 0;
  flex: 1;
}
.mobile-nav-list li {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .4s, transform .4s;
}
/* Stagger each item when menu opens */
.mobile-menu.is-open .mobile-nav-list li:nth-child(1) { opacity:1; transform:none; transition-delay:.1s; }
.mobile-menu.is-open .mobile-nav-list li:nth-child(2) { opacity:1; transform:none; transition-delay:.17s; }
.mobile-menu.is-open .mobile-nav-list li:nth-child(3) { opacity:1; transform:none; transition-delay:.24s; }
.mobile-menu.is-open .mobile-nav-list li:nth-child(4) { opacity:1; transform:none; transition-delay:.31s; }
.mobile-menu.is-open .mobile-nav-list li:nth-child(5) { opacity:1; transform:none; transition-delay:.38s; }

.mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: all .3s;
  gap: 12px;
}
.mobile-nav-list a i.arrow {
  font-size: 10px;
  color: rgba(255,255,255,.25);
  transition: transform .3s, color .3s;
}
.mobile-nav-list a:hover {
  color: var(--gold);
  background: rgba(212,168,67,.06);
  padding-left: 36px;
}
.mobile-nav-list a:hover i.arrow {
  transform: translateX(4px);
  color: var(--gold);
}

/* Drawer footer */
.mobile-menu-footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(255,255,255,.07);
  flex-shrink: 0;
}
.mobile-menu-footer .btn-mobile-book {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, var(--gold) 0%, #c8922a 60%, var(--gold2) 100%);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px;
  border-radius: 4px;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(212,168,67,.35);
  margin-bottom: 20px;
}
.mobile-menu-footer .btn-mobile-book:hover {
  box-shadow: 0 8px 30px rgba(212,168,67,.55);
  transform: translateY(-2px);
}
.mobile-menu-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.mobile-menu-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  transition: all .3s;
}
.mobile-menu-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,168,67,.1);
}

/* ── TABLET (900–1100px) ── */
@media (max-width: 1100px) {
  .navbar { padding: 16px 32px; }
  .navbar.stuck { padding: 12px 32px; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 11.5px; }
}

/* ── MOBILE (≤900px) — hide desktop links, show hamburger ── */
@media (max-width: 900px) {
  .topbar { display: none; }
  .navbar { top: 0; padding: 14px 20px; }
  .navbar.stuck { padding: 12px 20px; }
  .nav-links { display: none !important; }        /* always hide desktop links */
  .btn-nav-book { display: none; }                /* hide desktop book btn */
  .hamburger { display: flex; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .navbar { padding: 12px 16px; }
  .logo-name { font-size: 18px; letter-spacing: 2px; }
}


/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hotel.png') center/cover no-repeat;
  transform: scale(1.06);
  animation: hzoom 14s ease-out forwards;
  will-change: transform;
}
@keyframes hzoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero-dim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.65) 50%,
    rgba(13,12,10,.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 18px;
  opacity: 0;
  animation: up .8s .4s ease both;
  font-weight: 500;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  animation: up .9s .65s ease both;
  background: linear-gradient(135deg, #fff 30%, var(--gold2) 60%, var(--gold3) 80%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: none;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 50%, var(--gold3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  letter-spacing: 1.5px;
  margin-bottom: 40px;
  opacity: 0;
  animation: up .9s .9s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: up .9s 1.1s ease both;
}

.btn-primary {
  position: relative;
  background: linear-gradient(135deg, var(--gold) 0%, #c8922a 50%, var(--gold2) 100%);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 42px;
  transition: all .4s cubic-bezier(0.34,1.56,0.64,1);
  border: none;
  border-radius: 2px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 28px rgba(212,168,67,.45), 0 2px 8px rgba(0,0,0,.3);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s;
}
.btn-primary::after {
  content: '→';
  font-size: 16px;
  transition: transform .4s cubic-bezier(0.34,1.56,0.64,1), opacity .3s;
  opacity: 0;
  transform: translateX(-8px);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 40px rgba(212,168,67,.6), 0 4px 12px rgba(0,0,0,.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after  { opacity: 1; transform: translateX(0); }
/* Pulse ring animation */
.btn-primary:not(:hover) {
  animation: btnPulse 3s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 6px 28px rgba(212,168,67,.45), 0 0 0 0 rgba(212,168,67,.3); }
  50%      { box-shadow: 0 6px 28px rgba(212,168,67,.45), 0 0 0 10px rgba(212,168,67,0); }
}

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,.5);
  color: rgba(255,255,255,.9);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 42px;
  transition: all .4s cubic-bezier(0.34,1.56,0.64,1);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.07);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(0,0,0,.3), 0 0 20px rgba(212,168,67,.15);
}
.btn-ghost:hover::before { transform: scaleX(1); }

.hero-badge {
  position: absolute;
  bottom: 80px; right: 48px;
  background: rgba(212,168,67,.18);
  border: 1px solid rgba(212,168,67,.5);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: fadeIn 1s 1.5s both;
}
.hero-badge i { color: var(--gold); font-size: 22px; }
.hero-badge span { font-size: 12px; line-height: 1.5; font-weight: 300; }

.hero-down {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 18px;
  z-index: 3;
  animation: bob 2s ease-in-out infinite, fadeIn 1s 2s both;
}
@keyframes bob {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── BOOKING BAR ────────────────────────── */
.booking-bar {
  background: var(--dark2);
  border-top: 2px solid var(--gold);
}
.bk-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.bk-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 24px 28px;
  flex: 1;
  min-width: 130px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.bk-field label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  display: flex; align-items: center; gap: 6px;
}
.bk-field label i { color: var(--gold); }
.bk-field input[type="date"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  padding: 5px 0;
  outline: none;
  transition: border-color .3s;
  cursor: pointer;
  min-width: 140px;
}
.bk-field input[type="date"]:focus { border-bottom-color: var(--gold); }
.bk-field input::-webkit-calendar-picker-indicator { filter: invert(1); opacity: .4; cursor: pointer; }

.bk-sep { color: var(--gold); font-size: 16px; padding: 0 4px; }

.bk-counter { display: flex; align-items: center; gap: 14px; }
.bk-counter button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 18px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s;
}
.bk-counter button:hover { background: var(--gold); color: var(--dark); }
.bk-counter span { color: #fff; font-size: 17px; font-family: var(--serif); min-width: 20px; text-align: center; }

.btn-book-check {
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  white-space: nowrap;
  margin-left: auto;
}
.btn-book-check:hover { background: #b88b2e; color: #fff; }

/* ── EYEBROW / COMMON ───────────────────── */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  text-align: center;
}
.eyebrow.light { color: var(--gold2); }

.sec-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  color: var(--text);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sec-title.light {
  background: linear-gradient(135deg, #fff 0%, var(--gold2) 50%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ABOUT ──────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.about-photo { position: relative; overflow: hidden; }

/* Zoom on hover */
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.about-photo:hover img { transform: scale(1.08); }

/* Gold shimmer overlay that slides in */
.about-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212,168,67,0) 0%,
    rgba(212,168,67,.12) 45%,
    rgba(240,201,106,.22) 55%,
    rgba(212,168,67,0) 100%
  );
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
  pointer-events: none;
}
.about-photo:hover::before { opacity: 1; }

/* Shine sweep effect */
.about-photo::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.22) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-18deg);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.about-photo:hover::after {
  opacity: 1;
  animation: photoShine .65s ease forwards;
}
@keyframes photoShine {
  from { left: -80%; opacity: 1; }
  to   { left: 130%; opacity: 1; }
}

.about-card {
  position: absolute;
  bottom: 36px; right: 0;
  background: var(--gold);
  color: var(--dark);
  padding: 18px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}
.about-card i { font-size: 22px; }

.about-body {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream2);
}
.about-body .eyebrow { text-align: left; }
.about-body h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.about-body h2 em {
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold) 0%, #c8922a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-body p {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 14px;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.hl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1.5px solid rgba(212,168,67,.22);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text);
  border-radius: 50px;
  transition: all .35s cubic-bezier(0.34,1.56,0.64,1);
  cursor: default;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.hl-item:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(212,168,67,.3);
}
.hl-item i { color: var(--gold); font-size: 14px; transition: color .35s; }
.hl-item:hover i { color: var(--dark); }

/* ── FACILITIES ─────────────────────────── */
.facilities {
  background: var(--dark);
  padding: 90px 48px;
  text-align: center;
}

.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.fac-card {
  background: var(--dark2);
  padding: 40px 28px;
  text-align: center;
  transition: all .45s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.05);
  cursor: default;
  isolation: isolate; /* creates proper stacking context */
}

/* Gold border glow — sits BEHIND card content */
.fac-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--gold), transparent, var(--gold2), transparent);
  opacity: 0;
  transition: opacity .5s;
  z-index: -2;
  pointer-events: none;
}
/* Inner background fill */
.fac-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  background: var(--dark2);
  z-index: -1;
  transition: background .4s;
  pointer-events: none;
}

.fac-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 30px rgba(212,168,67,.12);
}
.fac-card:hover::before { opacity: 1; }
.fac-card:hover::after  { background: var(--dark3); }

.fac-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,.3);
  background: rgba(212,168,67,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: all .45s cubic-bezier(0.34,1.56,0.64,1);
}
.fac-card:hover .fac-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.18) rotate(-6deg);
  box-shadow: 0 8px 24px rgba(212,168,67,.4);
}
.fac-icon i { color: var(--gold); font-size: 20px; transition: color .4s, transform .4s; }
.fac-card:hover .fac-icon i { color: var(--dark); transform: scale(1.1); }

.fac-card h3 {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  transition: color .3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.fac-card:hover h3 { color: var(--gold2); }
.fac-card p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  transition: color .3s;
}
.fac-card:hover p { color: rgba(255,255,255,.65); }

/* ── GALLERY ────────────────────────────── */
.gallery-sec {
  padding: 90px 48px;
  background: var(--cream);
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
  max-width: 1300px;
  margin: 0 auto 28px;
}

.gal-big {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .5s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow .5s ease;
}

.gal-sm {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: transform .5s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow .5s ease;
}

/* Lift + gold ring on hover */
.gal-big:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 60px rgba(0,0,0,.32),
              0 0 0 3px rgba(212,168,67,.5);
}
.gal-sm:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,.26),
              0 0 0 2.5px rgba(212,168,67,.45);
}

/* Dark-to-transparent gradient always visible at bottom for label readability */
.gal-big::before, .gal-sm::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  z-index: 1;
  border-radius: 0 0 inherit inherit;
  pointer-events: none;
}

/* Gold shimmer overlay on hover */
.gal-big::after, .gal-sm::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(212,168,67,0) 0%,
    rgba(212,168,67,.1) 45%,
    rgba(240,201,106,.2) 55%,
    rgba(212,168,67,0) 100%
  );
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 2;
  border-radius: inherit;
  pointer-events: none;
}
.gal-big:hover::after, .gal-sm:hover::after { opacity: 1; }

/* Label — always shown (not hidden) */
.gal-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  padding: 20px 20px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
}
.gal-big:hover .gal-label,
.gal-sm:hover .gal-label {
  opacity: 1;
  transform: translateY(0);
}

.gal-label span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}

/* Gold dot before label text */
.gal-label::before {
  content: '✦';
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Shine sweep */
.gal-big .shine, .gal-sm .shine {
  position: absolute;
  top: -50%; left: -70%;
  width: 40%; height: 200%;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.2) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}
.gal-big:hover .shine, .gal-sm:hover .shine {
  animation: shineSwipe .65s ease forwards;
}
@keyframes shineSwipe {
  from { left: -70%; opacity: 1; }
  to   { left: 120%; opacity: 0; }
}

.gallery-note {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 8px;
}
.gallery-note strong { color: var(--text); }

/* ── CONTACT ────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark3);
  min-height: 560px;
}

.contact-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left .eyebrow { text-align: left; }
.contact-left h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 36px;
}
.contact-left h2.light { color: #fff; }

.cinfo-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.cinfo { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,67,.35);
  background: rgba(212,168,67,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
}
.cinfo h4 {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}
.cinfo p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  font-weight: 300;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  transition: all .3s;
  border-radius: 2px;
  align-self: flex-start;
}
.btn-whatsapp:hover { background: #1da851; }

.contact-form {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  background: rgba(255,255,255,.03);
}
.contact-form h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
  font-family: var(--sans);
  font-size: 13.5px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .3s;
  font-weight: 300;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.3); }
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form button[type="submit"] {
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px;
  transition: all .3s;
}
.contact-form button[type="submit"]:hover { background: #b88b2e; color: #fff; }

.msg-ok {
  display: none;
  background: rgba(212,168,67,.15);
  border: 1px solid rgba(212,168,67,.4);
  color: var(--gold2);
  padding: 11px 16px;
  font-size: 13px;
  text-align: center;
}

/* ── FOOTER ─────────────────────────────── */
.footer { background: var(--dark); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 60px 64px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  flex-wrap: wrap;
}

.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.f-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  background: linear-gradient(135deg, #fff 0%, var(--gold2) 60%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.f-tag {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 300; line-height: 1.7; max-width: 260px; margin-bottom: 18px; }
.f-socials { display: flex; gap: 10px; }
.f-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  transition: all .3s;
}
.f-socials a:hover { border-color: var(--gold); color: var(--gold); }

.footer-links h4,
.footer-contact h4 {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links ul a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  transition: color .3s;
}
.footer-links ul a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 300;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact i { color: var(--gold); margin-top: 2px; }

.footer-bottom {
  text-align: center;
  padding: 20px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }

/* ── BACK TO TOP ────────────────────────── */
.btt {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(212,168,67,.35);
  opacity: 0;
  transform: translateY(16px);
  transition: all .4s;
  z-index: 9999;
  pointer-events: none;
}
.btt.show { opacity: 1; transform: translateY(0); pointer-events: all; }
.btt:hover { background: var(--dark); color: var(--gold); }

/* ── MODAL ──────────────────────────────── */
.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--dark2);
  border: 1px solid rgba(212,168,67,.2);
  padding: 48px 44px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  transform: scale(.9);
  transition: transform .3s;
}
.modal-bg.open .modal-box { transform: scale(1); }
.modal-box h3 { font-family: var(--serif); font-size: 28px; color: #fff; margin-bottom: 14px; font-weight: 400; }
.modal-box p { font-size: 14px; color: rgba(255,255,255,.55); margin-bottom: 28px; line-height: 1.75; font-weight: 300; }
.modal-box button {
  background: var(--gold); color: var(--dark);
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 32px; transition: all .3s;
}
.modal-box button:hover { background: #b88b2e; color: #fff; }

/* ── FADE-IN SCROLL REVEAL ──────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }
.fade-in:nth-child(2) { transition-delay: .08s; }
.fade-in:nth-child(3) { transition-delay: .16s; }
.fade-in:nth-child(4) { transition-delay: .24s; }
.fade-in:nth-child(5) { transition-delay: .08s; }
.fade-in:nth-child(6) { transition-delay: .16s; }
.fade-in:nth-child(7) { transition-delay: .24s; }
.fade-in:nth-child(8) { transition-delay: .32s; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .fac-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gal-big { grid-column: 1 / 3; grid-row: auto; height: 280px; border-radius: 16px; }
  .gal-sm  { height: 200px; border-radius: 14px; }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .navbar { top: 0; padding: 14px 24px; }
  .navbar.stuck { padding: 12px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about { grid-template-columns: 1fr; }
  .about-body { padding: 50px 30px; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 60px 30px; }
  .contact-form { padding: 50px 30px; }
  .footer-inner { flex-direction: column; padding: 40px 30px; }
  .bk-inner { flex-direction: column; align-items: stretch; }
  .bk-field { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .btn-book-check { margin: 0; padding: 20px; justify-content: center; }
  .bk-sep { display: none; }
}

@media (max-width: 600px) {
  .fac-grid { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gal-big { height: 240px; }
  .gal-sm { height: 180px; }
  .hero-badge { display: none; }
  .facilities { padding: 60px 20px; }
  .gallery-sec { padding: 60px 20px; }
}

/* (mobile nav handled by .mobile-menu drawer above) */