/* =========================================
   COLOR PALETTE
========================================= */
:root {
  --blue-deep: #002a4d;
  --blue-medium: #204a7b;
  --ivory: #f8f3e6;
  --ivory-light: #fbf7ef;
  --text-dark: #1f2933;
  --text-muted: #6b7280;
  --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* =========================================
   GLOBAL RESET & BASICS
========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  transition: background 0.3s ease, color 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--blue-medium);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  background: transparent;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
  height: 83px;
}

.logo-block {
  background: var(--blue-deep);
  color: white;
  padding: 1rem 1.5rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin-bottom: -20px;
}

.logo-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.main-header .logo-img {
  max-height: 100px;
  width: auto;
}

/* NAV */
.nav {
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-inline: 1.2rem;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links li {
  display: flex;
  align-items: center;
}

/* base link style */
.nav-links > li > a {
  position: relative;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding-block: 0.55rem;
  text-decoration: none !important;
}

/* underline effect */
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1rem;
  width: 100%;
  height: 3px;
  background: var(--blue-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

.nav-links > li > a:hover::after {
  transform: scaleX(1);
}

.nav-links li.nav-book-now {
  margin-left: 0 !important;
}

/* extra spacing around Book Now */
.nav-links li.nav-book-now a {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* NAV TOGGLE (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: 0.75rem;
  position: relative;
  z-index: 1100;
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
}

/* BOOK NOW button in nav */
.nav-book-button {
  display: inline-block;
  padding: 0.1em 0.75rem;
  background: transparent;
  border: 2px solid #000;
  color: #000;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 0.15rem;
  transition: all 0.25s ease;
}

.nav-book-button:hover {
  background: #002a4d;
  color: #fff;
  border-color: #002a4d;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  transform: scale(1.06);
}

.nav-book-button::after {
  display: none !important;
}

/* Night / light toggle – icon only */
.mode-toggle {
  width: 16px;
  height: 16px;
  padding: 0;
  margin-left: 1.1rem;
  cursor: pointer;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Light mode (moon icon) */
.mode-toggle {
  background-image: url("NightIcon.png");
}

/* Dark mode (sun icon) */
.mode-toggle.is-dark {
  background-image: url("LightIcon.png");
}

/* =========================================
   HERO – HOME
========================================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 21, 43, 0.65),
    rgba(0, 21, 43, 0.2)
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 1.5rem;
}

.hero-content .logo-img {
  width: clamp(320px, 34vw, 540px);
  height: auto;
  display: block;
  margin: 0 auto 1.3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroLogoFade 0.9s ease-out forwards;
}

.hero-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: -1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(10px);
  animation: heroTaglineFade 1s ease-out forwards;
  animation-delay: 0.15s;
}

.hero .btn-primary {
  display: inline-block;
  padding: 0.55rem 2rem;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0.15rem;
  transition: all 0.25s ease;
}

.hero .btn-primary:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 0 12px rgba(0, 42, 77, 0.35);
  transform: scale(1.06);
}

/* hero animations */
@keyframes heroLogoFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTaglineFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   PAGE HEROES (Subpages)
========================================= */
.page-hero {
  padding: 4rem 1.5rem 2rem;
  background: #fff;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin: 0 0 0.75rem;
}

.page-hero p {
  max-width: 600px;
  color: var(--text-muted);
}

/* CONTACT HERO (image background) */
.contact-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/237272/pexels-photo-237272.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 0;
}

.contact-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero .intro-label,
.contact-hero h1,
.contact-hero p {
  color: #ffffff;
}

/* ABOUT HERO */
.about-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  color: #ffffff;
  background-image: url("https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 0;
}

.about-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.about-hero .intro-label,
.about-hero h1,
.about-hero p {
  color: #ffffff;
}

/* AMENITIES HERO */
.amenities-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.amenities-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}

.amenities-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.amenities-hero .intro-label,
.amenities-hero h1,
.amenities-hero p {
  color: #ffffff;
}

/* ROOMS HERO */
.rooms-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/261102/pexels-photo-261102.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.rooms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}

.rooms-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.rooms-hero .intro-label,
.rooms-hero h1,
.rooms-hero p {
  color: #ffffff;
}

/* GALLERY HERO */
.gallery-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/237272/pexels-photo-237272.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}

.gallery-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.gallery-hero .intro-label,
.gallery-hero h1,
.gallery-hero p {
  color: #ffffff;
}

/* FAQS HERO – with background image */
.faqs-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/457882/pexels-photo-457882.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.faqs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}

.faqs-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.faqs-hero .intro-label,
.faqs-hero h1,
.faqs-hero p {
  color: #ffffff;
}

/* PRIVACY HERO */
.privacy-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.85)
  );
  z-index: 0;
}

.privacy-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.privacy-hero .intro-label,
.privacy-hero h1,
.privacy-hero p {
  color: #ffffff;
}

/* TERMS HERO */
.terms-hero {
  position: relative;
  padding: 5rem 1.5rem 4rem;
  color: #ffffff;
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.terms-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.8)
  );
  z-index: 0;
}

.terms-hero .page-hero-inner {
  position: relative;
  z-index: 1;
}

.terms-hero .intro-label,
.terms-hero h1,
.terms-hero p {
  color: #ffffff;
}

/* =========================================
   BUTTONS
========================================= */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue-deep);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--blue-medium);
}

.btn-secondary {
  background: var(--blue-deep);
  color: var(--ivory);
}

.btn-secondary:hover {
  background: var(--blue-medium);
}

/* =========================================
   INTRO SECTIONS (shared)
========================================= */
.intro-section {
  text-align: center;
  padding: 6rem 2rem;
  background: #fff;
  color: var(--text-dark);
}

.intro-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  color: var(--blue-medium);
  margin-bottom: 1rem;
}

.intro-script {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--blue-deep);
  margin: 1rem 0 -2rem;
}

.intro-headline {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.intro-body {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.intro-section .intro-script {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
}

.intro-section .intro-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
}

.contact-intro .intro-script {
  font-family: 'Great Vibes', cursive;
}

.contact-intro .intro-headline {
  font-family: 'Playfair Display', serif;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* =========================================
   GENERIC SECTIONS & CARDS
========================================= */
.section {
  padding: 4rem 1.5rem;
  background: #ffffff;
}

.section-alt {
  background: var(--ivory-light);
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-intro {
  max-width: 650px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* grids & cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  background: #ffffff;
  padding: 1.75rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 1.2rem;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* =========================================
   IMAGE BREAK STRIP
========================================= */
.image-break {
  position: relative;
  width: 100%;
  height: clamp(260px, 55vh, 420px);
  background-image: url("https://images.pexels.com/photos/189296/pexels-photo-189296.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.image-break-overlay p {
  margin: 0;
  padding: 0.75rem 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgba(0, 21, 43, 0.6);
  border-radius: 999px;
}

/* =========================================
   FORMS
========================================= */
form {
  width: 100%;
}

.reservation-form,
.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font: inherit;
  background: #ffffff;
  color: var(--text-dark);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue-medium);
  box-shadow: 0 0 0 2px rgba(32, 74, 123, 0.2);
}

/* =========================================
   FEATURE SECTION (image + text)
========================================= */
.feature-section {
  background: #fff;
  padding: 4rem 1.5rem;
}

.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature-image img {
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.feature-text {
  color: var(--text-dark);
}

.feature-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blue-medium);
  margin-bottom: 1rem;
}

.feature-headline {
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.feature-body {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.feature-button {
  display: inline-block;
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue-deep);
  color: var(--blue-deep);
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0.15rem;
  transition: 0.25s ease;
}

.feature-button:hover {
  background: var(--blue-deep);
  color: #fff;
  transform: scale(1.05);
}

/* Plan Your Stay button – always white */
.feeling-section .feature-button {
  display: inline-block;
  margin-top: 1.5rem;
  color: #fff;
  border: 2px solid #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0.15rem;
  padding: 0.55rem 2rem;
  transition: 0.25s ease;
}

.feeling-section .feature-button:hover {
  background: #f3f4f6;
  color: var(--blue-deep);
}

/* =========================================
   TESTIMONIAL SECTION
========================================= */
.testimonial-section {
  position: relative;
  padding: 5rem 1.5rem;
  background-image: url("https://images.pexels.com/photos/237272/pexels-photo-237272.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  min-height: 420px;
  max-height: 520px;
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 21, 43, 0.2),
    rgba(0, 21, 43, 0.45)
  );
}

.testimonial-card {
  position: relative;
  max-width: 780px;
  width: 100%;
  padding: 3rem 3.5rem;
  background: rgba(248, 243, 230, 0.854);
  border-radius: 0.75rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  text-align: center;
  z-index: 2;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.testimonial-stars {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.testimonial-quote .highlight {
  font-weight: 600;
}

.testimonial-author {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.testimonial-meta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-prev {
  left: 1.2rem;
}

.testimonial-next {
  right: 1.2rem;
}

.testimonial-nav:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.08);
}

.testimonial-content {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

/* =========================================
   LOGO & TAGLINE STRIP
========================================= */
.logo-tagline-section {
  padding: 6rem 1.5rem;
  background: var(--blue-deep);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-tagline-inner {
  max-width: 900px;
  margin: 0 auto;
}

.logo-tagline-img {
  width: clamp(260px, 28vw, 380px);
  height: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.logo-tagline-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.8rem;
}

/* =========================================
   4-TILE GALLERY STRIP
========================================= */
.four-tile-section {
  padding: 0;
  background: #ffffff;
}

.four-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 320px;
}

.four-tile-grid .tile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.four-tile-grid .tile:hover {
  transform: scale(1.03);
  filter: brightness(0.92);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--blue-deep);
  color: #fff;
  padding: 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  display: inline-block;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: var(--ivory);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease-out;
}

.footer-links a:hover {
  color: var(--ivory);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-links .divider {
  color: #ffffff;
  opacity: 0.8;
  padding: 0 0.2rem;
}

/* =========================================
   ROOMS – INTRO & CAROUSEL
========================================= */
.rooms-intro {
  text-align: center;
  padding: 6rem 2rem;
}

.rooms-intro .intro-body-large {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--text-dark);
}

.room-section {
  margin-bottom: 80px;
}

.room-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.8rem;
}

.room-carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.room-carousel-slide {
  min-width: 100%;
}

.room-carousel-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.room-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.room-carousel-nav.prev {
  left: 0.75rem;
}

.room-carousel-nav.next {
  right: 0.75rem;
}

.room-carousel-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.06);
}

/* room textual details */
.room-details {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.room-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-medium);
  margin-bottom: 0.75rem;
}

.room-title {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.room-lede,
.room-description {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.room-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.room-price span {
  font-size: 1.1rem;
}

.room-features {
  margin: 0 auto 28px;
  display: inline-block;
  text-align: left;
  width: min(560px, 92%);
  padding-left: 1.25rem;
}

.room-features li {
  margin-bottom: 6px;
  list-style: circle;
}

/* final CTA on rooms page */
.final-rooms-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  margin-top: -7rem;
}

.final-rooms-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.final-rooms-cta p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* =========================================
   AMENITIES – INTRO & EVENING GRID
========================================= */
.amenities-intro {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.amenities-intro .intro-body-large {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 2rem auto;
  color: var(--text-dark);
}

.evening-section .evening-grid {
  align-items: stretch;
}

.evening-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.evening-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.evening-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.evening-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.evening-list {
  margin: 0;
  padding-left: 1.2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.evening-list li {
  margin-bottom: 0.35rem;
}

/* =========================================
   GALLERY – INTRO & MASONRY GRID
========================================= */
.gallery-intro {
  padding-bottom: 2.5rem;
}

.gallery-intro .intro-headline {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
}

.gallery-intro .intro-script {
  font-size: clamp(2rem, 4vw, 3rem);
}

/* masonry layout */
.gallery-masonry {
  column-count: 2;
  column-gap: 1.1rem;
  column-fill: balance;
  margin-top: 2rem;
}

.gallery-tile {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.1rem;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  break-inside: avoid;
  position: relative;
  isolation: isolate;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  transform: scale(1) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.gallery-tile:hover img {
  transform: scale(1.08) translateZ(0);
  filter: brightness(1.06);
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.25s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  border-radius: 0.5rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  background: rgba(15, 23, 42, 0.7);
  color: #f9fafb;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  width: 38px;
  height: 38px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
}

.lightbox-next {
  right: 1.5rem;
}

.lightbox-nav:hover,
.lightbox-close:hover {
  background: rgba(248, 250, 252, 0.9);
  color: #000;
  transform: scale(1.05);
}

/* =========================================
   ABOUT PAGE CONTENT
========================================= */
.about-intro {
  text-align: center;
}

.about-script-heading {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--blue-deep);
  margin-bottom: 1rem;
}

.about-intro-text {
  max-width: 720px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}

.about-story h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-story p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

/* values section with image background */
.about-values-section {
  position: relative;
  padding: 5rem 1.5rem;
  background-image: url("https://images.pexels.com/photos/261204/pexels-photo-261204.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.about-values-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 21, 43, 0.45),
    rgba(0, 21, 43, 0.8)
  );
  z-index: 0;
}

.about-values-section .section-inner {
  position: relative;
  z-index: 1;
}

.about-values-heading {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.about-values-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.75rem;
}

.about-value-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.7rem 1.9rem;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.about-value-card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* glassy styling when inside background section */
.about-values-section .about-value-card {
  background: rgba(248, 243, 230, 0.333);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-mission,
.about-team {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-mission h2,
.about-team h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-mission p,
.about-team p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* OUR TEAM – text left, image right */
.about-team-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.about-team-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-team-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-team-photo img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  object-fit: cover;
}

/* Experience / CTA block */
.about-experience {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.about-experience h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-experience p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.about-experience .feature-button {
  margin-top: 1.2rem;
  background: #ffffff;
  color: var(--blue-deep);
  border-color: #ffffff;
}

/* FEELING SECTION – full-width image CTA */
.feeling-section {
  position: relative;
  padding: 5rem 1.5rem;
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.feeling-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.75)
  );
  z-index: 0;
}

.feeling-section .section-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}

.feeling-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.feeling-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #e5e7eb;
}

/* =========================================
   FAQS CONTENT
========================================= */
.faqs-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faqs-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.faqs-text {
  max-width: 640px;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.faqs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.faqs-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 1.25rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.3rem;
  transition: max-height 0.26s ease, padding-bottom 0.26s ease;
}

.faq-answer p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0.8rem 0 1.2rem;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 0.75rem;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-question:hover {
  background: rgba(31, 41, 55, 0.02);
}

/* =========================================
   LEGAL CONTENT (privacy / terms)
========================================= */
.legal-content {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #000000;
}

.legal-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35rem;
  font-weight: bolder;
  margin-top: 1.8rem;
  margin-bottom: 0.6rem;
  text-align: left;
}

.legal-content p {
  margin-bottom: 0.8rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.3rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.35rem;
}

.legal-content .legal-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* links on privacy / terms */
.privacy-section a,
.terms-section a {
  color: var(--blue-medium);
  font-weight: 600;
  text-decoration: none;
}

.privacy-section a:hover,
.terms-section a:hover {
  text-decoration: underline;
}

/* =========================================
   CONTACT PAGE LAYOUT
========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 4rem;
  align-items: flex-start;
  margin-top: 3.5rem;
}

.contact-info h2 {
  text-align: left !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info p,
.contact-info a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.contact-info a {
  color: var(--blue-medium);
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 0.35rem;
  border: 1px solid #ccc;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  margin-top: 0.8rem;
  padding: 0.7rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.map-container {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: -1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
}

.social-links a .icon svg {
  width: 17px;
  height: 17px;
  fill: var(--blue-medium);
  transition: 0.2s ease;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.3rem 0;
}

.contact-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(20%) sepia(18%) saturate(1500%) hue-rotate(180deg);
}

/* =========================================
   UNIVERSAL CAROUSEL HEIGHT UPGRADE
========================================= */
.carousel-container,
.room-carousel,
.amenity-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
}

.carousel-container img,
.room-carousel img,
.amenity-carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 0.75rem;
}

/* =========================================
   DARK THEME OVERRIDES
========================================= */
body.dark-theme {
  background: #020617;
  color: #e5e7eb;
}

body.dark-theme .main-header {
  background: #020617;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

body.dark-theme .nav {
  background: #020617;
}

body.dark-theme .nav-links > li > a {
  color: #e5e7eb;
}

body.dark-theme .nav-links > li > a::after {
  background: #ffffff;
}

body.dark-theme .nav-toggle-bar {
  background: #e5e7eb;
}

body.dark-theme .section {
  background: #020617;
}

body.dark-theme .section-alt,
body.dark-theme .page-hero {
  background-color: #040921;
}

body.dark-theme .card,
body.dark-theme .reservation-form,
body.dark-theme .contact-form {
  background: #020617;
  border: 1px solid #1f2937;
  box-shadow: none;
}

body.dark-theme input,
body.dark-theme select,
body.dark-theme textarea {
  background: #020617;
  color: #e5e7eb;
  border-color: #374151;
}

body.dark-theme input:focus,
body.dark-theme select:focus,
body.dark-theme textarea:focus {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.45);
}

body.dark-theme .section-intro,
body.dark-theme .page-hero p {
  color: #9ca3af;
}

body.dark-theme .footer {
  background: #000000;
}

body.dark-theme .intro-section {
  background: #020617;
  color: #e5e7eb;
}

body.dark-theme .intro-label,
body.dark-theme .feature-label {
  color: var(--ivory);
}

body.dark-theme .intro-script,
body.dark-theme .feature-script {
  color: var(--ivory);
}

body.dark-theme .intro-headline,
body.dark-theme .feature-headline {
  color: #e5e7eb;
}

body.dark-theme .intro-body,
body.dark-theme .feature-body {
  color: #9ca3af;
}

body.dark-theme .feature-section {
  background: #020617;
}

body.dark-theme .feature-button {
  border-color: var(--ivory);
  color: var(--ivory);
}

body.dark-theme .feature-button:hover {
  background: var(--ivory);
  color: #000;
}

body.dark-theme .testimonial-card {
  background: rgba(3, 7, 18, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

body.dark-theme .testimonial-quote {
  color: #e5e7eb;
}

body.dark-theme .testimonial-author {
  color: #f9fafb;
}

body.dark-theme .testimonial-meta {
  color: #9ca3af;
}

body.dark-theme .testimonial-nav {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
}

body.dark-theme .logo-tagline-section {
  background: #000000;
}

body.dark-theme .logo-tagline-text {
  color: var(--ivory);
}

body.dark-theme .four-tile-section {
  background: #000000;
}

body.dark-theme .gallery-hero::before,
body.dark-theme .amenities-hero::before,
body.dark-theme .rooms-hero::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.95)
  );
}

body.dark-theme .rooms-intro .intro-body-large,
body.dark-theme .rooms-intro .intro-body,
body.dark-theme .amenities-intro .intro-body-large,
body.dark-theme .amenities-intro .intro-body {
  color: #e5e7eb;
}

body.dark-theme .room-label {
  color: var(--ivory);
}

body.dark-theme .room-title {
  color: #e5e7eb;
}

body.dark-theme .room-lede,
body.dark-theme .room-description {
  color: #d1d5db;
}

body.dark-theme .room-price {
  color: #f9fafb;
}

body.dark-theme .room-features li {
  color: #e5e7eb;
}

body.dark-theme .final-rooms-cta p {
  color: #d1d5db;
}

body.dark-theme .evening-card p,
body.dark-theme .evening-list {
  color: #d1d5db;
}

body.dark-theme .gallery-tile {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

body.dark-theme .about-script-heading {
  color: #ffffff;
}

body.dark-theme .about-intro-text,
body.dark-theme .about-story p,
body.dark-theme .about-mission p,
body.dark-theme .about-team p {
  color: #d1d5db;
}

body.dark-theme .about-values-section .section-intro {
  color: #e5e7eb;
}

body.dark-theme .about-values-section .about-value-card {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

body.dark-theme .feeling-text {
  color: #f3f4f6;
}

body.dark-theme .about-values-heading {
  color: var(--ivory);
}

body.dark-theme .about-value-card {
  background: #020617;
  border: 1px solid #1f2937;
  box-shadow: none;
}

body.dark-theme .faq-item {
  background: #020617;
  border-color: #1f2937;
  box-shadow: none;
}

body.dark-theme .faq-question {
  color: #e5e7eb;
}

body.dark-theme .faq-answer p {
  color: #d1d5db;
}

body.dark-theme .faq-question:hover {
  background: rgba(148, 163, 184, 0.05);
}

body.dark-theme .legal-content {
  color: #d1d5db;
}

body.dark-theme .legal-content .legal-disclaimer {
  color: #9ca3af;
}

body.dark-theme .privacy-section a,
body.dark-theme .terms-section a {
  color: #73c0ff !important;
}

body.dark-theme .privacy-section a:hover,
body.dark-theme .terms-section a:hover {
  color: #b3e2ff !important;
}

body.dark-theme .contact-info p,
body.dark-theme .contact-info a {
  color: #dce1e7;
}

body.dark-theme .contact-form input,
body.dark-theme .contact-form textarea {
  background: #0f172a;
  border-color: #334155;
  color: #e5e7eb;
}

body.dark-theme .contact-form label {
  color: #e5e7eb;
}

body.dark-theme .social-links a .icon svg {
  fill: var(--ivory);
}

body.dark-theme .contact-icon {
  filter: brightness(300%);
}

body.dark-theme .faqs-heading {
  color: #e5e7eb;
}

body.dark-theme .faqs-text {
  color: #9ca3af;
}

body.dark-theme .privacy-hero::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.95)
  );
}

body.dark-theme .terms-hero::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.9)
  );
}

body.dark-theme .faqs-hero::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.95)
  );
}

body.dark-theme .logo-tagline-section,
body.dark-theme .four-tile-section {
  background: #000000;
}

/* =========================================
   RESPONSIVE RULES
========================================= */
@media (max-width: 1100px) {
  .header-inner {
    height: 83px;
    align-items: center;
  }

  .logo-block {
    position: relative;
    width: 130px;
    padding-top: 55px;
    z-index: 5000;
    margin-bottom: 0;
    min-width: 200px;
    padding-inline: 1.5rem;
  }

  .nav {
    padding-inline: 0.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: #ffffff;
    padding: 5rem 1.5rem 2rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease-out;
    z-index: 1200;
  }

  body.dark-theme .nav-links {
    background: #020617;
    border-color: #111827;
  }

  .nav-links.open {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links > li {
    padding-block: 0.3rem;
  }

  .mode-toggle {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .feature-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .four-tile-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 420px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-wrapper {
    order: -1;
  }


  .about-team-inner {
    grid-template-columns: 1fr;
  }

  .about-team-photo {
    order: -1;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    order: -1;
  }

  .rooms-intro .intro-body-large,
  .amenities-intro .intro-body-large {
    font-size: 1.3rem;
  }

  .testimonial-section {
    padding: 3.5rem 1rem;
  }

  .testimonial-card {
    min-height: fit-content;
    padding: 2.4rem 1.8rem;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-nav {
    top: auto;
    bottom: 1rem;
    transform: translateY(0);
  }

  .testimonial-prev {
    left: 35%;
  }

  .testimonial-next {
    right: 35%;
  }

  .faqs-grid {
    grid-template-columns: 1fr;
  }

  .carousel-container img,
  .room-carousel img,
  .amenity-carousel img {
    height: 420px;
  }
}

@media (max-width: 900px) {
  .nav-links li.nav-book-now {
    margin-top: 1.8rem;
  }

  .nav-links li:last-child {
    margin-top: 1.4rem;
  }
}

@media (max-width: 700px) {
  .gallery-masonry {
    column-count: 1;
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 600px) {
  .intro-section {
    padding: 3.5rem 1.4rem;
  }

  .intro-label {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .intro-script {
    font-size: 2.1rem;
    line-height: 1.2;
    margin: 0.6rem 0 0.5rem;
  }

  .intro-headline {
    font-size: 1.25rem;
    line-height: 1.45;
    margin-bottom: 1.4rem;
  }

  .intro-body {
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  .footer-links {
    justify-content: center;
    text-align: center;
    margin-top: -0.2rem;
  }

  .four-tile-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .four-tile-grid .tile {
    height: 220px;
  }

  .rooms-intro {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .rooms-intro .intro-body-large,
  .amenities-intro .intro-body-large {
    font-size: 1.15rem;
    line-height: 1.55;
  }

  .room-carousel-slide img {
    height: 240px;
  }

  .carousel-container img,
  .room-carousel img,
  .amenity-carousel img {
    height: 340px;
  }
}

/* prevent body scroll when mobile nav open */
body.nav-open {
  overflow: hidden;
}

/* =========================
   FIXES AFTER CSS CLEANUP
   ========================= */

body.dark-theme .nav-book-button {
  border-color: #fff;
  color: #fff;
}

body.dark-theme .nav-book-button:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
  transform: scale(1.06);
}

.about-values-section .about-values-heading,
.about-values-section .section-intro,
.about-values-section .about-value-card h3,
.about-values-section .about-value-card p {
  color: #ffffff;
}

body.dark-theme .about-values-section {
  background-image: url("https://images.pexels.com/photos/261204/pexels-photo-261204.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

body.dark-theme .feeling-section {
  background-image: url("https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
}

body.dark-theme .about-hero {
  background-image: url("https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg");
}

body.dark-theme .about-team-text p {
  color: #e5e7eb;
}


