﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&amp;family=Rubik:wght@400;500;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&amp;family=Inter:wght@400;600;800&amp;display=swap');

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

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
background-color: #F1EEE7; /* Light beige background matching the vintage feel */
  color: #333;
 
}


h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  
}
/* --- 3D GRAND ENTRANCE PRELOADER --- */
#wildwood-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1500px; /* Essential for 3D depth */
  overflow: hidden;
}

/* Background Panels (The Doors) */
.preloader-door {
  position: absolute;
  top: 0;
  width: 50.5%; /* Overlap slightly to prevent a gap in the middle */
  height: 100%;
  background: #2B4C7E; /* Brand Forest Green */
  transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1), opacity 1s ease;
  z-index: -1;
}

.door-left { left: 0; transform-origin: left; }
.door-right { right: 0; transform-origin: right; }

/* Reveal Wrapper for Logo & Text */
.reveal-wrapper {
  position: relative;
  text-align: center;
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

/* Logo "Liquid Fill" Effect */
.logo-frame {
  position: relative;
  width: 280px;
  margin: 0 auto 35px;
}

.loader-logo {
  width: 100%;
  height: auto;
  display: block;
}

.loader-logo.silhouette {
  filter: brightness(0) invert(0.15); /* Faint Obsidian silhouette */
  opacity: 0.4;
}

.logo-fill-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%; /* Animated via JS */
  overflow: hidden;
  transition: height 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 15px rgba(184, 134, 11, 0.4));
}

.loader-logo.color-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 280px;
}

/* Typography & Florida Greeting */
#florida-greeting {
  font-family: 'Cormorant Garamond', serif;
  color: #FDFBF7; /* Heritage Parchment */
  font-size: 46px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.location-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.location-box .line {
  height: 1px;
  background: #3D6098; /* Heritage Gold */
  width: 0;
  transition: width 1.2s ease 0.8s;
}

.location-stamp {
  font-family: 'Inter', sans-serif;
  color: #4A6A8A; /* Coastal Blue */
  font-size: 13px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- EXIT ANIMATIONS --- */
.preloader-active .location-box .line { width: 50px; }

.preloader-hidden .door-left {
  transform: rotateY(-95deg); /* Swing open left */
  opacity: 0;
}

.preloader-hidden .door-right {
  transform: rotateY(95deg); /* Swing open right */
  opacity: 0;
}

.preloader-hidden .reveal-wrapper {
  transform: translateZ(300px) scale(1.2); /* 3D Zoom forward */
  opacity: 0;
  filter: blur(15px);
}
/* ===== TOPBAR ===== */ 
.topbar {
  background-color: #2B4C7E;
  color: #ffffff;
  position: relative;
  z-index: 1100;
  font-size: 14px;
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  flex-wrap: wrap;
}

.topbar-left i {
  color: #ffffff;
  font-size: 16px;
}

.topbar-left span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #ffffff;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar-right i {
  color: #ffffff;
  font-size: 16px;
}

.topbar-right a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.topbar-right a:hover {
  color: #8DA9C4; /* A warm gold to reflect accents */
}

@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ===== HEADER (Wildwood Inn color scheme) ===== */
.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #2B4C7E;
  padding: 12px 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}

/* Solid color appears after scrolling */
.main-header.scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Logo Image */
.logo-img {
  height: 60px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 50.0)) brightness(1.8);
  transition: transform 0.3s ease, filter 0.3s ease, height 0.3s ease;
}

.main-header.scrolled .logo-img {
  height: 50px;
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.7)) brightness(1.5);
}

/* Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-list a {
  color: #ffffff; /* White text */
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  position: relative;
  letter-spacing: 0.3px;
  font-size: 18px;
}

/* Underline effect on hover and active links */
.nav-list a::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #8DA9C4; /* Yellow-orange underline for a warm effect */
  width: 0;
  transition: width 0.3s ease;
  margin-top: 5px;
}

.nav-list a:hover::after,
.nav-list a.active::after {
  width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
  color: #fff; /* Yellow-orange color for active or hover state */
}

/* Book Now Button in Desktop Nav */
.nav-book-btn {
  display: inline-block;
  background: #2B4C7E;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 13px;
  transition: background .3s ease, transform .2s ease, box-shadow .3s ease;
  border: 2px solid rgba(255,255,255,0.3);
  white-space: nowrap;
}
.nav-book-btn:hover {
  background: #fff;
  color: #2B4C7E !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: #fff;
}
.nav-book-btn::after {
  display: none !important;
}


/* Responsive (mobile) */
@media (max-width: 900px) {
  .nav-list {
    display: none;
  }
}

/* ===== HEADER CONTAINER ADJUSTMENT ===== */
.left-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Hamburger Styling */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 6px;
}

.hamburger:hover {
  color: #8DA9C4; /* Warm gold hover color */
  transform: scale(1.1);
}

/* Align Hamburger with Logo on Mobile/Tablets */
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  .nav-list,
  .social-icons {
    display: none;
  }
  .left-header {
    justify-content: space-between;
    width: 100%;
  }
  .header-container {
    justify-content: space-between;
  }
}

/* Optional tweak for small phones */
@media (max-width: 600px) {
  .logo-img {
    height: 50px;
  }
  .hamburger {
    font-size: 24px;
  }
}

/* On mobile: since topbar is hidden, move header to very top */
@media (max-width: 768px) {
  .main-header {
    top: 0;
    margin-top: 0;
    padding: 10px 0;
  }
}

/* ===== BACKGROUND OVERLAY ===== */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 1500;
}

.menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}
/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100%;
  background: url('../images/new/exterior.jpg') no-repeat center center/cover; /* Background Image */
  background-size: cover;
  background-position: center center;
  color: #fff;
  z-index: 2000;
  opacity: 0;
  transition: all 0.7s cubic-bezier(.25,.8,.25,1);
  box-shadow: -12px 0 25px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px) saturate(120%);
  overflow-y: auto;
  /* Apply a fade effect with a gradient overlay */
  background:linear-gradient(rgb(43 76 126 / 60%), rgb(61 96 152 / 90%), rgb(2 2 3)), url(../images/new/exterior.jpg) no-repeat center center / cover;
}

/* Sliding Background Animation */
@keyframes bgFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.mobile-menu-overlay.open {
  right: 0;
  opacity: 1;
}

/* Inner wrapper */
.mobile-menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 35px 30px;
  animation: menuSlideIn 0.7s ease forwards;
}

@keyframes menuSlideIn {
  from {opacity: 0; transform: translateX(60px);}
  to {opacity: 1; transform: translateX(0);}
}

/* ===== HEADER ===== */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 12px;
}

.mobile-menu-header img {
  height: 70px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  animation: logoReveal 0.8s 0.3s forwards ease;
  opacity: 0;
  transform: scale(0.9);
}

@keyframes logoReveal {
  to {opacity:1; transform:scale(1);}
}

.close-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: transform 0.4s ease, color 0.3s ease;
}

.close-menu:hover {
  transform: rotate(180deg);
  color: #fff;
}

/* ===== NAVIGATION ===== */
.mobile-nav-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 30px;
}

.mobile-nav-list li {
  position: relative;
}

.mobile-nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  padding: 12px 18px 12px 32px;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  line-height: 1.3;
}

.mobile-nav-list a i {
  font-size: 1.1rem;
  width: 22px;
  text-align: center;
  color: #8DA9C4; /* Yellow for icon */
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  left: -5px;
}

/* Hover animation + motion */
.mobile-nav-list a:hover {
  color: #fff;
  transform: translateX(6px);
  background-color: rgba(255, 255, 255, 0.15); /* Light overlay on hover */
  padding-left: 35px;
}

.mobile-nav-list a:hover i {
  color: #fff;
  transform: scale(1.2);
}

/* ===== FOOTER ===== */
.mobile-menu-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  text-align: center;
}

.mobile-phone {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
}

.mobile-book-btn {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: background .3s ease, border-color .3s ease;
  backdrop-filter: blur(4px);
}

.mobile-book-btn:hover {
  background: #fff;
  color: #2B4C7E;
  border-color: #fff;
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(74,144,226,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(74,144,226,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,144,226,0); }
}

/* Updated Navigation - No Dropdown */
.mobile-nav-list a:hover {
  color: #fff;
  background-color: #8DA9C4; /* Highlight color */
  padding-left: 35px;
}

/* Footer Address Styling */
.mobile-address {
  margin-top: 15px;
  font-size: 14px;
  color: #ddd;
}

.mobile-address i {
  color: #8DA9C4;
  margin-right: 6px;
}

@media(max-width:600px){
  .mobile-menu-content { padding: 30px 25px; }
  .mobile-nav-list a { font-size: 18px; }
}
/* =========================================
   MONOLITH SIDEBAR — HIDDEN (replaced by sticky top nav)
   ========================================= */
.monolith-sidebar {
  display: none !important;
}

.monolith-sidebar.show {
  left: 0;
}

.sidebar-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
}

/* Branding Section */
.sidebar-brand {
  margin-bottom: 60px;
  text-align: left;
}

.brand-logo {
  height: 80px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}

.brand-line {
  width: 40px;
  height: 2px;
  background: #3D6098;
  margin-top: 20px;
}

/* Modern Navigation */
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 10px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  color: #000; /* Warm Parchment */
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  padding: 12px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(248, 245, 240, 0.05);
}

.nav-num {
  
  font-size: 10px;
  color: #000;
  margin-right: 15px;
  letter-spacing: 2px;
  font-weight: 700;
}

.sidebar-nav a:hover, 
.sidebar-nav a.active {
  color: #3D6098;
  padding-left: 10px;
  border-bottom-color: #3D6098;
}

/* Footer Section */
.sidebar-footer {
  margin-top: auto;
  padding-top: 40px;
}

.sidebar-address {
  font-style: normal;
  font-size: 17px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 25px;
}

.sidebar-socials {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.sidebar-socials a {
  color: #000;
  font-size: 16px;
  transition: color 0.3s ease;
}

.sidebar-socials a:hover {
  color: #3D6098;
}

.sidebar-copyright {
  font-size: 9px;
  letter-spacing: 2px;
  color:#000;
  text-transform: uppercase;
}

/* Hide on Mobile - use a different menu style for mobile */
@media (max-width: 991px) {
  .monolith-sidebar { display: none; }
}

/* Cinematic Hero Slider - Clean, Organized & Mobile Optimized */
/* Cinematic Hero Section Fix */
.cinematic-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
  margin-top: -140px;
  opacity: 0.8; /* Slight opacity to make the background more visible */
}

/* Optional: You can add a darker overlay to the hero background to help make the text and logo stand out */
.cinematic-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Darker overlay */
  z-index: 0;
}
.slides {
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.2) rotate(0.5deg);
  filter: brightness(0.85);
  transition: transform 18s ease, filter 2s ease;
}
.slide.active .slide-bg {
  transform: scale(1) rotate(0);
  filter: brightness(1);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 31, 61, 0.75), rgba(0, 0, 0, 0.7));
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 1100px;
  width: 100%;
  z-index: 5;
  padding: 40px 20px;
  box-sizing: border-box;
  text-transform: uppercase;
}
.slide-content h1 {
  font-size: clamp(30px, 4.5vw, 65px);
  line-height: 1.15;
  margin-bottom: 30px;
  text-shadow: 0 5px 25px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  letter-spacing: 1px;
  word-wrap: break-word;
  font-weight:400;
 
}
.slide-content p {
  font-size: clamp(10px, 1.5vw, 22px);
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.5s ease 0.4s;
  text-shadow: 0 3px 15px rgba(0,0,0,0.6);
}
.slide-content p:first-child {
  font-size: clamp(11px, 1.2vw, 15px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #D4E4F7;
  margin-bottom: 10px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s ease 0.1s;
}
.slide.active p:first-child {
  opacity: 1;
  transform: translateY(0);
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #2B4C7E, #8DA9C4); /* Forest green to gold gradient */
  padding: 18px 50px;
  border-radius: 60px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 1.5s ease 0.8s, background 0.4s;
  box-shadow: 0 6px 20px rgba(74,144,226,0.5);
}
.btn-primary:hover {
  background: linear-gradient(90deg, #8DA9C4, #2B4C7E); /* Inverse gradient for hover */
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(74,144,226,0.7);
}
.slide.active h1,
.slide.active p,
.slide.active .btn-primary {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Scroll Down */
.scroll-down {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  animation: bounce 2.5s infinite ease-in-out;
  z-index: 10;
}
.scroll-down:hover {
  border-color: #8DA9C4; /* Hover border color to gold */
  color: #8DA9C4; /* Hover icon color to gold */
}
.scroll-down i {
  font-size: 32px;
  line-height: 54px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(20px); }
}
/* Social Left - With Shadow & Background */
.social-left {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 15;
  padding: 20px 10px;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.social-icon {
  color: #fff;
  font-size: 30px;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s, color 0.3s;
}
.social-icon:hover {
  opacity: 1;
  transform: scale(1.3) rotate(15deg);
  color: #4A90E2;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* Responsive */
@media (max-width: 1200px) {
  .slide-content { max-width: 95%; width: 95%; }
  .slide-content h1 { font-size: clamp(25px, 4vw, 50px); }
  .social-icon {
    font-size: 20px;
  }
  .slide-indicators span { font-size: 20px; }
  .slide-indicators span.active {
    opacity: 1;
    color: #8DA9C4;
    transform: scale(1.2);
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .cinematic-hero { height: 40vh; min-height: 600px; margin-top:-150px;}
  .slide-content { top: 55%; padding: 20px; max-width: 90%; }
  .slide-content h1 { font-size: 25px; margin-bottom: 20px; }
  .slide-content p { font-size:17px; margin-bottom: 40px; }
  .btn-primary { padding: 14px 40px; font-size: 10px; }
  .slide-indicators { right: 20px; gap: 15px; }
  .slide-indicators span { font-size: 18px; }
  .slide-indicators span.active { font-size: 36px; }
  .scroll-down { width: 50px; height: 50px; bottom: 40px; }
  .scroll-down i { font-size: 28px; line-height: 46px; }
  .social-left { display: none; }
  .social-icon { display: none; }
}
@media (max-width: 480px) {
  .cinematic-hero { height: 40vh; min-height: 500px;margin-top:-150px; }
  .slide-content h1 { font-size:25px; }
  .slide-content p { font-size: 18px; }
}
/* Updated Slide Indicators */
.slide-indicators {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.slide-indicators span {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.4s, transform 0.4s;
}

.slide-indicators span img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  transition: transform 0.4s, border-color 0.4s, opacity 0.4s;
}

.slide-indicators span.active img {
  border-color: #4A90E2;
  opacity: 1;
  transform: scale(1.2);
}

/* On hover */
.slide-indicators span:hover img {
  opacity: 1;
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
  .slide-indicators {
    flex-direction: row;
    top: auto;
    bottom: 100px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .slide-indicators span img {
    width: 35px;
    height: 35px;
  }
}
/* =========================================
   WELCOME MODERN SECTION - COMPLETE CSS
========================================= */
.welcome-modern {
  background-color: #f8f5f0;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.wm-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  align-items: stretch;
  height: 650px; /* FIXED HEIGHT: Section will not stretch */
  position: relative;
  
  border-radius: 24px;
  overflow: hidden; /* Clips the internal sliders */
}

/* --- LEFT SIDE: MEDIA STAGE --- */
.wm-media-stage {
  position: relative;
  background: #000;
  overflow: hidden;
}

.wm-image-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.wm-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wm-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
}

/* VIDEO LAYER (Hidden by default) */
.wm-video-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: #000;
  transform: translateY(100%); /* Slides up from bottom */
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

#wm-player-container {
  width: 100%;
  height: 100%;
}

#wm-player-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Close Video Button */
.wm-close-video {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.wm-close-video:hover {
  background: #fff;
  color: #000;
  transform: rotate(90deg);
}

/* --- RIGHT SIDE: CONTENT CARD --- */
.wm-content-card {
  background: #f8f5f0;
  position: relative;
  padding: 0; /* Padding is handled by internal views */
  overflow: hidden;
}

.wm-content-slider {
  display: flex;
  width: 200%; /* Two views side-by-side */
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

.wm-view-main, .wm-view-details {
  width: 50%;
  height: 100%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
}

/* MAIN VIEW ELEMENTS */
.wm-eyebrow {
  color: #3D6098;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}

.wm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.wm-title span { font-style: italic; color: #2B4C7E; }

.wm-lead {
  font-size: 19px;
  line-height: 1.6;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 20px;
}

.wm-description p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}

.wm-actions {
  margin-top: auto; /* Pushes buttons to bottom */
  display: flex;
  align-items: center;
  gap: 40px;
}

/* READ MORE ACTION */
.wm-btn-more {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 20px 40px;
 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s ease;
}

.wm-btn-more:hover {
  background: #3D6098;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(184, 134, 11, 0.3);
}

.wm-play-link {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #1a1a1a;
  font-weight: 700;
}

.play-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: 0.3s;
}

.wm-play-link:hover .play-circle {
  background: #3D6098;
  color: #fff;
  border-color: #3D6098;
}

/* --- READ MORE (SCROLLABLE) VIEW --- */
.wm-view-details {
  background: #fcfbf9; /* Slightly different tint for the details view */
}

.wm-btn-back {
  background: none;
  border: none;
  color: #3D6098;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wm-scroll-area {
  flex: 1;
  overflow-y: auto;
  padding-right: 25px;
}

/* Custom Scrollbar for Read More Area */
.wm-scroll-area::-webkit-scrollbar { width: 3px; }
.wm-scroll-area::-webkit-scrollbar-track { background: transparent; }
.wm-scroll-area::-webkit-scrollbar-thumb { background: #3D6098; }

.wm-scroll-area h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: #1a1a1a;
  margin: 30px 0 15px 0;
}

.wm-scroll-area h3:first-child { margin-top: 0; }

.wm-scroll-area p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* --- STATE TRIGGERS --- */
/* Slide to Read More */
.read-active .wm-content-slider {
  transform: translateX(-50%);
}

/* Slide Video Layer Up */
.video-active .wm-video-layer {
  transform: translateY(0);
}

.video-active .wm-image-layer {
  transform: scale(1.1);
  filter: blur(10px);
}

/* RESPONSIVE FIXES */
@media (max-width: 1024px) {
  .wm-container {
    grid-template-columns: 1fr;
    height: auto; /* Allow auto height on mobile for better usability */
    min-height: 800px;
  }
  .wm-media-stage { height: 400px; border-radius: 24px 24px 0 0; }
  .wm-content-card { border-radius: 0 0 24px 24px; height: 500px; }
  .wm-view-main, .wm-view-details { padding: 40px; }
  .wm-title { font-size: 38px; }
}
.editorial-marquee {
  background-color: #f8f5f0;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* MARQUEE ROWS */
.marquee-row {
  width: 100%;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.track-left { animation: scrollLeft 60s linear infinite; }
.track-right { animation: scrollRight 40s linear infinite; }

.marquee-row span {
 
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
}

/* Back Layer: Large, Faint, Solid */
.row-back span {
  font-size: 180px;
  color: rgba(0, 0, 0, 0.03);
}

/* Front Layer: Smaller, Gold Outline, Floating */
.row-front {
  position: absolute;
  z-index: 5;
  pointer-events: none; /* Allows clicking things behind it */
}

.row-front span {
  font-size: 100px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 134, 11, 0.3);
}

/* CENTER HERO BLOCK */
.marquee-hero {
  position: absolute;
  z-index: 3;
  text-align: center;
  background: #f8f5f0; /* Matches BG to "cut" through the back text */
  padding: 40px 80px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.05);
  border: 1px solid rgba(184, 134, 11, 0.1);
}

.hero-tag {
  color: #3D6098;
  text-transform: uppercase;
  letter-spacing: 8px;
  font-size: 12px;
  display: block;
  margin-bottom: 10px;
}

.hero-main-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  color: #1a1a1a;
  margin: 0;
  font-style: italic;
}

/* ANIMATIONS */
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .row-back span { font-size: 80px; }
  .row-front span { font-size: 50px; }
  .hero-main-text { font-size: 36px; }
  .marquee-hero { padding: 20px 40px; }
}
.rooms-showcase {
  background-color: #f8f5f0;
  padding: 40px 0;
  overflow: hidden;
}

.showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 80px;
  padding: 0 5%;
}

/* CONTENT STYLES */
.sc-eyebrow {
  color: #3D6098;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}

.showcase-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  color: #1a1a1a;
  margin-bottom: 20px;
  transition: opacity 0.4s ease;
}

.sc-tags {
  font-size: 13px;
  color: #666;
  border-left: 2px solid #3D6098;
  padding-left: 15px;
  margin-bottom: 30px;
}

.showcase-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.sc-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  font-size: 15px;
  color: #1a1a1a;
  font-weight: 500;
}

.sc-meta i { color: #3D6098; margin-right: 8px; }

/* NAVIGATION */
.sc-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.sc-cta {
  padding: 18px 45px;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.sc-cta:hover { background: #3D6098; }

.sc-controls button {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(0,0,0,0.1);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
}

.sc-controls button:hover {
  background: #fff;
  border-color: #3D6098;
  color: #3D6098;
}

/* VISUAL STAGE */
.showcase-visual {
  position: relative;
  height: 600px;
}

.visual-main-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 40px 40px 0px -10px #ffffff, 40px 40px 0px -9px rgba(0,0,0,0.05);
}

.visual-main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.visual-decoration-box {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid #3D6098;
  z-index: 1;
}

/* MOBILE */
@media (max-width: 1024px) {
  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .showcase-visual { height: 400px; order: -1; }
  .showcase-content h2 { font-size: 44px; }
}

/* =========================================
   ROOM TYPES SECTION
========================================= */
.room-types-section {
  background: #f8f5f0;
  padding: 80px 0;
  text-align: center;
}

.room-types-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

.room-types-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  color: #3D6098;
  font-weight: 600;
  margin-bottom: 15px;
}

.room-types-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: #1A1F3D;
  margin-bottom: 20px;
  font-weight: 400;
}

.room-types-desc {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.room-types-desc a {
  color: #2B4C7E;
  text-decoration: underline;
  font-weight: 600;
}

.room-types-desc a:hover {
  color: #1A1F3D;
}

.room-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.room-type-card {
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.room-type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.room-type-img {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.room-type-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-type-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  color: #1A1F3D;
  padding: 12px 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, color 0.3s ease;
}

.room-type-card:hover .room-type-label {
  background: #2B4C7E;
  color: #fff;
}

.room-types-book-btn {
  display: inline-block;
  background: #2B4C7E;
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px solid #2B4C7E;
  transition: background 0.3s ease, color 0.3s ease;
}

.room-types-book-btn:hover {
  background: transparent;
  color: #2B4C7E;
}

@media (max-width: 768px) {
  .room-types-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .room-types-title {
    font-size: 34px;
  }
  .room-type-img {
    height: 250px;
  }
}

.premium-amenities {
  background-color: #f8f5f0;
  padding: 120px 0;
  color: #2c2c2c;
  /* Removed overflow:hidden to ensure sticky works */
}

.amenities-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: row; /* Desktop: List Left, Intro Right */
  gap: 80px;
}

/* RIGHT SIDE: Sticky Intro - Fixed logic */
.amenities-intro {
  flex: 1;
}

.sticky-box {
  position: -webkit-sticky;
  position: sticky;
  top: 150px; /* Adjust based on your header height */
  height: auto;
}

.amenities-intro .label {
  color: #3D6098;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 11px;
  font-weight: 700;
  display: block;
  margin-bottom: 25px;
}

.amenities-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  line-height: 1.1;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.gold-accent-line {
  width: 60px;
  height: 3px;
  background: #3D6098;
  margin-top: 30px;
}

/* LEFT SIDE: The Modern Cards */
.amenities-list {
  flex: 1.4;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenity-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px; /* Minimalist sharp luxury look */
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.row-number {
  font-family: monospace;
  color: #3D6098;
  font-weight: 600;
  font-size: 14px;
}

.row-status {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  border: 1px solid #eee;
  padding: 4px 12px;
  border-radius: 2px;
}

.card-body {
  display: flex;
  align-items: center;
  gap: 30px;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #f8f5f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: #1a1a1a;
  transition: all 0.4s ease;
}

.card-body h3 {
 
  font-size: 24px;
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.5px;
}

.card-footer-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: #3D6098;
  transition: width 0.5s ease;
}

/* --- EXPERT HOVER EFFECT --- */
.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border-color: transparent;
}

.amenity-card:hover .icon-box {
  background: #3D6098;
  color: #fff;
  transform: rotateY(360deg);
}

.amenity-card:hover .card-footer-line {
  width: 100%;
}

.amenity-card:hover .row-status {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* MOBILE RESPONSIVE */
@media (max-width: 991px) {
  .amenities-wrapper {
    flex-direction: column-reverse; /* Put title back on top for mobile */
    gap: 50px;
  }
  .sticky-box {
    position: relative;
    top: 0;
  }
  .amenity-card {
    padding: 30px;
  }
  .amenities-intro h2 {
    font-size: 42px;
  }
}
/* =========================================
   ATTRACTION HIGHLIGHT - COMPLETE CSS
========================================= */

.attraction-highlight {
  position: relative;
  height: 120vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  background-color: #141729; /* Deep Forest Green Base */
  display: flex;
}

/* Background Image Layer (Controlled by JS for Swapping) */
.attraction-bg {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  /* Smooth transition for background swaps */
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s ease-out;
  filter: brightness(0.6) contrast(1.1);
}

/* Persistent Vignette to guarantee text readability */
.bg-vignette {
  position: absolute;
  inset: 0;
  /* Multi-stage gradient for deep atmospheric depth */
  background: linear-gradient(to top, 
    rgba(18, 26, 22, 0.95) 0%, 
    rgba(18, 26, 22, 0.4) 40%, 
    rgba(18, 26, 22, 0.1) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Overlay Wrapper for the Columns */
.attraction-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  height: 100%;
  width: 100%;
}

/* Individual Interactive Columns */
.attraction-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px 40px;
  cursor: pointer;
  position: relative;
  text-align: left;
  /* Spring-like transition for the expansion */
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  border-right: 1px solid rgba(248, 245, 240, 0.1); /* Subtle Parchment Border */
  overflow: hidden;
}

.attraction-row:last-child {
  border-right: none;
}

/* Column Inner Content */
.card-content {
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 400px;
}

/* Typography Styling */
.attraction-row .type {
  display: block;
  
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 12px;
  text-transform: uppercase;
  color: #3D6098; /* Burnished Gold Accent */
  font-weight: 700;
  opacity: 0.8;
}

.attraction-row h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; /* Large Editorial Title */
  font-weight: 400;
  color: #f8f5f0; /* Warm Parchment White */
  margin: 0 0 15px 0;
  line-height: 1.1;
  letter-spacing: -0.5px;
  transition: color 0.4s ease, transform 0.4s ease;
}

/* Hidden Explore Link with Arrow Icon */
.explore-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
 
  font-size: 13px;
  color: #f8f5f0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.explore-link i {
  color: #3D6098;
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* --- THE HOVER MAGIC --- */

/* Column Expansion & Frosted Glass Effect */
.attraction-row:hover {
  flex: 1.8; /* Expands significantly */
  background: rgba(18, 26, 22, 0.6); /* Tinted dark overlay */
  backdrop-filter: blur(12px); /* Premium Glassmorphism */
  -webkit-backdrop-filter: blur(12px);
}

.attraction-row:hover .card-content {
  transform: translateY(0);
}

.attraction-row:hover h3 {
  color: #ffffff;
}

.attraction-row:hover .explore-link {
  opacity: 1;
  transform: translateY(0);
}

.attraction-row:hover .explore-link:hover i {
  transform: translateX(8px); /* Arrow micro-interaction */
}

/* Background Image Zoom on Hover */
.attraction-highlight:hover .attraction-bg {
  transform: scale(1.05);
}

/* --- MOBILE RESPONSIVE --- */

@media screen and (max-width: 991px) {
  .attraction-row h3 { font-size: 32px; }
}

@media screen and (max-width: 768px) {
  .attraction-highlight {
    height: auto;
    min-height: 800px;
  }
  .attraction-overlay {
    flex-direction: column;
  }
  .attraction-row {
    flex: none;
    height: 250px; /* Fixed height for mobile stacks */
    padding: 40px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    background: rgba(18, 26, 22, 0.85); /* Solidify for readability on small screens */
  }
  .attraction-row:hover {
    flex: none; 
    height: 300px; /* Slight height increase instead of width */
  }
  .card-content {
    transform: none;
  }
  .explore-link {
    opacity: 1;
    transform: none;
  }
}
/* =========================================
   STICKY SPLIT-SCREEN GALLERY - COMPLETE
========================================= */

.sticky-gallery {
  position: relative;
  height: 500vh; /* 100vh per slide */
  background: #141729; /* Deep Obsidian Green - Matches your branding */
  color: #f8f5f0; /* Warm Parchment White */
  overflow: clip; /* Prevents unwanted horizontal scroll */
}

.sticky-gallery-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
}

/* --- CENTRAL SCROLL TIMELINE --- */
.split-timeline {
  position: absolute;
  left: 40%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(184, 134, 11, 0.15); /* Faint gold track */
  z-index: 10;
}

.timeline-fill {
  width: 100%;
  background: #3D6098; /* Burnished Gold */
  height: 0%; 
  transition: height 0.2s ease-out;
  box-shadow: 0 0 10px rgba(184, 134, 11, 0.5);
}

/* --- SLIDE CONTAINERS --- */
.gallery-image {
  position: absolute;
  inset: 0;
  display: flex;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-image.active {
  pointer-events: auto;
  z-index: 2;
  opacity: 1;
}

/* DYNAMIC ACCENTS (Hospitality Palette) */
.gallery-image[data-accent="gold"] { --accent: #3D6098; }
.gallery-image[data-accent="blue"] { --accent: #3D6098; }
.gallery-image[data-accent="teal"] { --accent: #2B4C7E; } /* Forest Green */
.gallery-image[data-accent="sand"] { --accent: #6B8DB5; }

/* --- LEFT SIDE: CONTENT (SLIDES UP) --- */
.gallery-content {
  width: 40%;
  height: 100vh;
  padding: 0 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #1C2340; /* Subtle lighter green for panel depth */
  border-right: 1px solid rgba(248, 245, 240, 0.05);
  
  transform: translateY(100%); 
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- RIGHT SIDE: IMAGE FRAME (SLIDES DOWN) --- */
.gallery-frame {
  width: 60%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: #000;
  transform: translateY(-100%);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 2.5s ease;
}

/* --- ACTIVE STATE ANIMATIONS --- */
.gallery-image.active .gallery-content {
  transform: translateY(0);
}

.gallery-image.active .gallery-frame {
  transform: translateY(0);
}

.gallery-image.active .gallery-frame img {
  transform: scale(1);
}

/* --- TYPOGRAPHY --- */
.gallery-badge {
 
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.gallery-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.gallery-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  line-height: 1.05;
  color: #f8f5f0;
  margin-bottom: 25px;
}

.gallery-content p {
  font-size: 16px;
  color: rgba(248, 245, 240, 0.55);
  line-height: 1.8;
  max-width: 420px;
}

.gallery-cta {
  margin-top: 35px;
  padding: 15px 35px;
  border: 1px solid var(--accent);
  color: var(--accent);
 
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-cta:hover {
  background: var(--accent);
  color: #141729;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* --- COLLAGE GRID (Slide 5) --- */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: 100%;
  gap: 12px; /* Gaps match the grid layout in your image */
  background: #141729;
  padding: 12px;
}

.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: filter 0.5s ease;
}

/* --- MOBILE & TABLET RESPONSIVE --- */
@media (max-width: 1024px) {
  .sticky-gallery { height: 400vh; }
  
  .gallery-image { flex-direction: column-reverse; }
  
  .gallery-content {
    width: 100%;
    height: 45vh;
    padding: 40px;
    background: #141729;
    transform: translateX(-100%);
    border-right: none;
  }

  .gallery-frame {
    width: 100%;
    height: 55vh;
    transform: translateX(100%);
  }

  .gallery-image.active .gallery-content,
  .gallery-image.active .gallery-frame {
    transform: translateX(0);
  }

  .gallery-content h3 { font-size: 34px; }
  
  .split-timeline {
    left: auto;
    right: 20px;
    top: 20px;
    height: 100px;
    width: 2px;
    background: rgba(184, 134, 11, 0.2);
  }
}

@media (max-width: 600px) {
  .gallery-content { padding: 30px 20px; height: 50vh; }
  .gallery-frame { height: 50vh; }
  .gallery-content h3 { font-size: 28px; }
  .gallery-content p { font-size: 14px; line-height: 1.6; }
  
  .collage-grid {
    gap: 6px;
    padding: 6px;
  }
}

/* --- HERITAGE FOOTER (FULL UPDATED VERSION) --- */
.heritage-footer {
 
  border-top: 4px solid #2B4C7E; /* Site Header Green */
  background-color: #fdfbf7; /* Layout Off-White */
  position: relative;
  overflow: hidden;
}

/* BIG BACKGROUND WATERMARK */
.footer-watermark {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 10vw;
  font-weight: 600;
  color: rgba(13, 19, 16, 0.04); /* Faint Obsidian #141729 */
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
  animation: watermarkFade 2s ease-out forwards;
}

@keyframes watermarkFade {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.footer-top-wrap {
  padding: 80px 0;
}

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

/* --- BRAND & IDENTITY --- */
.f-logo {
  height: 90px;
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.f-tagline {
  color: #444;
  line-height: 1.8;
  font-size: 18px; /* Increased Font Size */
  margin-bottom: 30px;
}

.f-socials a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: #141729; /* Obsidian */
  color: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  transition: 0.4s ease;
  text-decoration: none;
}

.f-socials a:hover {
  background: #2B4C7E;
  transform: translateY(-3px);
}

/* --- HEADINGS --- */
.f-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; /* Increased Font Size */
  color: #141729;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
}

.f-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #3D6098; /* Gold Accent */
}

/* --- QUICK LINKS WITH BULLETS --- */
.link-split { display: flex; gap: 40px; }

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullet-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 18px; /* Increased Font Size */
}

.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3D6098; /* Gold Bullet */
  font-size: 20px;
  line-height: 1;
}

.bullet-list a {
  text-decoration: none;
  color: #333;
  transition: 0.3s ease;
}

.bullet-list a:hover {
  color: #2B4C7E;
  padding-left: 5px;
}

.gold-link { color: #3D6098 !important; font-weight: 700; }

/* --- CONTACT SECTION --- */
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.icon-gold { color: #3D6098; font-size: 20px; }

.contact-item p, .contact-item a {
  font-size: 18px; /* Increased Font Size */
  line-height: 1.6;
  color: #333;
  text-decoration: none;
}

.f-tel { font-weight: 800; color: #141729 !important; }

.f-times {
  margin-top: 35px;
  background: #141729;
  color: #fff;
  padding: 20px 25px;
  border-radius: 6px;
  font-size: 16px;
}
.f-times p { margin: 5px 0; }

/* --- LEGAL BOTTOM BAR --- */
.footer-bottom-bar {
  background: #141729;
  color: rgba(255, 255, 255, 0.6);
  padding: 45px 0 35px;
  font-size: 14px;
  border-top: 1px solid rgba(184, 134, 11, 0.2);
}

.f-ownership {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  opacity: 0.9;
}

.bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-wrap a, .f-credit a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.legal-wrap a:hover, .f-credit a:hover { color: #3D6098; }
.sep { margin: 0 10px; color: #3D6098; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-watermark { font-size: 22vw; top: 12%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-watermark { display: none; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .f-heading::after { left: 50%; transform: translateX(-50%); }
  .link-split { justify-content: center; }
  .bullet-list li { padding-left: 0; }
  .bullet-list li::before { display: none; }
  .contact-item { justify-content: center; }
  .bottom-flex { flex-direction: column; gap: 20px; text-align: center; }
}



/* 2. Adjust the Hero to fill the space behind the header */
.inner-hero {
  position: relative;
  height: 50vh; /* Increased height to account for header space */
  min-height: 500px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add padding-top roughly equal to your header height 
     to keep content visually centered */
  padding-top: 80px; 
  background-color: #1A1F3D;
  margin-top:-140px;
}

.inner-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner-overlay {
  position: absolute;
  inset: 0;
  /* Darker gradient at the top to make white menu text readable */
  background:linear-gradient(to bottom, rgb(26 31 61 / 90%) 0%, rgb(26 31 61 / 60%) 40%, rgb(0 0 0 / 85%) 100%);
  z-index: 2;
}

.inner-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #ffffff;
}

.inner-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #D4E4F7;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.inner-title {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
}

/* Gold Divider */
.inner-divider {
  width: 60px;
  height: 2px;
  background-color: #3D6098;
  margin: 25px auto;
}

.inner-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #f0f0f0;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .inner-hero {
    height: 45vh;
  }
  .inner-title {
    font-size: 2.8rem;
  }
  .inner-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .inner-desc {
    font-size: 1rem;
    max-width: 90%;
  }
}

/* --- Wildwood Inn Ledger Amenities Section --- */
.steward-ledger {
  /* Updated to a cleaner, more modern dark green gradient background */
  background-image: url('../images/new/background.html');
  background-size: cover;
  background-attachment: fixed;
  padding: 20px 5%;
  font-family: 'Playfair Display', serif;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Updated to match your layout's Forest Green */
  border: 6px double #1A1F3D; 
  padding: 60px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
}

/* Header Styling */
.ledger-header { 
  text-align: center; 
  margin-bottom: 50px; 
}

.header-flourish { 
  font-size: 32px; 
  color: #3D6098; /* Wildwood Gold */
  margin-bottom: 15px; 
}

.ledger-header h2 { 
  font-size: clamp(2.2rem, 5vw, 3.5rem); 
  color: #1A1F3D; /* Dark Forest Green */
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 3px;
  font-weight: 700;
}

.ledger-subtitle { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.95rem; 
  letter-spacing: 4px; 
  color: #3D6098; /* Gold accent */
  font-weight: 600; 
  margin: 15px 0; 
  text-transform: uppercase;
}

.ledger-intro-text { 
  max-width: 900px; 
  margin: 25px auto; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.1rem; 
  color: #444; 
  line-height: 1.8; 
}

.ledger-line { 
  height: 2px; 
  width: 100px; 
  background: #3D6098; 
  margin: 30px auto; 
}

/* Grid & Panel Layout */
.ledger-grid { 
  display: flex; 
  gap: 30px; 
  align-items: stretch; 
}

.ledger-panel { 
  flex: 1; 
  border: 1px solid #e0e4e1; 
  padding: 40px 30px; 
  position: relative; 
  background: #fff;
  transition: all 0.4s ease;
}

/* Highlighted Center Panel */
.ledger-panel.highlight {
  background: linear-gradient(rgba(26, 31, 61, 0.95), rgba(26, 31, 61, 0.9));
  color: #ffffff;
  border: 1px solid #3D6098;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid rgba(61, 96, 152, 0.4); 
  padding-bottom: 25px; 
  margin-bottom: 30px; 
}

.panel-head i { 
  font-size: 28px; 
  color: #3D6098; 
  margin-bottom: 15px; 
  display: block; 
}

.panel-head h3 { 
  font-size: 1.6rem; 
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1.5px; 
}

.panel-tag { 
  display: block; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.8rem; 
  color: #777; 
  text-transform: uppercase; 
  margin-top: 10px; 
  letter-spacing: 1.5px;
}

.ledger-panel.highlight .panel-tag {
  color: #D4E4F7;
}

.ledger-panel.highlight .panel-head i {
  color: #8DA9C4;
}

.ledger-panel.highlight .panel-head h3 {
  color: #ffffff;
}

/* Subgroups & Internal Lists */
.ledger-subgroup h4 { 
  font-size: 0.95rem; 
  color: #1A1F3D; 
  text-transform: uppercase; 
  margin: 30px 0 15px; 
  border-bottom: 2px solid #3D6098; 
  padding-bottom: 5px;
  display: inline-block;
  letter-spacing: 1px;
}

.ledger-items li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333; 
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
}

.ledger-items li::before {
  content: "✦"; /* Modern star/diamond */
  color: #3D6098;
  font-size: 12px;
  margin-right: 12px;
}

/* Featured Center List (Red Panel) */
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.feature-list i { 
  color: #D4E4F7; 
  width: 40px; 
  font-size: 18px; 
  text-align: center;
}

.ledger-subgroup-alt h4 { 
  color: #D4E4F7; 
  font-size: 0.9rem; 
  text-transform: uppercase; 
  margin-top: 35px; 
  letter-spacing: 2px;
}

.ledger-subgroup-alt p { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 14px; 
  color: #ffffff; 
  line-height: 1.8; 
  margin-top: 12px;
}

/* Safety Footer */
.ledger-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #e0e4e1;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #666;
}

.ledger-footer i {
  color: #1A1F3D;
  margin-right: 8px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .ledger-grid { flex-direction: column; gap: 40px; }
  .ledger-panel.highlight { transform: none; order: -1; }
}
/* --- Popular Facilities Ribbon --- */
.popular-facilities-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background: #fdfdfd; /* Clean white-off background */
  border-top: 1px solid #3D6098; /* Wildwood Gold accent */
  border-bottom: 1px solid #3D6098;
  max-width: 1000px;
  transition: all 0.3s ease;
}

.popular-facilities-bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A1F3D; /* Forest Green from your layout */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.popular-facilities-bar i {
  color: #3D6098; /* Gold Icons */
  font-size: 1.2rem;
}

/* Subtle hover effect for the whole bar */
.popular-facilities-bar:hover {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Hover effect for individual items */
.popular-facilities-bar span:hover {
  color: #2B4C7E; /* Forest green accent on hover */
}

/* Responsive Scaling for Tablets and Phones */
@media (max-width: 768px) {
  .popular-facilities-bar {
    gap: 15px;
    padding: 15px 10px;
  }
  
  .popular-facilities-bar span {
    font-size: 0.8rem;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .popular-facilities-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on small mobile */
    text-align: left;
  }
}

/* ============================================================
   THINGS TO DO - COMPLETE WILDWOOD INN STYLESHEET
   Forest Green: #1A1F3D | Accent: #2B4C7E | Gold: #3D6098
   ============================================================ */

/* 1. SECTION CONTAINER */
.spotlight-section {
  background: linear-gradient(rgba(26, 31, 61, 0.85), rgba(26, 31, 61, 0.75)), 
              url('../images/new/background.html'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 20px 0; /* Vertical spacing */
  overflow: clip;
  font-family: 'Playfair Display', serif;
}

/* 2. SECTION HEADER (Title & Intro) */
.ttd-section-header {
  width: 100%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 40px auto;
  border: 6px double #1A1F3D; 
  background: #ffffff;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ttd-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #1A1F3D;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 3px;
  line-height: 1.1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}

.ttd-main-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  letter-spacing: 6px;
  color: #3D6098; 
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 12px; 
}

.ttd-main-intro {
  max-width: 1250px;
  margin: 25px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

.header-divider {
  width: 120px;
  height: 2px;
  background: #3D6098; 
  margin: 30px auto;
}

/* 3. MAIN SCROLLING WRAPPER */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  border: 6px double #1A1F3D; 
  background: #ffffff; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* 4. SCROLLING NARRATIVE COLUMN (LEFT) */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 60px;
}

.narrative-block {
  min-height: 90vh; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  opacity: 0.1; /* Faded when not in focus */
  transition: all 0.8s ease-in-out;
}

.narrative-block.active {
  opacity: 1; /* Fully visible when active */
}

.narrative-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #3D6098;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.narrative-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #2B4C7E; /* Forest Green */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin: 0;
}

.narrative-divider {
  width: 60px;
  height: 3px;
  background: #3D6098; 
  margin: 25px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #333333;
  max-width: 480px;
}

/* 5. STICKY VISUAL COLUMN (RIGHT) */
.spotlight-visuals {
  flex: 1.2;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  border-left: 1px solid #e0e4e1;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.spotlight-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 1.2s ease-out;
  transform: scale(1.1);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* 6. VERTICAL PROGRESS BAR */
.spotlight-progress {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 300px;
  width: 3px;
  background: #f0f0f0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  background: #2B4C7E; /* Forest Green Fill */
  border: 1px solid #3D6098; 
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 20%; /* Initial height */
}

.progress-total {
  position: absolute;
  bottom: -45px;
  left: -8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1A1F3D;
}

/* 7. RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .spotlight-section { padding: 40px 15px; }
  .spotlight-wrapper { 
    flex-direction: column; 
    border-width: 4px;
  }
  
  .ttd-section-header { 
    width: 100%;
    padding: 30px 15px; 
    border-width: 4px; 
  }

  .spotlight-visuals { 
    height: 50vh; 
    width: 100%;
    position: relative; /* Unsticks image on mobile for better UX */
    border-left: none;
    border-bottom: 2px solid #e0e4e1;
  }

  .spotlight-narrative { 
    width: 100%; 
    padding: 40px 20px; 
  }

  .narrative-block { 
    min-height: auto; 
    padding: 50px 0; 
    opacity: 1; /* Keep text visible on mobile */
  }

  .spotlight-progress { display: none; } /* Hide vertical bar on mobile */
}

/* ============================================================
   NEARBY LEDGER - WILDWOOD INN BRAND SYNC
   Forest Green: #1A1F3D | Accent: #2B4C7E | Gold: #3D6098
   ============================================================ */

.nearby-ledger-section { 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 60px 5%;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  /* Updated to Wildwood Forest Green Double Frame */
  border: 6px double #1A1F3D; 
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.nearby-grid {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #e0e4e1; /* Subtle sage/grey border */
  padding: 35px;
  background: #fff;
  transition: all 0.3s ease;
}

/* --- THE HIGHLIGHT PANEL (MAROON) --- */
/* Highlighted Panel */
.nearby-panel.highlight {
  background: #1A1F3D;
  color: #ffffff;
  border: 1px solid #3D6098;
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(26, 31, 61, 0.4);
  z-index: 2;
}

.nearby-panel.highlight .panel-heading {
  color: #D4E4F7;
  border-bottom-color: rgba(141, 169, 196, 0.5);
}

.nearby-panel.highlight .nearby-list li {
  color: #ffffff;
  border-bottom-color: rgba(255,255,255,0.15);
}

.nearby-panel.highlight .panel-heading i {
  color: #D4E4F7;
}

/* --- PANEL HEADINGS --- */
.panel-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #1A1F3D; /* Forest Green */
  border-bottom: 2px solid #3D6098; /* Gold Underline */
  padding-bottom: 15px;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  font-weight: 700;
}

.panel-heading i {
  color: #3D6098; /* Gold Icons */
  margin-right: 15px;
  font-size: 1.2rem;
}

/* --- LIST ITEMS --- */
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #333;
  transition: padding-left 0.3s ease;
}

.nearby-list li:hover {
  padding-left: 5px; /* Subtle interactive nudge */
}

.nearby-list li:last-child {
  border-bottom: none;
}

/* --- DISTANCE STYLING --- */
.distance {
  color: #1A1F3D; /* Forest Green for weight */
  background: #f4f4f4;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 15px;
  white-space: nowrap;
}

.nearby-panel.highlight .distance {
  color: #2B4C7E;
  background: #ffffff; /* Contrast against green */
}

/* ============================================================
   NEARBY SECTION - MOBILE & IPAD RESPONSIVE ONLY
   ============================================================ */

@media (max-width: 1024px) {
  .nearby-ledger-section {
    /* Reduce large side padding from desktop to fit screens */
    padding: 40px 15px; 
    background-attachment: scroll; /* Better performance on mobile browsers */
  }

  .ledger-container {
    /* Double frame slightly thinner for smaller screens */
    border-width: 4px;
    padding: 30px 15px;
    margin: 0 auto;
  }

  .nearby-grid {
    display: grid;
    /* Forces 2-column layout for iPads/Tablets */
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
    margin-bottom: 15px;
  }

  .nearby-panel {
    min-width: 0; /* Allows grid to shrink panels properly */
    padding: 20px 15px;
    /* Remove scale effects to prevent edge-clipping */
    transform: none !important; 
    box-shadow: none !important;
  }

  .panel-heading {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 15px;
  }

  .nearby-list li {
    padding: 10px 0;
    font-size: 0.85rem;
    /* Aligns distance to the top if text wraps */
    align-items: flex-start; 
  }

  .distance {
    font-size: 0.75rem;
    margin-left: 8px;
  }
}

/* --- Mobile Specific (Phones) --- */
@media (max-width: 600px) {
  .nearby-grid {
    /* Forces 1-column layout for Phones */
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .nearby-ledger-section {
    padding: 30px 10px;
  }

  .ledger-container {
    padding: 25px 10px;
  }
  
  .nearby-panel {
    padding: 18px 12px;
  }
}

/* --- Wildwood Inn Location Suite --- */
.antique-location-suite {
  /* Darker, nature-themed overlay for the texture */
  background: linear-gradient(rgba(26, 31, 61, 0.8), rgba(26, 31, 61, 0.8)), 
              url('../images/new/background.html'); 
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.desk-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* Updated Seal to Forest Green & Gold */
.antique-seal {
  position: absolute;
  top: -30px;
  right: 15%;
  width: 70px;
  height: 70px;
  background: #1A1F3D; /* Forest Green */
  border: 3px double #3D6098; /* Gold */
  border-radius: 50%;
  color: #3D6098;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Map Frame - Switched to Forest Green */
.map-parchment-frame {
  flex: 1.5;
  height: 650px;
  background: #ffffff;
  padding: 15px;
  border: 15px solid #1A1F3D; /* Wildwood Forest Green */
  box-shadow: 20px 30px 60px rgba(0,0,0,0.4);
  position: relative;
  transform: rotate(-0.5deg);
}

.parchment-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Ledger Card - Switched to Maroon Theme */
.ledger-overlay-card {
  flex: 0 0 450px;
  background: #2B4C7E; /* Forest green from the brand */
  padding: 45px;
  margin-left: -80px; 
  z-index: 10;
  box-shadow: 15px 15px 40px rgba(0,0,0,0.3);
  border: 1px solid #3D6098;
  position: relative;
  color: #ffffff; /* White text for contrast on maroon */
  transform: rotate(1deg);
}

.ledger-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: #3D6098; /* Gold */
  text-transform: uppercase;
  font-weight: 700;
}

.ledger-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ffffff;
  margin: 10px 0;
  font-weight: 700;
}

.ledger-seo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #f4eee1; /* Cream text for readability */
  margin-top: 15px;
  font-weight: 400;
}

.ledger-divider-ornate {
  height: 2px;
  background: linear-gradient(to right, transparent, #3D6098, transparent);
  margin: 25px 0;
}

.ledger-entry label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  color: #3D6098;
  letter-spacing: 2px;
  font-weight: 700;
}

.ledger-entry p {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #ffffff;
  margin: 5px 0 15px;
}

/* Form Styling */
.handwritten-input {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 25px;
  margin-top: 25px;
}

.handwritten-input input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #3D6098;
  padding: 10px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 20px;
  outline: none;
}

.handwritten-input input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Directions Button */
.brass-btn {
  width: 100%;
  background: #1A1F3D; /* Forest Green Button */
  color: #3D6098;
  border: 1px solid #3D6098;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.brass-btn:hover {
  background: #3D6098;
  color: #1A1F3D;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .desk-container { flex-direction: column; padding: 0 10px; }
  .map-parchment-frame { width: 100%; transform: none; height: 400px; border-width: 10px; }
  .ledger-overlay-card { 
    width: 100%; 
    margin-left: 0; 
    margin-top: -30px; 
    transform: none; 
    padding: 30px;
  }
}

/* --- Contact Page Redesign --- */
.contact-section {
  padding: 60px 5%;
  background: #F1EEE7;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
}
.contact-intro {
  text-align: center;
  margin-bottom: 50px;
}
.contact-intro h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  color: #1A1F3D;
  margin-bottom: 15px;
}
.contact-intro h2 span {
  color: #2B4C7E;
}
.contact-intro p {
  max-width: 750px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.contact-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #2B4C7E, #4E7AAF);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.contact-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #1A1F3D;
  margin: 0 0 6px 0;
}
.contact-card-body p {
  color: #666;
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}
.contact-card-body a {
  color: #2B4C7E;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.contact-card-body a:hover {
  color: #3D6098;
}
.contact-map-parchment {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-map-parchment .map-parchment-frame {
  width: 100%;
  height: 100%;
  min-height: 400px;
}
@media (max-width: 768px) {
  .contact-map-parchment .map-parchment-frame {
    height: 350px;
    min-height: 300px;
    border-width: 10px;
    transform: none;
  }
}
.contact-directions {
  background: #1A1F3D;
  padding: 35px 40px;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.contact-directions h3 {
  color: #3D6098;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin: 0 0 20px 0;
}
.contact-directions h3 i {
  margin-right: 10px;
}
.directions-form {
  display: flex;
  gap: 15px;
}
.directions-form input[type="text"] {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}
.directions-form input[type="text"]::placeholder {
  color: rgba(255,255,255,0.5);
}
.directions-form input[type="text"]:focus {
  border-color: #3D6098;
}
.directions-form button {
  padding: 14px 28px;
  background: #2B4C7E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s;
}
.directions-form button:hover {
  background: #3A5F8A;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 300px;
  }
  .directions-form {
    flex-direction: column;
  }
  .contact-directions {
    padding: 25px 20px;
  }
}

/* --- Wildwood Contact Suite Styling (legacy) --- */
.contact-ledger-suite {
  padding: 30px 5%;
  background: linear-gradient(rgba(26, 31, 61, 0.8), rgba(26, 31, 61, 0.8)), 
              url('../images/new/background.html'); 
  background-size: cover;
  background-attachment: fixed;
}

.ledger-outer-frame {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #e0e4e1;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.ledger-accent-sidebar {
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.ledger-main-content {
  flex: 1;
  padding: 60px;
}

.ledger-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #1A1F3D;
  margin-bottom: 15px;
}

.ledger-headline span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ledger-subtext {
  font-family: 'Montserrat', sans-serif;
  color: #666;
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 50px;
}

.ledger-details-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.item-meta {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.estate-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.ledger-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.3s;
}

.ledger-link:hover {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
  .ledger-details-row { grid-template-columns: 1fr; gap: 30px; }
  .ledger-main-content { padding: 40px 20px; }
  .ledger-accent-sidebar { width: 40px; }
}

/* --- Wildwood Sitemap Index Styling --- */
.sitemap-index-suite {
  padding: 40px 20px;
  background: linear-gradient(rgba(26, 31, 61, 0.8), rgba(26, 31, 61, 0.8)), 
              url('../images/new/background.html'); 
  background-size: cover;
  background-attachment: fixed;
}

.index-parchment {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border: 1px solid #e0e4e1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

.index-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #3D6098; /* Gold */
  font-weight: 700;
}

.index-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 10px 0 20px;
}

.index-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
}

.index-ornament {
  width: 60px;
  height: 3px;
  margin: 30px 0 50px;
}

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

.col-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.index-list {
  list-style: none;
  padding: 0;
}

.index-list li {
  margin-bottom: 15px;
}

.index-list a {
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  color: #444;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.index-list a:hover {
  color: #2B4C7E; /* Forest Green Hover */
  padding-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .index-columns { grid-template-columns: 1fr; }
  .index-parchment { padding: 40px 25px; }
  .index-title { font-size: 2.2rem; }
}

/* --- WILDWOOD INN FAQ LEDGER SUITE --- */
.faq-ledger-suite {
  background: #ffffff; /* Clean white for high legibility */
  padding: 100px 5%;
  border-top: 1px solid #e0e4e1; /* Subtle sage-grey border */
}

.faq-ledger-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* Sidebar Styling */
.faq-sidebar {
  flex: 0 0 350px;
}

.sidebar-sticky {
  position: sticky;
  top: 120px;
}

.faq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #3D6098; /* Wildwood Gold */
  display: block;
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #1A1F3D; /* Forest Green */
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-headline span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #2B4C7E; /* Forest Green Accent */
  text-transform: none; /* Keeps "Inn" elegant */
  letter-spacing: 0;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  opacity: 0.9;
}

.faq-stamp {
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: #1A1F3D;
  letter-spacing: 2px;
  border: 1px solid #3D6098; /* Gold Frame */
  display: inline-block;
  padding: 10px 20px;
  text-transform: uppercase;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: 0.3s;
}

.entry-no {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #3D6098; /* Gold */
  font-weight: 700;
  padding-top: 5px;
}

.faq-entry h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1A1F3D; /* Forest Green */
  margin-bottom: 15px;
  font-weight: 700;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}

.antique-link {
  color: #2B4C7E; /* Forest Green */
  text-decoration: none;
  font-weight: 700;
  margin-left: 10px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.antique-link:hover {
  color: #1A1F3D;
  border-bottom: 1px solid #1A1F3D;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .faq-ledger-wrapper { flex-direction: column; gap: 50px; }
  .faq-sidebar { flex: none; text-align: left; }
  .sidebar-sticky { position: static; }
  .faq-headline { font-size: 2.8rem; }
}

@media (max-width: 768px) {
  .faq-entry { flex-direction: column; gap: 10px; }
  .entry-no { font-size: 1.2rem; }
  .faq-headline { font-size: 2.4rem; }
}