/* ============================================================
   SUNRAY GUEST HOUSE - MAIN STYLESHEET
   Premium, Modern, Minimal Design
   ============================================================ */

:root {
  --white: #ffffff;
  --cream: #faf8f4;
  --sand: #f2ede4;
  --beige: #e8ddd0;
  --warm-gray: #9a9080;
  --graphite: #2d2d2d;
  --dark: #1a1a1a;
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --sea-blue: #5b8fa8;
  --sea-light: #a8c5d6;
  --text: #3a3530;
  --text-light: #7a7068;
  --border: #e0d8cc;
  --shadow: rgba(0,0,0,0.08);
  --shadow-md: rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  --transition-fast: 0.2s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1320px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  max-width: 100vw;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { line-height: 1.8; color: var(--text); }
.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* LAYOUT */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
section { position: relative; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
  background: rgba(26,26,26,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  transition: height var(--transition);
  flex-shrink: 0;
}
.nav.scrolled .nav-logo-img { height: 44px; width: 44px; }
.nav-logo-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
  display: block;
  white-space: nowrap;
  line-height: 1.2;
}
.nav.scrolled .nav-logo-title { color: var(--dark); }
.nav-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  display: block;
}
.nav.scrolled .nav-logo-sub { color: var(--warm-gray); }

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-link { color: var(--text); }
.nav-link:hover { color: var(--gold); }

/* RIGHT SIDE: lang + book + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* BOOK button */
.btn-nav-book {
  padding: 0.55rem 1.3rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}
.btn-nav-book:hover { background: var(--dark); }

/* Language switcher */
.lang-switcher { position: relative; display: inline-flex; align-items: center; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.nav.scrolled .lang-btn { background: var(--sand); color: var(--text); border-color: var(--border); }
.lang-btn:hover { background: rgba(255,255,255,0.22); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 135px;
  overflow: hidden;
  display: none;
  z-index: 2000;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.lang-option:hover { background: var(--cream); }
.lang-option.active { background: var(--sand); font-weight: 600; color: var(--gold); }

/* HAMBURGER */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.nav-hamburger span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: all var(--transition-fast);
  display: block;
}
.nav.scrolled .nav-hamburger span { background: var(--dark); }

/* MOBILE MENU */
.nav-mobile { display: none; }
.nav-mobile.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
.nav-mobile .nav-link { color: white; font-size: 1.1rem; }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 1.5rem;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 480px) {
  .nav-logo-title { font-size: 0.9rem; }
  .nav-logo-sub { display: none; }
  .btn-nav-book { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #2d4a5a;
}
.hero picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.1s linear;
  will-change: transform;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,26,26,0.55) 0%,
    rgba(26,26,26,0.3) 50%,
    rgba(26,26,26,0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  padding: 2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.3rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 7rem 0; background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition);
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 40px rgba(201,168,76,0.4);
}
.about-image-badge strong { display: block; font-size: 2rem; font-family: var(--font-heading); }
.about-image-badge span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.2rem; color: var(--text-light); }
.about-amenities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.amenity-icon {
  width: 32px;
  height: 32px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

/* ============================================================
   ROOMS
   ============================================================ */
.rooms { padding: 7rem 0; background: var(--white); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-header p { color: var(--text-light); margin-top: 1rem; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px var(--shadow-md);
  border-color: transparent;
}
.room-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.room-card:hover .room-card-image img { transform: scale(1.07); }
.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.room-card-body { padding: 1.8rem; }
.room-card-body h3 { margin-bottom: 0.5rem; font-size: 1.3rem; }
.room-card-desc {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.tag {
  font-size: 0.68rem;
  padding: 0.25rem 0.65rem;
  background: var(--sand);
  color: var(--warm-gray);
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.room-price { font-family: var(--font-heading); }
.room-price strong { font-size: 1.6rem; color: var(--dark); }
.room-price span { font-size: 0.75rem; color: var(--text-light); }
.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.72rem;
}

/* ============================================================
   PARALLAX FEATURE SECTION
   ============================================================ */
.feature-parallax {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.feature-parallax-bg {
  position: absolute;
  inset: -10%;
  /* background set via inline style */
  background-size: cover;
  background-position: center;
  transition: transform 0.1s linear;
  will-change: transform;
}
.feature-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.8) 0%, rgba(26,26,26,0.4) 60%, transparent 100%);
}
.feature-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: var(--white);
}
.feature-parallax-content h2 { color: var(--white); margin-bottom: 1rem; }
.feature-parallax-content p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 7rem 0; background: var(--sand); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
  transform: rotate(45deg);
}
.pricing-card:hover:not(.featured) {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-md);
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-desc {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.pricing-currency { font-size: 1.3rem; color: var(--gold); font-family: var(--font-heading); }
.pricing-number { font-family: var(--font-heading); font-size: 3.5rem; color: var(--dark); line-height: 1; }
.pricing-card.featured .pricing-number { color: var(--white); }
.pricing-period { font-size: 0.8rem; color: var(--text-light); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text);
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-feature-icon { color: var(--gold); font-size: 0.9rem; }

/* Bitcoin payment notice */
.bitcoin-notice {
  background: linear-gradient(135deg, #f7931a22, #f7931a11);
  border: 1px solid #f7931a44;
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.bitcoin-icon { font-size: 2rem; }
.bitcoin-text strong { display: block; color: var(--dark); margin-bottom: 0.3rem; }
.bitcoin-text p { font-size: 0.83rem; color: var(--text-light); margin: 0; }

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section { padding: 7rem 0; background: var(--cream); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.booking-info h2 { margin-bottom: 1rem; }
.booking-info p { color: var(--text-light); margin-bottom: 2rem; }
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.booking-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.booking-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--sand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.booking-feature-text strong { display: block; font-size: 0.87rem; margin-bottom: 0.1rem; }
.booking-feature-text span { font-size: 0.78rem; color: var(--text-light); }

/* BOOKING FORM */
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px var(--shadow);
  position: sticky;
  top: 100px;
}
.booking-form-wrap h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 90px; }
.price-preview {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin: 1rem 0;
  display: none;
}
.price-preview.visible { display: block; }
.price-preview-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.price-preview-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}
.form-success {
  text-align: center;
  padding: 2rem;
  display: none;
}
.form-success.visible { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-error { color: #e53e3e; font-size: 0.8rem; margin-top: 0.4rem; }
.alert {
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}
.alert.visible { display: block; }
.alert-error { background: #fff5f5; border: 1px solid #feb2b2; color: #c53030; }
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }

/* ============================================================
   GALLERY / ROOM DETAIL MODAL
   ============================================================ */
.gallery-section { padding: 7rem 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  min-height: 200px;
}
.gallery-item:first-child img { min-height: 420px; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
  color: white;
  font-size: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  line-height: 1; padding: 0.5rem;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 7rem 0; background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text strong { color: var(--white); display: block; font-size: 0.85rem; margin-bottom: 0.25rem; }
.contact-item-text a, .contact-item-text span { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition-fast); }
.contact-item-text a:hover { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.map-embed {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.contact-form-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form-wrap h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-form-wrap .form-label { color: rgba(255,255,255,0.5); }
.contact-form-wrap .form-control {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.contact-form-wrap .form-control:focus {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
}
.contact-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #111;
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col h5 {
  color: var(--white);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-copy a { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.revealed { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.revealed { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-scale.revealed { opacity: 1; transform: scale(1); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   STICKY SCROLL FEATURE
   ============================================================ */
.scroll-feature { padding: 0; overflow: hidden; }
.scroll-feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.scroll-feature-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.scroll-feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.scroll-feature-panels { padding: 7rem 5rem; display: flex; flex-direction: column; gap: 0; }
.scroll-panel {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 0;
  opacity: 0.3;
  transition: opacity 0.5s ease;
}
.scroll-panel.active { opacity: 1; }
.scroll-panel h3 { font-size: 2rem; margin-bottom: 1rem; }
.scroll-panel p { color: var(--text-light); margin-bottom: 1.5rem; max-width: 380px; }

/* ============================================================
   ROOM DETAIL (inline expandable)
   ============================================================ */
.room-detail-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 2rem;
}
.room-detail-overlay.open { opacity: 1; pointer-events: all; }
.room-detail-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
}
.room-detail-overlay.open .room-detail-modal { transform: scale(1) translateY(0); }
.room-detail-gallery {
  position: relative;
  height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.room-detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.room-detail-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.room-detail-body { padding: 2.5rem; }
.room-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.room-detail-price .amount { font-family: var(--font-heading); font-size: 2rem; color: var(--gold); }
.room-detail-amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
  margin: 1.5rem 0;
}
.room-detail-amenity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: var(--text);
  padding: 0.5rem;
  background: var(--cream);
  border-radius: var(--radius);
}

/* CALENDAR */
.mini-calendar { margin: 1.5rem 0; }
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.calendar-header h4 { font-size: 0.95rem; }
.cal-nav {
  background: none;
  border: 1px solid var(--border);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.cal-nav:hover { background: var(--dark); color: white; border-color: var(--dark); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day-header {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 0.3rem;
  text-transform: uppercase;
}
.cal-day {
  text-align: center;
  padding: 0.45rem 0.2rem;
  font-size: 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}
.cal-day:hover:not(.blocked):not(.empty) { background: var(--sand); }
.cal-day.blocked { background: #fee; color: #c53030; cursor: not-allowed; text-decoration: line-through; }
.cal-day.selected-start, .cal-day.selected-end { background: var(--gold); color: white; }
.cal-day.in-range { background: rgba(201,168,76,0.15); }
.cal-day.today { border-color: var(--gold); font-weight: 700; }
.cal-day.empty { pointer-events: none; }
.cal-day.past { color: var(--border); cursor: not-allowed; pointer-events: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-badge { right: 1.5rem; }
  .booking-inner { grid-template-columns: 1fr; gap: 3rem; }
  .booking-form-wrap { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .scroll-feature-inner { grid-template-columns: 1fr; }
  .scroll-feature-sticky { display: none; }
  .scroll-feature-panels { padding: 4rem 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-inner { overflow: hidden; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: none; }
  .nav-mobile.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
  }
  .nav-mobile .nav-link { color: white; font-size: 1.1rem; }
  .nav-mobile .nav-cta { background: var(--gold); padding: 1rem 2rem; }
  .mobile-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    background: none; border: none;
    color: white; font-size: 1.5rem;
  }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .rooms-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-amenities { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .room-detail-overlay { padding: 0.5rem; }
  .room-detail-body { padding: 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  h2 { font-size: 1.8rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: 1; }
  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 1rem; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-bg-img { transform: none; object-position: center center; }
  .hero picture { transform: none; }
}

/* Smooth section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0;
}
