/* ============================================
   GALAZONERA LUXURY APARTMENTS
   Shared Stylesheet
   ============================================ */

:root {
  --navy: #1B3A6B;
  --navy-deep: #0f2347;
  --navy-mid: #234a82;
  --gold: #C9A254;
  --gold-light: #e4c278;
  --gold-dark: #a8842f;
  --cream: #F7F1E6;
  --cream-dark: #EDE5D4;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #6a6a85;
  --shadow-sm: 0 4px 16px rgba(27,58,107,0.08);
  --shadow-md: 0 8px 32px rgba(27,58,107,0.12);
  --shadow-lg: 0 20px 60px rgba(15,35,71,0.25);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Trebuchet MS', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--cream);
  color: var(--text-dark);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- Typography helpers ---------- */
.section-label {
  font-family: var(--sans);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}
.gold-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 200px;
  margin: 18px auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 50px;
  background: linear-gradient(to bottom, rgba(11,25,55,0.85) 0%, rgba(11,25,55,0) 100%);
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: var(--navy-deep);
  padding: 12px 50px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-logo img { height: 72px; transition: height 0.4s; }
nav.scrolled .nav-logo img { height: 58px; }
.nav-links { list-style: none; display: flex; gap: 30px; align-items: center; }
.nav-links li a {
  color: rgba(255,255,255,0.92);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a.active { color: var(--gold-light); }
.nav-book {
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 11px 24px;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s;
}
.nav-book:hover { background: var(--gold-light); transform: translateY(-1px); }

/* Language switcher */
.lang-switch { display: flex; gap: 6px; align-items: center; margin-left: 8px; }
.lang-switch button {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 5px 9px;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-switch button:hover { border-color: var(--gold); color: var(--gold-light); }
.lang-switch button.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); transition: 0.3s; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
  transform: scale(1.05);
  animation: kenburns 20s ease-in-out infinite alternate;
}
.hero-slide.active { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1.0); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,25,55,0.55) 0%, rgba(11,25,55,0.3) 45%, rgba(11,25,55,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 900px;
  animation: fadeUp 1.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo { height: 175px; margin: 0 auto 18px; filter: drop-shadow(0 4px 24px rgba(0,0,0,0.45)); }
.hero-tagline {
  font-family: var(--sans);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--white);
  font-weight: 500;
  line-height: 1.08;
  margin-bottom: 16px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: clamp(17px, 2.4vw, 22px);
  font-style: italic;
  margin-bottom: 38px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 16px 42px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,84,0.4); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  padding: 14px 34px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.25s;
}
.btn-outline:hover { background: var(--white); color: var(--navy-deep); border-color: var(--white); }
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-arrow { width: 1px; height: 45px; background: rgba(255,255,255,0.4); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--cream-dark);
  padding: 38px 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 3px solid var(--gold);
  flex-wrap: wrap;
  gap: 20px;
}
.stat { text-align: center; }
.stat-num { font-size: 38px; color: var(--navy); font-weight: 500; display: block; margin-bottom: 4px; line-height: 1; }
.stat-label { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-mid); font-weight: 600; }
.stat-divider { width: 1px; height: 50px; background: var(--gold); opacity: 0.4; }

/* ============================================
   GENERIC SECTION
   ============================================ */
.section { padding: 100px 50px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(34px, 5vw, 48px); color: var(--navy); font-weight: 500; margin-bottom: 6px; }
.section-header p { color: var(--text-mid); font-size: 18px; font-style: italic; max-width: 600px; margin: 0 auto; }

/* ---------- Welcome split ---------- */
.welcome { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.welcome-img { background-size: cover; background-position: center; min-height: 420px; }
.welcome-text { background: var(--navy); padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; }
.welcome-text h2 { font-size: clamp(32px, 4vw, 44px); color: var(--white); font-weight: 500; line-height: 1.18; margin-bottom: 24px; }
.welcome-text p { color: rgba(255,255,255,0.8); font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.85; margin-bottom: 30px; }
.welcome-btn {
  display: inline-block; border: 1.5px solid var(--gold); color: var(--gold);
  padding: 13px 32px; font-family: var(--sans); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 600; border-radius: 2px; align-self: flex-start;
  transition: all 0.25s;
}
.welcome-btn:hover { background: var(--gold); color: var(--navy-deep); }

/* ============================================
   ROOMS GRID
   ============================================ */
.rooms-section { background: var(--cream); }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1300px; margin: 0 auto; }
.room-card {
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.room-img { height: 230px; position: relative; overflow: hidden; }
.room-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.room-card:hover .room-img img { transform: scale(1.08); }
.room-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,25,55,0.55) 0%, transparent 55%); }
.room-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: var(--navy-deep);
  font-family: var(--sans); font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 700; padding: 6px 13px; border-radius: 2px;
}
.room-body { padding: 26px 30px 30px; display: flex; flex-direction: column; flex: 1; }
.room-name { font-size: 26px; color: var(--navy); margin-bottom: 10px; font-weight: 500; }
.room-desc { font-family: var(--sans); font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; font-weight: 300; flex: 1; }
.room-features { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.room-feat {
  background: var(--cream); border-radius: 2px; padding: 6px 13px;
  font-family: var(--sans); font-size: 11px; color: var(--navy);
  letter-spacing: 0.8px; text-transform: uppercase; font-weight: 600;
}
.room-link {
  display: block; text-align: center; background: var(--navy); color: var(--white);
  padding: 13px; font-family: var(--sans); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 600; border-radius: 2px;
  transition: background 0.25s;
}
.room-link:hover { background: var(--navy-deep); }

/* ============================================
   AMENITIES
   ============================================ */
.amenities { background: var(--navy-deep); }
.amenities .section-header h2 { color: var(--white); }
.amenities .section-header p { color: rgba(255,255,255,0.65); }
.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.amenity {
  text-align: center; padding: 36px 22px;
  border: 1px solid rgba(201,162,84,0.2); border-radius: 4px;
  background: rgba(255,255,255,0.04); transition: all 0.3s;
}
.amenity:hover { background: rgba(201,162,84,0.08); border-color: rgba(201,162,84,0.4); transform: translateY(-4px); }
.amenity-icon { font-size: 34px; margin-bottom: 14px; display: block; }
.amenity-name { color: var(--white); font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.amenity-desc { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; font-weight: 300; }

/* ============================================
   BOOKING FORM
   ============================================ */
.booking { background: var(--cream-dark); }
.booking-inner { max-width: 950px; margin: 0 auto; text-align: center; }
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr auto; gap: 14px; align-items: end;
  margin-top: 40px; background: var(--white); padding: 32px; border-radius: 6px; box-shadow: var(--shadow-sm);
}
.form-group { display: flex; flex-direction: column; text-align: left; }
.form-group label {
  font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--navy); font-weight: 700; margin-bottom: 8px;
}
.form-group input, .form-group select {
  border: 1.5px solid rgba(27,58,107,0.22); background: var(--cream);
  padding: 13px 15px; font-size: 15px; color: var(--text-dark);
  border-radius: 3px; font-family: var(--sans); outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-submit {
  background: var(--gold); border: none; color: var(--navy-deep);
  padding: 15px 30px; cursor: pointer; border-radius: 3px;
  font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; white-space: nowrap; transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.booking-note { font-family: var(--sans); font-size: 13px; color: var(--text-mid); margin-top: 18px; }

/* ---------- Room-page booking (vertical) ---------- */
.room-booking { background: var(--navy); border-radius: 6px; padding: 40px; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.room-booking h3 { color: var(--white); font-size: 28px; font-weight: 500; margin-bottom: 6px; }
.room-booking .price { color: var(--gold-light); font-family: var(--sans); font-size: 14px; letter-spacing: 1px; margin-bottom: 24px; }
.room-booking .price strong { font-size: 28px; color: var(--white); font-family: var(--serif); }
.room-booking .form-group { margin-bottom: 16px; }
.room-booking .form-group label { color: var(--gold-light); }
.room-booking .form-group input, .room-booking .form-group select {
  background: rgba(255,255,255,0.95); border-color: transparent; width: 100%;
}
.room-booking .form-submit { width: 100%; margin-top: 8px; padding: 16px; }
.room-booking .secure-note { font-family: var(--sans); font-size: 11px; color: rgba(255,255,255,0.5); text-align: center; margin-top: 14px; letter-spacing: 0.5px; }

/* ============================================
   GALLERY (room pages)
   ============================================ */
.gallery-section { background: var(--cream); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 1300px; margin: 0 auto; }
.gallery-item { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; aspect-ratio: 4/3; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .zoom-icon {
  position: absolute; inset: 0; background: rgba(27,58,107,0.0);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 30px; opacity: 0; transition: all 0.3s;
}
.gallery-item:hover .zoom-icon { background: rgba(27,58,107,0.4); opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(11,25,55,0.96);
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88%; max-height: 84%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.lightbox-close { position: absolute; top: 24px; right: 34px; color: var(--white); font-size: 40px; cursor: pointer; line-height: 1; font-family: var(--sans); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--white); font-size: 50px; cursor: pointer; padding: 20px; user-select: none; transition: color 0.2s; }
.lightbox-nav:hover { color: var(--gold); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-family: var(--sans); font-size: 14px; letter-spacing: 2px; }

/* ============================================
   ROOM PAGE HERO + LAYOUT
   ============================================ */
.room-hero { position: relative; height: 70vh; min-height: 480px; overflow: hidden; background: var(--navy-deep); }
.room-hero-img { position: absolute; inset: 0; background-size: cover; background-position: center; }
.room-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,25,55,0.5) 0%, rgba(11,25,55,0.3) 50%, rgba(11,25,55,0.7) 100%); }
.room-hero-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 0 20px; }
.room-hero-content .breadcrumb { font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.room-hero-content .breadcrumb a { color: rgba(255,255,255,0.7); }
.room-hero-content .breadcrumb a:hover { color: var(--gold-light); }
.room-hero-content h1 { font-size: clamp(40px, 6vw, 64px); color: var(--white); font-weight: 500; text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.room-hero-content .subtitle { color: rgba(255,255,255,0.85); font-style: italic; font-size: 20px; margin-top: 10px; }

.room-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 50px; max-width: 1300px; margin: 0 auto; padding: 90px 50px; }
.room-detail h2 { font-size: 36px; color: var(--navy); font-weight: 500; margin-bottom: 18px; }
.room-detail p { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.9; color: var(--text-mid); margin-bottom: 20px; }
.room-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 30px 0; }
.room-spec { display: flex; align-items: center; gap: 14px; padding: 18px 20px; background: var(--white); border-radius: 4px; box-shadow: var(--shadow-sm); }
.room-spec .icon { font-size: 26px; }
.room-spec .spec-label { font-family: var(--sans); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); font-weight: 600; }
.room-spec .spec-val { font-size: 18px; color: var(--navy); font-weight: 500; }

.amenity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 24px; margin-top: 16px; }
.amenity-list li { font-family: var(--sans); font-size: 15px; color: var(--text-mid); list-style: none; display: flex; align-items: center; gap: 12px; }
.amenity-list li .am-ico { font-size: 22px; width: 30px; text-align: center; flex-shrink: 0; }

/* ============================================
   CONTACT
   ============================================ */
.contact { display: grid; grid-template-columns: 1fr 1fr; background: var(--navy); }
.contact-info { padding: 80px 60px; }
.contact-info h2 { font-size: 40px; color: var(--white); font-weight: 500; margin-bottom: 30px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gold); margin-top: 8px; flex-shrink: 0; }
.contact-detail-label { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.contact-detail-val { color: rgba(255,255,255,0.85); font-size: 16px; font-family: var(--sans); line-height: 1.5; }
.contact-detail-val a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.contact-detail-val a:hover { color: var(--gold-light); }
.contact-map { height: 440px; min-height: 440px; position: relative; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }
#gala-map { width: 100%; height: 100%; min-height: 440px; }

/* ============================================
   FOOTER
   ============================================ */
footer { background: var(--navy-deep); padding: 50px; }
.footer-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand img { height: 54px; opacity: 0.95; margin-bottom: 16px; }
.footer-brand p { font-family: var(--sans); font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; font-weight: 300; }
.footer-col h4 { color: var(--gold-light); font-family: var(--sans); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-family: var(--sans); font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 300; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1300px; margin: 40px auto 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-family: var(--sans); font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }
.footer-socials { display: flex; gap: 14px; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 15px; transition: all 0.2s; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }

/* ============================================
   GALLERY STRIP (homepage)
   ============================================ */

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   LANGUAGE VISIBILITY
   ============================================ */
[data-lang]:not(.lang-active) { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-form { grid-template-columns: 1fr 1fr; }
  .room-layout { grid-template-columns: 1fr; }
  .room-booking { position: static; }
  }
@media (max-width: 768px) {
  body { font-size: 17px; }
  nav { padding: 14px 22px; }
  nav.scrolled { padding: 10px 22px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 75%;
    background: var(--navy-deep); flex-direction: column; justify-content: center;
    gap: 28px; transition: right 0.4s; box-shadow: -10px 0 40px rgba(0,0,0,0.3); padding: 40px;
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; z-index: 1100; }
  .section { padding: 70px 24px; }
  .welcome { grid-template-columns: 1fr; }
  .welcome-text { padding: 50px 30px; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .booking-form { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-info { padding: 50px 30px; }
  .room-layout { padding: 60px 24px; }
  .room-spec-grid { grid-template-columns: 1fr; }
  .amenity-list { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
      .stats-bar { gap: 28px; }
  .stat-divider { display: none; }
}

/* ============================================
   THANK-YOU MODAL
   ============================================ */
#thankyou-modal { position: fixed; inset: 0; z-index: 4000; display: none; align-items: center; justify-content: center; }
#thankyou-modal.open { display: flex; }
#thankyou-modal .ty-backdrop { position: absolute; inset: 0; background: rgba(11,25,55,0.7); backdrop-filter: blur(3px); }
#thankyou-modal .ty-box {
  position: relative; background: var(--white); border-radius: 10px;
  max-width: 460px; width: 90%; padding: 48px 40px 40px; text-align: center;
  box-shadow: var(--shadow-lg); animation: tyPop 0.4s cubic-bezier(0.2,0.9,0.3,1.2) both;
  border-top: 5px solid var(--gold);
}
@keyframes tyPop { from { opacity: 0; transform: translateY(30px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
#thankyou-modal .ty-check {
  width: 70px; height: 70px; border-radius: 50%; background: var(--gold);
  color: var(--white); font-size: 38px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; font-family: var(--sans); animation: tyCheck 0.5s ease 0.2s both;
}
@keyframes tyCheck { from { transform: scale(0); } to { transform: scale(1); } }
#thankyou-modal .ty-title { font-family: var(--serif); font-size: 30px; color: var(--navy); font-weight: 500; margin-bottom: 14px; }
#thankyou-modal .ty-text { font-family: var(--sans); font-size: 15px; color: var(--text-mid); line-height: 1.7; font-weight: 300; margin-bottom: 28px; }
#thankyou-modal .ty-close-btn {
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  padding: 13px 44px; border-radius: 4px; font-family: var(--sans); font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; font-weight: 600; transition: background 0.2s;
}
#thankyou-modal .ty-close-btn:hover { background: var(--gold); color: var(--navy-deep); }


/* ---- Booking availability box & form rows ---- */
.bk-availability{padding:13px 16px;border-radius:8px;font-size:14.5px;line-height:1.55;grid-column:1/-1}
.bk-availability.checking{background:#f2f4f7;border:1px solid #d6dbe2;color:#4a4a6a}
.bk-availability.ok{background:#eaf5ec;border:1px solid #2e7d32;color:#1b5e20}
.bk-availability.busy{background:#fdf1e7;border:1px solid #e67e22;color:#8a4a0b}
.form-row-2{display:grid;grid-template-columns:1fr 1fr;gap:14px;grid-column:1/-1}
@media(max-width:600px){.form-row-2{grid-template-columns:1fr}}


/* Thank-you modal pay button */
.ty-pay-btn{background:#1B3A6B;color:#fff;padding:13px 30px;border-radius:8px;font-weight:600;text-decoration:none;margin:6px 0 4px;font-family:var(--sans)}
.ty-pay-btn:hover{background:#0f2347}
#thankyou-modal .ty-box .ty-close-btn{margin-top:8px}


/* ---- Mini Market section ---- */
.market-section{background:var(--cream,#F7F1E6)}
.market-grid{display:grid;grid-template-columns:1fr 1fr;gap:0;align-items:stretch;max-width:1280px;margin:0 auto;border-radius:16px;overflow:hidden;box-shadow:0 18px 50px rgba(15,35,71,.10)}
.market-text{background:#fff;padding:48px 46px;display:flex;flex-direction:column;justify-content:center}
.market-text h2{font-family:var(--serif,'Cormorant Garamond',serif);color:var(--navy,#1B3A6B);font-weight:500;font-size:clamp(28px,3.4vw,42px);line-height:1.1;margin:8px 0 18px}
.market-text p{color:var(--text-mid,#4a4a6a);line-height:1.75;margin:0 0 18px}
.market-feats{list-style:none;padding:0;margin:0 0 18px;display:grid;grid-template-columns:1fr 1fr;gap:10px 18px}
.market-feats li{font-family:var(--sans,'Jost',sans-serif);font-weight:500;color:var(--navy,#1B3A6B);font-size:15px}
.market-hours{display:inline-flex;align-items:center;gap:10px;color:var(--gold-dark,#a8842f);font-weight:600;font-family:var(--sans,'Jost',sans-serif);letter-spacing:.5px;margin:0!important}
.market-img{background-size:cover;background-position:center;min-height:420px}
@media(max-width:860px){
  .market-grid{grid-template-columns:1fr}
  .market-img{min-height:300px;order:-1}
  .market-text{padding:36px 26px}
  .market-feats{grid-template-columns:1fr}
}


/* ---- Auto-scrolling gallery carousel ---- */
.gallery-carousel{overflow:hidden;width:100%;background:var(--navy,#1B3A6B);padding:0;position:relative}
.gallery-track{display:flex;will-change:transform}
.gallery-track .gs-item{flex:0 0 auto;width:340px;height:240px;background-size:cover;background-position:center;position:relative;border-right:2px solid rgba(255,255,255,.06)}
.gallery-track .gs-ov{position:absolute;inset:0;display:flex;align-items:flex-end;justify-content:flex-start;background:linear-gradient(to top,rgba(27,58,107,.55),rgba(27,58,107,0) 55%);transition:background .3s}
.gallery-track .gs-item:hover .gs-ov{background:linear-gradient(to top,rgba(27,58,107,.75),rgba(27,58,107,.1) 70%)}
.gallery-track .gs-ov span{color:#fff;font-family:var(--sans,'Jost',sans-serif);font-size:13px;letter-spacing:2px;text-transform:uppercase;font-weight:600;padding:16px 18px}
@media(max-width:600px){.gallery-track .gs-item{width:240px;height:180px}}
