/* 
   Royalistiq - Luxury Hotel & Resorts Design System
   Refined Typography, Warm Off-White, Gold Accent, and Deep Plum Palette
*/

@import url('https://fonts.googleapis.com/css2?family=Forum&family=Josefin+Sans:ital,wght@0,300;0,400;0,500;0,600&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* --- Design Tokens --- */
:root {
  --color-plum: #4a154b;
  --color-plum-hover: #370d37;
  --color-gold: #c5a880;
  --color-gold-light: #dfcfb9;
  --color-gold-dark: #a88e73;
  --color-cream: #fbf9f5;
  --color-cream-dark: #f5f0e6;
  --color-dark: #1e181c;
  --color-text: #2f2a2e;
  --color-text-light: #6e656b;
  --color-white: #ffffff;
  
  --font-heading: 'Forum', serif;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-nav: 'Josefin Sans', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.3s ease;
  
  --header-height: 80px;
}

/* --- Base & Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-cream);
  color: var(--color-text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  padding-top: var(--header-height); /* Offset for the sticky white header */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--color-plum);
}

p {
  line-height: 1.8;
  font-weight: 300;
  color: var(--color-text-light);
}

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

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

ul {
  list-style: none;
}

/* --- Layout Utilities --- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* Section Title Component */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold-dark);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-size: 2.8rem;
  line-height: 1.3;
 
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 15px auto 0 auto;
}

/* Button & CTA Components */
.btn-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  background-color: var(--color-plum);
  border: 1px solid var(--color-plum);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-luxury:hover {
  color: var(--color-white);
  border-color: var(--color-gold);
}

.btn-luxury:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Animated Border SVG Button */
.btn-svg-border {
  position: relative;
  width: 180px;
  height: 54px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-plum); /* White Header Style: Dark Text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-svg-border--wide {
  width: 228px;
}

.btn-svg-border span {
  position: relative;
  z-index: 2;
  transition: var(--transition-fast);
}

.btn-svg-border svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn-svg-border rect {
  fill: transparent;
  stroke: var(--color-plum);
  stroke-width: 1.5;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  transition: stroke 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-svg-border:hover rect {
  stroke: var(--color-gold);
}

.btn-svg-border:hover span {
  color: var(--color-gold);
}

/* Light background version of SVG button */
.btn-svg-border.dark-text {
  color: var(--color-plum);
}
.btn-svg-border.dark-text rect {
  stroke: var(--color-plum);
}
.btn-svg-border.dark-text:hover rect {
  stroke: var(--color-gold-dark);
}
.btn-svg-border.dark-text:hover span {
  color: var(--color-gold-dark);
}

/* --- Header & Navigation (Always White) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  transition: var(--transition-smooth);
}

.logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
  margin-bottom: 25px;
  object-fit: contain;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-plum);
  position: relative;
  padding: 10px 0;
  -webkit-font-smoothing: subpixel-antialiased;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.nav-link:hover {
  color: var(--color-gold);
}

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

.nav-link--book {
  background-color: var(--color-plum);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  padding: 12px 28px;
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition-fast);
}

.nav-link--book::after {
  display: none;
}

.nav-link--book:hover {
  background-color: var(--color-plum-hover);
  color: var(--color-gold-light);
}

.nav-link--active {
  color: var(--color-gold);
}

.nav-link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown styling */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 280px;
  background-color: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.2);
  padding: 20px 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.dropdown-link {
  display: block;
  padding: 10px 30px;
  font-family: var(--font-nav);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-light);
  transition: var(--transition-fast);
}

.dropdown-link:hover {
  background-color: var(--color-cream);
  color: var(--color-plum);
  padding-left: 35px;
}

/* Desktop Action elements */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Hamburger & Drawer */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 105;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background-color: var(--color-plum);
  transition: var(--transition-fast);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color-cream);
  z-index: 102;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mobile-menu-overlay.active {
  transform: translateY(0);
}

.mobile-nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-bottom: 50px;
}

.mobile-nav-link {
  font-family: var(--font-nav);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-plum);
}

.mobile-nav-link:hover {
  color: var(--color-gold-dark);
}

.mobile-nav-link--book {
  background: none;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-dark);
  cursor: pointer;
  margin-top: 20px;
  padding: 14px 40px;
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: var(--transition-fast);
}

.mobile-nav-link--book:hover {
  background-color: var(--color-gold);
  color: var(--color-dark);
}

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

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

.mobile-nav-sublink {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  transition: var(--transition-fast);
}

.mobile-nav-sublink:hover {
  color: var(--color-plum);
}

.mobile-nav-link.nav-link--active {
  color: var(--color-gold-dark);
}

/* --- Hero Section with Background Video --- */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  width: 100%;
  overflow: hidden;
  background-color: var(--color-dark);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(30, 24, 28, 0.45) 0%, rgba(30, 24, 28, 0.15) 60%, rgba(253, 251, 247, 1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 0 20px;
  text-align: center;
  margin-top: -30px; /* Offset to feel visually centered */
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 20px;
  color: var(--color-gold-light);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s;
}

.hero-title {
  font-size: 5rem;
  line-height: 1.1;
  max-width: 900px;
  margin-bottom: 30px;
  color: var(--color-white);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.8s;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 160px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-plum);
}

.scroll-indicator span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  color: var(--color-plum);
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: var(--color-plum);
  animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Welcome & Editorial Section (Asymmetric layout) --- */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.welcome-img-side {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 1px solid rgba(197, 168, 128, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.welcome-img-left {
  transform: translateY(-30px);
}

.welcome-img-right {
  transform: translateY(30px);
}

.welcome-text-center {
  padding: 0 20px;
  text-align: center;
}

.welcome-title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--color-plum);
}

.welcome-description {
  margin-bottom: 30px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.welcome-divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 30px auto;
}

/* --- Rooms Section --- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.room-card {
  position: relative;
  height: 550px;
  overflow: hidden;
  border: 1px solid rgba(197, 168, 128, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
}

.room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.room-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 24, 28, 0.9) 0%, rgba(30, 24, 28, 0.3) 60%, transparent 100%);
  z-index: 2;
  transition: var(--transition-smooth);
}

.room-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  z-index: 3;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.room-name {
  font-size: 2.2rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.room-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  margin-bottom: 25px;
  max-width: 480px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.room-card:hover .room-desc {
  opacity: 1;
  transform: translateY(0);
}

.room-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  font-weight: 500;
}

.room-link svg {
  width: 15px;
  height: 10px;
  fill: var(--color-gold);
  transition: transform 0.3s ease;
}

.room-link:hover svg {
  transform: translateX(5px);
}

/* --- Signature Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: rgba(197, 168, 128, 0.25);
  margin-top: 60px;
  border: 1px solid rgba(197, 168, 128, 0.25);
}

.service-card {
  background-color: var(--color-white);
  padding: 60px 40px;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  background-color: var(--color-cream);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 24, 28, 0.05);
  z-index: 2;
}

.service-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 30px auto;
  color: var(--color-gold-dark);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-gold-dark);
  stroke-width: 1.2;
  fill: none;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--color-plum);
}

.service-desc {
  font-size: 0.85rem;
  line-height: 1.8;
}

/* --- Weddings & Celebrations --- */
.weddings-section {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  background-color: var(--color-cream-dark);
  padding: 0;
  overflow: hidden;
}

.weddings-img {
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.weddings-content {
  padding: 80px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.weddings-content h2 {
  font-size: 3.5rem;
  margin-bottom: 25px;
}

.weddings-content p {
  margin-bottom: 40px;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* --- Interactive Reservation Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 24, 28, 0.7);
  backdrop-filter: blur(5px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-container {
  background-color: var(--color-cream);
  border: 1px solid var(--color-gold);
  width: 90%;
  max-width: 700px;
  padding: 50px;
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--color-plum);
  cursor: pointer;
  background: none;
  border: none;
}

.modal-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  border: 1px solid rgba(197, 168, 128, 0.4);
  background-color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  color: var(--color-text);
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-plum);
}

.modal-form button {
  grid-column: span 2;
  margin-top: 20px;
}

/* --- Booking Modal --- */
.booking-modal {
  max-width: 920px;
  padding: 0;
  overflow: hidden;
  border: none;
  box-shadow: 0 30px 80px rgba(30, 24, 28, 0.35);
}

.booking-modal .modal-close {
  color: var(--color-white);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.booking-modal .modal-close:hover {
  color: var(--color-gold);
}

.booking-modal-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 520px;
}

.booking-modal-aside {
  background: linear-gradient(160deg, var(--color-plum) 0%, var(--color-dark) 100%);
  color: var(--color-white);
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.booking-modal-aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light), var(--color-gold));
}

.booking-modal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.booking-modal-title {
  font-size: 2.4rem;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.booking-modal-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin-bottom: 24px;
}

.booking-modal-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 30px;
}

.booking-modal-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-modal-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

.booking-modal-perks i {
  color: var(--color-gold);
  font-size: 0.85rem;
  width: 18px;
  text-align: center;
}

.booking-modal-body {
  background-color: var(--color-cream);
  padding: 45px 40px 40px;
}

.booking-form {
  gap: 18px;
}

.booking-submit-btn {
  margin-top: 10px;
}

.page-section {
  padding-top: 50px;
}

/* --- About Page --- */
.about-page {
  background-color: var(--color-cream);
}

.about-story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  text-align: left;
}

.about-story-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-text);
}

.about-text {
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.about-lead strong {
  color: var(--color-plum);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-values-section {
  background-color: var(--color-cream-dark);
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-values-section .services-grid {
  margin-top: 0;
}

.about-directors-block {
  
  padding-top: 55px;
  border-top: 1px solid rgba(197, 168, 128, 0.25);
}

.about-directors-block .section-title-wrapper {
  margin-bottom: 40px;
}

.about-directors-intro {
  max-width: none;
  margin: -20px 0 60px;
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--color-text-light);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 260px;
  padding: 8px;
  background-color: var(--color-white);
  border: 1px solid rgba(197, 168, 128, 0.45);
  box-shadow: 0 15px 40px rgba(30, 24, 28, 0.08);
  margin-bottom: 24px;
  position: relative;
}

.team-photo-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(197, 168, 128, 0.25);
  pointer-events: none;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--color-cream-dark) 0%, var(--color-white) 100%);
  color: var(--color-gold-dark);
  font-size: 2.5rem;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--color-plum);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.team-role {
  font-family: var(--font-nav);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold-dark);
}

/* --- Room Gallery Page --- */
.room-gallery-page .section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.room-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  margin-top: calc(var(--header-height) * -1);
  padding-top: var(--header-height);
}

.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 24, 28, 0.88) 0%, rgba(30, 24, 28, 0.35) 55%, rgba(30, 24, 28, 0.15) 100%);
}

.room-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 40px 70px;
  max-width: 760px;
}

.room-hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 18px;
}

.room-hero-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.9;
  max-width: 620px;
}

.room-gallery-section {
  background-color: var(--color-cream);
}

.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.room-gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.room-gallery-item--featured {
  grid-column: auto;
  grid-row: auto;
}

.room-gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(197, 168, 128, 0.2);
  background: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(30, 24, 28, 0.06);
}

.room-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.room-gallery-item--featured .room-gallery-img {
  min-height: 0;
}

.room-gallery-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 24, 28, 0.35);
  color: var(--color-white);
  font-size: 1.4rem;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.room-gallery-trigger:hover .room-gallery-img,
.room-gallery-trigger:focus-visible .room-gallery-img {
  transform: scale(1.06);
}

.room-gallery-trigger:hover .room-gallery-hover,
.room-gallery-trigger:focus-visible .room-gallery-hover {
  opacity: 1;
}

.room-gallery-caption {
  flex: 1;
  margin-top: 12px;
  min-height: 2.4em;
  font-size: 0.78rem;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
}

.room-amenities-section {
  background-color: var(--color-cream-dark);
}

.room-amenities-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.room-amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

.room-amenity-item i {
  color: var(--color-gold-dark);
  margin-top: 4px;
  font-size: 0.8rem;
}

.room-details-section {
  background-color: var(--color-cream);
}

.room-details {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.room-details .section-title {
  margin-bottom: 30px;
}

.room-details-text p {
  font-size: 0.95rem;
  line-height: 1.95;
  margin-bottom: 1em;
}

.room-details-text p:last-child {
  margin-bottom: 0;
}

.room-long-stay-section {
  background-color: var(--color-cream-dark);
  padding-top: 0;
  padding-bottom: 100px;
}

.room-long-stay-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 64px;
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-cream) 100%);
  border: 1px solid rgba(197, 168, 128, 0.28);
  box-shadow: 0 20px 50px rgba(30, 24, 28, 0.06);
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.room-long-stay-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(30, 24, 28, 0.09);
}

.room-long-stay-content {
  max-width: 620px;
  margin: 0 auto;
}

.room-long-stay-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  color: var(--color-plum);
  margin: 14px 0 18px;
}

.room-long-stay-title::after {
  content: '';
  display: block;
  width: 44px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 18px auto 0;
}

.room-long-stay-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.room-cta-section {
  background-color: var(--color-cream);
  padding-bottom: 120px;
}

/* --- Coming Soon Page --- */
body.coming-soon-layout {
  padding-top: 0;
}

.coming-soon-page {
  background-color: var(--color-cream);
  min-height: 100vh;
}

.coming-soon-brand {
  display: flex;
  justify-content: center;
  padding: 40px 20px 10px;
}

.coming-soon-logo {
  height: 48px;
  width: auto;
  display: block;
}

.coming-soon-hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.coming-soon-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.coming-soon-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.15;
  color: var(--color-plum);
  margin-bottom: 0;
}

.coming-soon-divider {
  width: 50px;
  height: 1px;
  background-color: var(--color-gold);
  margin: 22px auto 28px;
}

.coming-soon-description {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--color-text-light);
}

.coming-soon-map-section {
  background-color: var(--color-cream-dark);
  padding-top: 60px;
  padding-bottom: 100px;
}

.coming-soon-address {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.coming-soon-address i {
  color: var(--color-gold-dark);
}

.coming-soon-map-card {
  border: 1px solid rgba(197, 168, 128, 0.3);
  box-shadow: 0 20px 50px rgba(30, 24, 28, 0.07);
  overflow: hidden;
  background-color: var(--color-white);
}

.coming-soon-map {
  width: 100%;
  height: 480px;
  z-index: 1;
}

.coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
}

.room-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.room-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-plum);
  margin: 12px 0 18px;
}

.room-cta-text {
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.9;
}

.room-not-found {
  text-align: center;
}

.room-not-found-text {
  max-width: 560px;
  margin: 20px auto 0;
  font-size: 0.95rem;
}

.room-not-found-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin: 40px 0;
}

.room-not-found-links a {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-plum);
}

.room-not-found-links a:hover {
  color: var(--color-gold-dark);
}

.room-not-found-actions {
  display: flex;
  justify-content: center;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(30, 24, 28, 0.92);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox:not([hidden]) {
  display: flex;
}

.gallery-lightbox-stage {
  max-width: min(1100px, 92vw);
  width: 100%;
  text-align: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border: 1px solid rgba(197, 168, 128, 0.25);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: galleryLightboxFade 0.35s ease;
}

@keyframes galleryLightboxFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.gallery-lightbox-caption {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-lightbox-close:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(30, 24, 28, 0.45);
  color: var(--color-white);
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-lightbox-nav:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

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

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

/* --- Scroll Animation Classes --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Footer --- */
.footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(197, 168, 128, 0.2);
}

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

.footer-col h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-white);
  outline: none;
  font-size: 0.85rem;
  font-family: var(--font-body);
}

.newsletter-form button {
  padding: 0 20px;
  background-color: var(--color-gold);
  border: none;
  color: var(--color-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.newsletter-form button:hover {
  background-color: var(--color-gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background-color: rgba(197, 168, 128, 0.05);
}

/* --- Media Queries (Responsiveness) --- */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
  .welcome-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  .welcome-img-right {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 80px 0;
  }
  .nav-menu, .header-actions {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .room-card {
    height: 450px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 40px 20px;
  }
  .weddings-section {
    grid-template-columns: 1fr;
  }
  .weddings-img {
    min-height: 400px;
  }
  .weddings-content {
    padding: 50px 30px;
  }
  .weddings-content h2 {
    font-size: 2.8rem;
  }
  .room-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .room-amenities-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .welcome-img-left {
    transform: translateY(0);
    order: 2;
  }
  .welcome-text-center {
    order: 1;
    margin-bottom: 30px;
  }
  .modal-container {
    padding: 30px 20px;
  }
  .booking-modal {
    padding: 0;
  }
  .booking-modal-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .booking-modal-aside {
    display: none;
  }
  .booking-modal-body {
    padding: 50px 20px 30px;
  }
  .booking-modal .modal-close {
    color: var(--color-plum);
  }
  .modal-form {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .modal-form button {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .team-photo-frame {
    max-width: 280px;
  }
  .about-story-grid {
    gap: 24px;
  }
  .room-hero {
    min-height: 60vh;
  }
  .room-hero-content {
    padding: 60px 20px 50px;
  }
  .room-long-stay-card {
    padding: 36px 22px;
  }
  .room-long-stay-section {
    padding-bottom: 70px;
  }
  .room-gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-lightbox {
    padding: 16px;
  }
  .gallery-lightbox-nav {
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-prev {
    left: 10px;
  }
  .gallery-lightbox-next {
    right: 10px;
  }
  .coming-soon-title {
    font-size: 2.4rem;
  }
  .coming-soon-map {
    height: 360px;
  }
  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }
}
