/* ==========================================================================
   Hotel Vedantra — Luxury Boutique Hotel, Bikaner, Rajasthan
   Complete Stylesheet v1.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   §0  Google Fonts
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Inter:wght@300;400;500;600&display=swap');

/* --------------------------------------------------------------------------
   §1  Design Tokens (CSS Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* ── Colour palette ── */
  --primary-gold: #C9A96E;
  --primary-gold-light: #D4B97E;
  --primary-gold-dark: #B8944D;
  --deep-charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --cream: #F5F0E8;
  --warm-ivory: #FAF7F2;
  --rich-brown: #4A3728;
  --teal-accent: #2A7B88;
  --teal-light: #358E9C;
  --white: #FFFFFF;

  /* ── Overlays ── */
  --overlay-dark: rgba(26, 26, 26, 0.7);
  --overlay-gold: rgba(201, 169, 110, 0.15);

  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.2);

  /* ── Transitions ── */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-med: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Typography ── */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;

  /* ── Layout ── */
  --max-width: 1280px;
  --section-padding: 100px 0;
}

/* --------------------------------------------------------------------------
   §2  Global Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--deep-charcoal);
  background-color: var(--warm-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  outline: none;
}

input,
select,
textarea {
  font-family: inherit;
  outline: none;
}

/* ── Selection colour ── */
::selection {
  background: var(--primary-gold);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary-gold);
  color: var(--white);
}

/* ── Custom scrollbar (WebKit) ── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-gold-dark);
}

/* --------------------------------------------------------------------------
   §3  Utility Classes
   -------------------------------------------------------------------------- */

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 12px;
}

/* ── Section Title ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--deep-charcoal);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
}

/* ── Section Subtitle ── */
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: #777;
  max-width: 580px;
  margin: 24px auto 0;
  line-height: 1.7;
}

/* ── Gold text helper ── */
.gold-text {
  color: var(--primary-gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.btn-primary:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-gold);
  border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   §4  Navigation — #navbar
   -------------------------------------------------------------------------- */
#navbar,
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition-med);
  padding: 20px 0;
}

.navbar.scrolled {
  background: var(--deep-charcoal);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Logo ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.nav-logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-gold);
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  background-color: var(--white);
  padding: 1px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-hotel {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition-fast);
}

.nav-logo-name .gold,
.nav-logo .gold {
  color: var(--primary-gold);
}

/* ── Desktop Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-med);
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--primary-gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--primary-gold);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* ── Nav CTA ── */
.nav-cta {
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  border-radius: 6px;
  transition: all var(--transition-med);
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.2);
}

.nav-cta:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

/* ── Mobile Menu Button (Hamburger) ── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 1001;
  background: transparent;
  border: none;
  padding: 0;
}

.mobile-menu-btn span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── Mobile Nav Overlay ── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--deep-charcoal);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav-links a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  position: relative;
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary-gold);
}

.mobile-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 2px;
  background: var(--primary-gold);
  transition: transform var(--transition-fast);
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.mobile-nav .nav-cta {
  margin-top: 36px;
}

/* --------------------------------------------------------------------------
   §5  Hero Section — #hero
   -------------------------------------------------------------------------- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 26, 0.55) 0%,
    rgba(26, 26, 26, 0.3) 50%,
    rgba(26, 26, 26, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease-out both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title .gold {
  color: var(--primary-gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  color: var(--cream);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover {
  border-color: var(--primary-gold);
  background: var(--primary-gold);
  color: var(--deep-charcoal);
}

/* ── Scroll Indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease-out 1s both;
}

.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.6);
}

.hero-scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 2px;
  animation: bounce 2s ease-in-out infinite;
}

/* --------------------------------------------------------------------------
   §6  About Section — #about
   -------------------------------------------------------------------------- */
#about {
  padding: var(--section-padding);
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Image Side ── */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--primary-gold);
  border-radius: 10px;
  z-index: 0;
  transition: all var(--transition-med);
}

.about-image-wrapper:hover::before {
  top: -12px;
  left: -12px;
}

.about-image-wrapper img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  z-index: 2;
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  padding: 24px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image-badge .badge-number,
.about-image-badge-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-image-badge .badge-text,
.about-image-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}

/* ── Content Side ── */
.about-content {
  padding: 16px 0;
}

.about-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 24px;
  position: relative;
}

.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  margin-top: 16px;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 36px;
}

.about-text p + p {
  margin-top: 16px;
}

/* ── Stats ── */
.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.about-stat {
  text-align: center;
  flex: 1;
  padding: 0 20px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 8px;
}

.about-divider {
  width: 1px;
  height: 48px;
  background: var(--primary-gold);
  opacity: 0.4;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   §7  Rooms Section — #rooms
   -------------------------------------------------------------------------- */
#rooms {
  padding: var(--section-padding);
  background: var(--warm-ivory);
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ── Room Card ── */
.room-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-med);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.room-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.room-card:hover .room-card-image img {
  transform: scale(1.05);
}

.room-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 1;
}

.room-card-content {
  padding: 28px;
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 10px;
}

.room-card-desc {
  font-size: 0.92rem;
  color: #777;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
}

.room-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.room-card-amenity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: #888;
  background: var(--warm-ivory);
  padding: 5px 10px;
  border-radius: 4px;
}

.room-card-amenity svg,
.room-card-amenity i {
  width: 14px;
  height: 14px;
  color: var(--primary-gold);
  fill: var(--primary-gold);
  flex-shrink: 0;
}

.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.room-card-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-gold);
}

.room-card-price span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: #999;
}

.room-card-btn {
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary-gold);
  border: 1.5px solid var(--primary-gold);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.room-card-btn:hover {
  background: var(--primary-gold);
  color: var(--deep-charcoal);
}

/* ── Room Modal ── */
.room-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.room-modal.active {
  opacity: 1;
  visibility: visible;
}

.room-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.room-modal-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-med);
}

.room-modal.active .room-modal-content {
  transform: translateY(0) scale(1);
}

.room-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #666;
  background: var(--white);
  border-radius: 50%;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
}

.room-modal-close:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.room-modal-gallery,
.room-modal-carousel {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.room-modal-gallery img,
.room-modal-carousel img,
.room-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.room-modal-prev,
.room-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  color: var(--deep-charcoal);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 2;
}

.room-modal-prev { left: 16px; }
.room-modal-next { right: 16px; }

.room-modal-prev:hover,
.room-modal-next:hover {
  background: var(--primary-gold);
  color: var(--white);
}

.room-modal-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.room-modal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.room-modal-dot.active {
  background: var(--primary-gold);
  transform: scale(1.3);
}

.room-modal-info {
  padding: 36px;
}

.room-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.room-modal-description {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.room-modal-amenities h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--deep-charcoal);
}

.room-modal-amenities ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-bottom: 20px;
}

.room-modal-amenities li {
  background: var(--warm-ivory);
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.room-modal-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-gold);
  margin-top: 16px;
}

.room-modal-info h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.room-modal-info p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   §8  Dining Section — #dining
   -------------------------------------------------------------------------- */
#dining {
  position: relative;
  background: var(--deep-charcoal);
  overflow: hidden;
}

.dining-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.dining-image-col {
  position: relative;
  overflow: hidden;
}

.dining-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dining-image-col:hover img {
  transform: scale(1.03);
}

.dining-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 60%,
    rgba(26, 26, 26, 0.6) 100%
  );
  pointer-events: none;
}

.dining-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  background: var(--deep-charcoal);
}

.dining-tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary-gold);
  margin-bottom: 12px;
}

.dining-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}

.dining-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-gold);
  border-radius: 2px;
  margin-top: 20px;
}

.dining-text {
  font-size: 1rem;
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0.85;
}

.dining-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 36px;
}

.dining-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.dining-feature-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.3rem;
}

.dining-feature-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary-gold);
}

.dining-feature-title,
.dining-feature h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.dining-feature-desc,
.dining-feature p {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.5;
}

/* ── Dining Hours ── */
.dining-hours {
  background: var(--charcoal-light);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 36px;
}

.dining-hours-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.dining-hours-row,
.dining-hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dining-hours-row:last-child,
.dining-hours-item:last-child {
  border-bottom: none;
}

.dining-hours-label,
.dining-hours-meal {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 400;
}

.dining-hours-time {
  color: var(--primary-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.dining-cta {
  margin-top: 8px;
}

/* --------------------------------------------------------------------------
   §9  Gallery Section — #gallery
   -------------------------------------------------------------------------- */
#gallery {
  padding: var(--section-padding);
  background: var(--cream);
}

/* ── Filter Buttons ── */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter-btn {
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #888;
  background: transparent;
  border: 1.5px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.gallery-filter-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.gallery-filter-btn.active {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--deep-charcoal);
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 26, 26, 0.7) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-med);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-info {
  color: var(--white);
  transform: translateY(10px);
  transition: transform var(--transition-med);
}

.gallery-item:hover .gallery-item-info {
  transform: translateY(0);
}

.gallery-item-info .category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-gold);
  margin-bottom: 4px;
}

.gallery-item-info .title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
}

.gallery-item-info .expand-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1rem;
}

/* ── Spanning items ── */
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img,
.lightbox-image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  transition: opacity 0.2s ease;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: rgba(201, 169, 110, 0.3);
  border-color: var(--primary-gold);
}

.lightbox-nav.prev {
  left: 24px;
}

.lightbox-nav.next {
  right: 24px;
}

.lightbox-caption {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
  max-width: 500px;
}

/* --------------------------------------------------------------------------
   §10  Amenities Section — #amenities
   -------------------------------------------------------------------------- */
#amenities {
  padding: var(--section-padding);
  background: var(--warm-ivory);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.amenity-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 12px;
  transition: all var(--transition-med);
  border: 1px solid transparent;
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--overlay-gold);
}

.amenity-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--overlay-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary-gold);
  transition: all var(--transition-med);
}

.amenity-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary-gold);
}

.amenity-card:hover .amenity-icon {
  background: var(--primary-gold);
  color: var(--white);
}

.amenity-card:hover .amenity-icon svg {
  fill: var(--white);
}

.amenity-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 10px;
}

.amenity-desc {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   §11  Testimonials Section — #testimonials
   -------------------------------------------------------------------------- */
#testimonials {
  padding: var(--section-padding);
  background: var(--cream);
  overflow: hidden;
}

.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  flex-shrink: 0;
  width: 100%;
  padding: 40px 24px;
  text-align: center;
}

.testimonial-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--deep-charcoal);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--primary-gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background: var(--overlay-gold);
  color: var(--primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong,
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  display: block;
}

.testimonial-author span,
.testimonial-location {
  font-size: 0.82rem;
  color: #999;
  display: block;
}

/* ── Dots ── */
.testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonials-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.testimonials-dot.active,
.testimonials-dot:hover {
  background: var(--primary-gold);
  transform: scale(1.3);
}

/* ── Nav Arrows ── */
.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials-nav-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid #ddd;
  color: var(--deep-charcoal);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.testimonials-nav-btn:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
}

/* --------------------------------------------------------------------------
   §12  Contact Section — #contact
   -------------------------------------------------------------------------- */
#contact {
  padding: var(--section-padding);
  background: var(--warm-ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ── Form ── */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 32px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  flex: 1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--deep-charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--deep-charcoal);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit-btn {
  width: 100%;
  padding: 18px 44px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-med);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.form-submit-btn:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.35);
}

.form-submit-btn:active {
  transform: translateY(0);
}

/* ── Form error state ── */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-error {
  color: #e74c3c;
  font-size: 0.82rem;
  margin-top: 4px;
  display: block;
}

/* ── Info Side ── */
.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.contact-info-heading {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--deep-charcoal);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--overlay-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary-gold);
}

.contact-info-text {
  display: flex;
  flex-direction: column;
}

.contact-info-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #999;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--deep-charcoal);
  line-height: 1.5;
}

.contact-info-value a {
  color: var(--deep-charcoal);
  transition: color var(--transition-fast);
}

.contact-info-value a:hover {
  color: var(--primary-gold);
}

/* ── Map ── */
.contact-map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-sm);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --------------------------------------------------------------------------
   §13  Footer — #footer
   -------------------------------------------------------------------------- */
#footer {
  background: var(--deep-charcoal);
  color: var(--cream);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

/* ── Brand ── */
.footer-brand {
  padding-right: 24px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-brand-logo-icon {
  width: 36px;
  height: 36px;
}

.footer-brand-logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-gold);
}

.footer-brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--primary-gold);
  background-color: var(--white);
  padding: 1px;
}

.footer-brand-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-logo-text .gold {
  color: var(--primary-gold);
}

.footer-desc {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ── Social Links ── */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  color: var(--primary-gold);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--primary-gold);
  transition: fill var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-gold);
  border-color: var(--primary-gold);
  color: var(--deep-charcoal);
}

.footer-social a:hover svg {
  fill: var(--deep-charcoal);
}

/* ── Column Titles ── */
.footer-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-gold);
  margin-bottom: 24px;
}

/* ── Footer Links ── */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.6);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-gold);
  padding-left: 6px;
}

/* ── Newsletter ── */
.footer-newsletter p {
  font-size: 0.92rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter input {
  flex: 1;
  padding: 14px 16px;
  background: var(--charcoal-light);
  border: 1px solid #555;
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--transition-fast);
}

.footer-newsletter input::placeholder {
  color: #777;
}

.footer-newsletter input:focus {
  border-color: var(--primary-gold);
}

.footer-newsletter button {
  padding: 14px 24px;
  background: var(--primary-gold);
  color: var(--deep-charcoal);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.footer-newsletter button:hover {
  background: var(--primary-gold-dark);
}

/* ── Footer Bottom ── */
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary-gold);
}

/* --------------------------------------------------------------------------
   §14  WhatsApp Floating Button — #whatsapp-btn
   -------------------------------------------------------------------------- */
#whatsapp-btn,
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 999;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition-fast);
  text-decoration: none;
  border: none;
  animation: pulse 2s ease-in-out infinite;
}

#whatsapp-btn svg,
.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

#whatsapp-btn:hover,
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  animation: none;
}

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--deep-charcoal);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--deep-charcoal);
  border-right: none;
}

#whatsapp-btn:hover .whatsapp-tooltip,
.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* --------------------------------------------------------------------------
   §15  Scroll Animations
   -------------------------------------------------------------------------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

.animate-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-fade-right.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-scale.animated {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------------------------
   §16  Back to Top Button — #back-to-top
   -------------------------------------------------------------------------- */
#back-to-top,
.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary-gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-med);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

#back-to-top svg,
.back-to-top svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

#back-to-top.visible,
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#back-to-top:hover,
.back-to-top:hover {
  background: var(--primary-gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
}

/* --------------------------------------------------------------------------
   §17  Loading Screen — #loader
   -------------------------------------------------------------------------- */
#loader,
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fadeIn 0.6s ease-out both;
}

.loader-logo-icon {
  width: 60px;
  height: 60px;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-gold);
}

.loader-logo-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-gold);
  background-color: var(--white);
  padding: 2px;
  animation: logoPulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(201, 169, 110, 0.3);
}

.loader-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-charcoal);
  letter-spacing: 0.04em;
}

.loader-logo-text .gold {
  color: var(--primary-gold);
}

.loader-spinner {
  margin-top: 32px;
  width: 32px;
  height: 32px;
  border: 3px solid rgba(201, 169, 110, 0.2);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

#loader.loaded,
.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   §18  Keyframe Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(201, 169, 110, 0.6);
  }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes counterUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   §19  Responsive — Tablet (≤1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {

  :root {
    --section-padding: 80px 0;
  }

  .about-grid {
    gap: 40px;
  }

  .about-image-wrapper img {
    height: 400px;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dining-image-col {
    height: 400px;
  }

  .dining-image-col::after {
    background: linear-gradient(
      0deg,
      rgba(26, 26, 26, 0.6) 0%,
      transparent 50%
    );
  }

  .dining-content-col {
    padding: 56px 40px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .testimonials-nav.prev {
    left: 0;
  }

  .testimonials-nav.next {
    right: 0;
  }

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

/* --------------------------------------------------------------------------
   §20  Responsive — Mobile (≤768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  :root {
    --section-padding: 64px 0;
  }

  /* Navigation */
  .nav-links {
    display: none;
  }

  .nav-cta:not(.mobile-nav .nav-cta) {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* Hero */
  #hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper::before {
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
  }

  .about-image-wrapper img {
    height: 300px;
  }

  .about-image-badge {
    bottom: -16px;
    right: -8px;
    padding: 18px 22px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .about-divider {
    display: none;
  }

  .about-stat {
    min-width: 100px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Rooms */
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Dining */
  .dining-features {
    grid-template-columns: 1fr;
  }

  .dining-content-col {
    padding: 40px 24px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
    aspect-ratio: 1;
  }

  /* Amenities */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .amenity-card {
    padding: 28px 16px;
  }

  .amenity-icon {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  /* Testimonials */
  .testimonials-nav {
    display: none;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  /* Contact */
  .contact-form {
    padding: 28px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  /* WhatsApp & Back to top */
  #whatsapp-btn,
  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  #back-to-top,
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 80px;
    right: 22px;
  }
}

/* --------------------------------------------------------------------------
   §21  Responsive — Small Phone (≤480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {

  :root {
    --section-padding: 52px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .about-image-wrapper::before {
    display: none;
  }

  .about-image-wrapper img {
    height: 240px;
  }

  .about-title {
    font-size: 1.5rem;
  }

  .about-stat-number {
    font-size: 1.8rem;
  }

  .room-card-content {
    padding: 20px;
  }

  .room-card-title {
    font-size: 1.1rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .mobile-nav-links a {
    font-size: 1.3rem;
  }

  .dining-title {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }

  .footer-newsletter input {
    border-right: 1px solid #555;
    border-radius: 6px;
  }

  .footer-newsletter button {
    border-radius: 6px;
    margin-top: 8px;
  }
}

/* --------------------------------------------------------------------------
   §22  Print Styles
   -------------------------------------------------------------------------- */
@media print {

  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  #navbar,
  .navbar,
  .mobile-nav,
  .mobile-menu-btn,
  #whatsapp-btn,
  .whatsapp-btn,
  #back-to-top,
  .back-to-top,
  #loader,
  .loader,
  .hero-scroll,
  .gallery-filters,
  .lightbox,
  .room-modal {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  #hero {
    height: auto;
    min-height: auto;
    page-break-after: always;
  }

  .hero-overlay {
    display: none;
  }

  .hero-content {
    position: static;
  }

  .about-grid,
  .rooms-grid,
  .dining-wrapper,
  .gallery-grid,
  .amenities-grid,
  .contact-grid,
  .footer-grid {
    display: block;
  }

  .room-card,
  .amenity-card,
  .gallery-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  img {
    max-width: 100% !important;
  }

  .animate-on-scroll,
  .animate-fade-left,
  .animate-fade-right,
  .animate-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── End of Hotel Vedantra Stylesheet ── */
