/* ============================================
   BRIGHTNEST MUNROE — Design System & Styles
   (Bootstrap 5 + Animated Logo + Rooms Page)
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --gold: #C4975A;
  --gold-light: #d4ad72;
  --gold-dark: #a87d45;
  --charcoal: #1A1A1A;
  --cream: #F5F3EF;
  --white: #FFFFFF;
  --grey: #6B6B6B;
  --grey-light: #9B9B9B;
  --green-wa: #25D366;

  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-nav: 0 2px 20px rgba(0, 0, 0, 0.08);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
  --space-2xl: 120px;

  --content-width: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.3s var(--ease);
  --transition-medium: 0.5s var(--ease);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  color: var(--charcoal);
  background-color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 0.01em;
}

.subtitle {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gold-separator {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-md) auto;
  border: none;
}

.gold-separator--left {
  margin-left: 0;
}

.section-subheading {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: clamp(16px, 1.5vw, 20px);
  margin-top: var(--space-sm);
}

.container {
  max-width: var(--content-width) !important;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 18px 48px;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

.btn-primary:hover {
  background: var(--gold-dark) !important;
  border-color: var(--gold-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 151, 90, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 151, 90, 0.4);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: var(--white);
}

.btn svg,
.btn i {
  font-size: 18px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
  padding: 20px 0;
  transition: all var(--transition-fast);
  background: transparent !important;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-nav);
  padding: 15px 0;
}

.navbar-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: white !important;
  padding: 0;
}

.navbar.scrolled .navbar-brand {
  color: var(--charcoal) !important;
}

.brand-accent {
  color: var(--gold);
}

/* Logo Image */
.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.03);
}

/* Footer Logo */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer-logo-img {
  height: 65px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.03);
  opacity: 0.9;
}

.nav-link {
  font-family: var(--font-sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white !important;
  margin: 0 12px;
  padding: 8px 4px !important;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 4px;
  right: 4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 8px);
}

.navbar.scrolled .nav-link {
  color: var(--charcoal) !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--gold) !important;
}

.btn-book {
  background: var(--gold);
  color: white !important;
  padding: 12px 30px;
  border: 2px solid var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  border-radius: 0;
}

.btn-book:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 151, 90, 0.4);
  color: white !important;
}

.navbar-toggler {
  border: none;
  padding: 8px 12px;
  outline: none !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 30px;
  height: 30px;
  display: block;
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,26,26,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ===========================
   HERO VIDEO SECTION
   =========================== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

/* ===========================
   ANIMATED TITLE — Letter-by-Letter with Blur
   =========================== */
.animated-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: white;
  /* Override base hero-title animation */
  opacity: 1;
  transform: none;
  animation: none;
}

.animated-title .letter {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(40px) translateX(-10px) scale(0.7) rotate(-5deg);
  animation: letterReveal 0.8s ease-out forwards;
  animation-delay: calc(var(--delay) * 0.1s);
}

.animated-title .space {
  width: 0.3em;
  display: inline-block;
}

/* MUNROE letters — gold accent */
.munroe-letter {
  color: var(--gold) !important;
}

@keyframes letterReveal {
  0% {
    opacity: 0;
    filter: blur(12px) brightness(0.5);
    transform: translateY(40px) translateX(-10px) scale(0.7) rotate(-5deg);
  }

  40% {
    filter: blur(6px) brightness(0.8);
  }

  70% {
    filter: blur(2px) brightness(1);
  }

  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0) translateX(0) scale(1) rotate(0deg);
  }
}

/* Subtitle fades in after letters finish */
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 300;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1.4s forwards;
}

/* Scroll indicator appears last */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.8s forwards;
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

/* ===========================
   SECTION BASE
   =========================== */
.section {
  padding: var(--space-2xl) 0;
}

.section--cream {
  background: var(--cream);
}

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-xs);
}

.section-header .subtitle {
  color: var(--grey);
  margin-top: var(--space-sm);
}

/* ===========================
   WELCOME SECTION
   =========================== */
.welcome-images {
  position: relative;
  min-height: 520px;
}

/* --- Image Wrapper (shared) --- */
.welcome-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.welcome-img-wrapper:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.welcome-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.welcome-img-wrapper:hover img {
  transform: scale(1.06);
}

/* --- Caption Overlay --- */
.welcome-img-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 26, 26, 0.65) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.welcome-img-wrapper:hover .welcome-img-caption {
  opacity: 1;
}

.welcome-img-caption span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

/* --- Main Image (large, left) --- */
.welcome-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
}

/* Gold accent bar */
.welcome-img-main::before {
  content: '';
  position: absolute;
  top: 24px;
  left: -6px;
  width: 4px;
  height: 60px;
  background: var(--gold);
  border-radius: 2px;
  z-index: 2;
}

/* --- Secondary Image (small, overlapping bottom-right) --- */
.welcome-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 55%;
  z-index: 2;
  border: 5px solid var(--cream);
}

/* --- Reveal-Up Animation --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease) var(--reveal-delay, 0s),
    transform 0.8s var(--ease) var(--reveal-delay, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.section--cream .reveal-left p,
.section--cream .col-lg-6 p {
  color: var(--grey);
  margin-bottom: var(--space-md);
  font-size: 16px;
  line-height: 1.8;
}

/* ===========================
   WHY STAY HERE — Icon Cards
   =========================== */
.location-section {
  background: var(--white);
  padding: 100px 0;
}

.location-icon-card {
  text-align: center;
  padding: 20px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  background: transparent;
}

.icon-wrapper i {
  font-size: 36px;
  color: var(--grey);
  transition: all 0.4s ease;
}

.location-icon-card:hover .icon-wrapper {
  background: var(--gold);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(196, 151, 90, 0.3);
}

.location-icon-card:hover .icon-wrapper i {
  color: var(--white);
  transform: scale(1.1);
}

.icon-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-top: 12px;
  transition: color 0.3s ease;
}

.location-icon-card:hover .icon-label {
  color: var(--gold);
}

.location-tagline {
  font-style: italic;
  color: var(--gold);
  font-size: 18px;
  margin-top: 40px;
  font-family: var(--font-serif);
}

/* ===========================
   FACILITIES — Squared Cards
   =========================== */
.facilities-section {
  background: var(--cream);
  padding: 100px 0;
}

.facility-square-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.facility-square-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.facility-icon-bg {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.facility-icon-bg i {
  font-size: 40px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.facility-square-card:hover .facility-icon-bg {
  background: var(--gold);
}

.facility-square-card:hover .facility-icon-bg i {
  color: var(--white);
  transform: scale(1.1);
}

.facility-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--charcoal);
}

.facility-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
}

/* ===========================
   EXPERIENCE SECTION (Before History)
   =========================== */
.experience-section {
  background: var(--cream);
  padding: 100px 0;
}

.experience-text {
  padding-right: 40px;
}

.experience-para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 20px;
}

.experience-cta {
  margin-top: 40px;
}

.experience-cta .btn {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.experience-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(196, 151, 90, 0.4);
}

.experience-image {
  border-radius: 4px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.experience-image:hover img {
  transform: scale(1.02);
}

/* ===========================
   HISTORY SECTION (Light/Cream — After Experience)
   =========================== */
.history-section {
  background: var(--white);
  padding: 100px 0;
}

.history-content {
  padding-right: 40px;
}

.history-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey);
  margin-bottom: 20px;
}

.history-quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 24px 32px;
  margin: 32px 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gold);
}

.history-quote p {
  margin: 0;
  color: var(--gold);
}

.history-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-medium);
  object-fit: cover;
}

/* ===========================
   MAP / FIND US SECTION
   =========================== */
.map-section {
  background: var(--cream);
  padding: 100px 0 80px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.map-container iframe {
  display: block;
}

.map-address {
  font-size: 16px;
  color: var(--grey);
  margin-top: 20px;
}

.map-address i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 20px;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section .subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-lg);
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer .nav-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer .nav-logo span {
  color: var(--gold);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.footer h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer-links a {
  display: block;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-contact i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  width: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

/* Social Media Icons */
.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  color: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  padding-top: var(--space-md);
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

/* ===========================
   ROOMS PAGE — Hero
   =========================== */
.rooms-hero-section {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rooms-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.rooms-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

/* ===========================
   ROOMS PAGE — Intro
   =========================== */
.rooms-intro-section {
  padding: 80px 0;
  background: var(--cream);
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--grey);
}

/* ===========================
   ROOMS PAGE — Photo Gallery (Masonry + Lightbox)
   =========================== */
.gallery-section {
  padding: 100px 0;
  background: var(--white);
}

/* Masonry grid via CSS columns */
.gallery-grid {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 20px;
  break-inside: avoid;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Gold overlay with icon */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(196, 151, 90, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 48px;
  color: var(--white);
  transform: scale(0.5);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* Mobile "Load More" button */
.gallery-load-more-wrap {
  display: none;
  text-align: center;
  margin-top: 40px;
}

.gallery-load-more {
  padding: 16px 40px;
}

/* ==== Lightbox ==== */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-lightbox.active .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 3;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: 2px solid rgba(196, 151, 90, 0.6);
  color: var(--gold);
  font-size: 24px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   ROOMS PAGE — Accommodation Highlights
   =========================== */
.highlights-section {
  padding: 100px 0;
  background: var(--cream);
}

.highlight-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.highlight-icon i {
  font-size: 32px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.highlight-card:hover .highlight-icon {
  background: var(--gold);
}

.highlight-card:hover .highlight-icon i {
  color: var(--white);
  transform: scale(1.1);
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.highlight-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
  margin: 0;
}

/* ===========================
   ROOMS PAGE — What's Included
   =========================== */
.included-section {
  padding: 100px 0;
  background: var(--white);
}

.included-card {
  border: 1px solid rgba(196, 151, 90, 0.25);
  border-radius: 8px;
  padding: 36px 32px;
  height: 100%;
  transition: all 0.3s ease;
}

.included-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(196, 151, 90, 0.12);
}

.included-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream);
}

.included-card-header i {
  font-size: 28px;
  color: var(--gold);
}

.included-card-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--charcoal);
}

.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--charcoal);
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.included-list li i {
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ===========================
   ROOMS PAGE — Booking Options
   =========================== */
.booking-options-section {
  padding: 100px 0;
  background: var(--white);
}

.booking-option-card {
  border: 2px solid rgba(196, 151, 90, 0.3);
  border-radius: 8px;
  padding: 48px 32px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
}

.booking-option-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(196, 151, 90, 0.15);
}

.booking-option-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.booking-option-icon i {
  font-size: 36px;
  color: var(--gold);
  transition: all 0.4s ease;
}

.booking-option-card:hover .booking-option-icon {
  background: var(--gold);
}

.booking-option-card:hover .booking-option-icon i {
  color: var(--white);
}

.booking-option-card h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  color: var(--charcoal);
}

.booking-option-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
  margin: 0;
}

.booking-note {
  font-style: italic;
  color: var(--grey);
  font-size: 16px;
  margin-top: 20px;
  font-family: var(--font-serif);
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===========================
   RESPONSIVE: 1024px
   =========================== */
@media (max-width: 1024px) {
  .section {
    padding: var(--space-xl) 0;
  }
}

/* ===========================
   RESPONSIVE: 991px
   =========================== */
@media (max-width: 991px) {
  .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    padding: 10px 0;
  }

  .logo-img {
    height: 38px;
  }

  .navbar-brand {
    color: var(--charcoal) !important;
  }

  .nav-link {
    color: var(--charcoal) !important;
    margin: 5px 0;
    padding: 10px 4px !important;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-collapse {
    margin-top: 15px;
    padding-bottom: 15px;
  }

  .btn-book {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,26,26,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 30px;
    height: 30px;
    display: block;
  }

  .history-content {
    padding-right: 0;
  }

  .history-quote {
    padding: 20px 24px;
    font-size: 16px;
  }

  .facility-square-card {
    min-height: auto;
  }

  .gallery-grid {
    column-count: 2;
  }

  .highlights-section,
  .included-section,
  .booking-options-section {
    padding: 60px 0;
  }

  .experience-text {
    padding-right: 0;
  }

  .experience-section .row {
    display: flex;
    flex-direction: column;
  }

  .experience-section .col-lg-6.reveal-left {
    display: contents;
  }

  .experience-text {
    order: 1;
    padding: 0 12px;
  }

  .experience-section .col-lg-6.reveal-right {
    order: 2;
    margin: 24px 0;
    padding: 0 12px;
  }

  .experience-cta {
    order: 3;
    margin-top: 8px;
    padding: 0 12px;
  }

  .experience-section {
    padding: 60px 0;
  }
}

/* ===========================
   RESPONSIVE: 768px
   =========================== */
@media (max-width: 768px) {
  .logo-img {
    height: 40px;
  }

  .footer-logo-img {
    height: 55px;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero-section {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-video {
    display: block;
    object-fit: cover;
  }

  .animated-title {
    font-size: 38px !important;
    letter-spacing: 0.05em;
    padding: 0 10px;
    word-break: break-word;
  }

  .hero-subtitle {
    font-size: 14px !important;
    letter-spacing: 0.15em;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .welcome-images {
    position: static;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }

  .welcome-img-main,
  .welcome-img-secondary {
    position: static;
    width: 100%;
    height: auto;
    border: none;
  }

  .welcome-img-secondary {
    border: none;
  }

  .welcome-img-main::before {
    display: none;
  }

  .welcome-img-wrapper {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  }

  .welcome-img-wrapper img {
    height: auto;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    padding: 16px 36px;
    width: 100%;
    max-width: 320px;
  }

  .location-section {
    padding: 60px 0;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i {
    font-size: 30px;
  }

  .icon-label {
    font-size: 12px;
  }

  .facilities-section {
    padding: 60px 0;
  }

  .history-section {
    padding: 60px 0;
  }

  .history-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .history-section .row {
    --bs-gutter-y: 1rem;
  }

  .history-content {
    margin-bottom: 0;
    padding-right: 0;
  }

  .history-image img {
    height: auto;
  }

  .map-section {
    padding: 60px 0 40px;
  }

  .map-container iframe {
    height: 350px;
  }

  .rooms-hero-section {
    height: 40vh;
    min-height: 300px;
  }

  .rooms-intro-section {
    padding: 60px 0;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    column-count: 1;
  }

  .gallery-item:hover {
    transform: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .gallery-item:hover img {
    transform: none;
  }

  .gallery-overlay {
    display: none;
  }

  .gallery-load-more-wrap {
    display: block;
  }

  .gallery-item.gallery-hidden {
    display: none;
  }

  /* Lightbox mobile adjustments */
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .highlight-card {
    padding: 30px 20px;
  }

  .included-card {
    padding: 28px 24px;
  }

  .booking-option-card {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .animated-title {
    font-size: 32px !important;
    letter-spacing: 0.02em;
    gap: 8px;
  }
}