﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Dancing+Script:wght@400&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;
 
}


/* ========== HEADER STYLING ========== */

.site-header {
  background: transparent; /* Transparent background */
  color: #F5F5F5;
  padding: 15px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
}

.logo {
  height: 150px;
}

.header-center {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  
}
/* Hamburger Styling */
.hamburger-wrapper {
  display: flex;
  align-items: center;
  margin-left: 16px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30px;  /* Increased height of the hamburger icon */
  width: 40px;   /* Increased width of the hamburger icon */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger .bar {
  width: 40px;  /* Increased the width of each bar */
  height: 5px;  /* Increased the height of each bar */
  background-color:#ffeb3b;  /* Keeping the warm yellow color */
  display: block;
  border-radius: 2px;
}


/* Menu Label Styling */
.menu-label {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #F5F5F5;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Phone and Reserve Button Styling */
.phone-link {
  color: #F5F5F5;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  text-decoration: none;
}

.phone-link:hover {
  color: #FFB300;
}

.reserve-btn {
  border: 2px solid #FFB300;
  background-color: transparent;
  padding: 8px 16px;
  color: #FFB300;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  transition: background 0.3s, color 0.3s;
  font-weight: 600;
}

.reserve-btn:hover {
  background-color: #FFB300;
  color: #000;
}

/* Mobile Styling */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 0;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
  }

  .logo {
    height: 60px;
  }

  .menu-label,
  .location {
    font-size: 12px;
  }

  .phone-link {
    font-size: 14px;
    margin-right: 15px;
  }

  .reserve-btn {
    font-size: 13px;
    padding: 6px 10px;
  }

  .header-center {
    display: none;
  }

  .header-right {
    justify-content: flex-end;
    width: 100%;
  }

  .hamburger-wrapper {
    margin-left: auto;
    margin-right: 16px;
  }
}

/* ========== SLIDE MENU STYLING ========== */
/* ========== SLIDE MENU STYLING ========== */

.slide-menu {
  position: fixed;
  top: 0;
  right: 0; /* Ensure the menu is aligned to the right corner */
  width: 360px;
  height: 100vh;
  display: flex;
  transition: right 0.3s ease, transform 0.5s ease; /* Both right and transform transitions */
  z-index: 1001;
  overflow: hidden;
  transform: translateX(100%); /* Start the menu completely off the right side */
}

.slide-menu.open {
  right: 0; /* Open menu position */
  transform: translateX(0); /* Menu will slide in from the right side */
}

.slide-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3);  /* Light overlay with transparency */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;  /* Fade in/out transition */
  z-index: 1000;
}

.slide-menu-overlay.active {
  opacity: 1;
  visibility: visible;  /* Show the overlay when active */
}

.menu-container {
  display: flex;
  height: 100vh;
}

.menu-main {
  position: relative;
  width: 360px;
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 40px 30px;
  background-color: #E3F2FD;  /* Light pastel blue background */
  overflow: hidden;
  z-index: 1;
  transform: scale(0.8);
  transform-origin: right center;
  animation: slideInFromRight 0.5s ease forwards; /* Menu animation */
}

.menu-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.92)),
    url('../images/new/historic-sevilla-house-front-yard.webp') center/cover no-repeat; /* Vintage background image */
  z-index: -1;
}

.menu-header {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ffffff;  /* Soft dark gray text */
  margin-bottom: 50px;
}

.menu-close {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff; /* Soft dark gray color */
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-close:hover {
  transform: rotate(90deg);
  color: #4CAF50; /* Soft green color on hover */
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: auto;
}

.menu-list::-webkit-scrollbar {
  display: none;
}

.menu-list li {
  margin: 25px 0;
}

.menu-list li a {
  color: #ffffff; /* Soft gray for normal text */
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 6px;
}

.menu-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  background: #FF9800; /* Light orange for hover accent */
  transition: width 0.3s ease;
}

.menu-list li a:hover::after {
  width: 100%;
  background: #FF5722; /* Dark orange for hover accent */
}

.menu-list li a:hover {
  color: #FF5722; /* Dark orange on hover */
}

.menu-footer {
  font-size: 12px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff; /* Light gray for footer text */
}

.menu-footer a {
  color: #4CAF50; /* Soft green color for links */
  text-decoration: none;
}

.menu-footer a:hover {
  text-decoration: underline;
  color: #FF5722; /* Hover color */
}

.menu-sub {
  display: none;
  margin-top: 10px;
  padding-left: 15px;
  border-left: 2px solid #444;
  animation: fadeInDown 0.3s ease forwards;
}

/* Show submenu on hover */
.has-submenu:hover > .menu-sub {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

/* Rotate arrow on hover */
.has-submenu:hover > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

.menu-sub li {
  margin: 8px 0;
}

.menu-sub a {
  font-size: 16px;
  color: #4CAF50; /* Green for submenu links */
  text-decoration: none;
  padding-left: 8px;
  transition: color 0.3s ease;
}

.menu-sub a:hover {
  color: #FF9800; /* Hover effect for submenu links */
}

.has-submenu > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.has-submenu.open > a .arrow {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

@keyframes slideInFromRight {
  from {
    transform: scale(0.8);
    right: -660px;
  }
  to {
    transform: scale(1);
    right: 0;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Core Hero Styles */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #4E8B8A; /* Teal background for the hero section */
}

.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease, visibility 1.5s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  animation: overlayPulse 6s ease-in-out infinite;
}

@keyframes overlayPulse {
  0%, 100% { background: rgba(0, 0, 0, 0.7); }
  50% { background: rgba(0, 0, 0, 0.55); }
}

/* TEXT CONTENT */
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  padding: 0 1rem;
  max-width: 800px;
  animation: textSlideIn 2s ease-out;
}

@keyframes textSlideIn {
  0% { transform: translate(-50%, -100%); }
  100% { transform: translate(-50%, -50%); }
}

.subtitle {
  font-family: 'Dancing Script', cursive; /* Retro script font */
  font-size: 1.8rem;
  color: #FFEB3B; /* Yellow for the subtitle */
  margin-bottom: 0.8rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.title {
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #F2A900; /* Deep yellow-orange for a vintage feel */
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.7);
}

.desc {
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1em;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.cta-btn {
  padding: 14px 28px;
  background:#f2a900; /* Tomato color for the CTA button */
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.3s ease;
  border-radius: 4px;
  letter-spacing: 2px;
  text-decoration:none;
}

.cta-btn:hover {
  background: #e04e32;
  color: #fff;
  transform: scale(1.1);
}

/* Vertical Nav Buttons */
.slide-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #FFEB3B; /* Yellow color for the nav buttons */
  background: transparent;
  cursor: pointer;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  z-index: 3;
  transition: all 0.3s ease;
}

.slide-prev {
  left: 0;
  border-right: 1px solid transparent;
  border-radius: 0 8px 8px 0;
  border-image: linear-gradient(to bottom, #FFEB3B, transparent, #FFEB3B) 1;
}

.slide-next {
  right: 0;
  border-left: 1px solid transparent;
  border-radius: 8px 0 0 8px;
  border-image: linear-gradient(to bottom, #FFEB3B, transparent, #FFEB3B) 1;
}

.slide-nav:hover {
  color: #fff;
  border-color: #fff;
}

/* Counter */
.counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: #f2a900; /* Tomato color for the counter */
  font-family: 'Georgia', serif;
  z-index: 3;
  user-select: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-slider {
   
    height: 50vh;
  }

  .title {
    font-size: 1.8rem;
  }

  .desc {
    font-size: 0.8rem;
  }

  .subtitle {
    font-size: 1rem;
  }
  .cta-btn {
  margin-top:10px;
  bottom:40px;
  font-size: 0.6rem;
  font-weight: 600;
 
}
/* Counter */
.counter {

  bottom: 0px;
  
}
}
/* =========================================
   Responsive Styles for iPad & Mobile 
   ========================================= */

/* For Tablets/iPads (1024px and below) */
@media screen and (max-width: 1024px) {
  .hero-slider {
    height: 50vh; /* Adjusts height to 50vh as requested */
  }

  .title {
    font-size: 3.5rem; /* Scales down the massive 5rem title */
  }

  .desc {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .slide-nav {
    width: 50px; /* Narrows the side navs to give text more room */
    font-size: 0.9rem;
  }
}

/* For Mobile Phones (768px and below) */
@media screen and (max-width: 768px) {
  .hero-text {
    width: 75%; /* Keeps text from touching the side nav arrows */
    padding: 0;
  }

  .subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .title {
    font-size: 2.2rem; /* Further scales down for mobile */
  }

  .desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .slide-nav {
    width: 35px; /* Makes side navs very thin on mobile */
    font-size: 0.75rem;
  }

  .counter {
    bottom: 15px; /* Tucks the counter in slightly */
    font-size: 1rem;
  }
}

/* Default for desktop */
.wave-divider {
  position: relative;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 100'><path fill='%23FFEB3B' d='M924 38c-19 16-71 24-202 0-37-7-81-13-122-10-44 4-76 14-92 27l-8 10-8-10c-16-13-48-23-91-27-41-3-85 3-122 10C148 62 95 54 76 38c-8-7-16-16-16-27 0 13 5 23 15 31 29 24 98 30 205 10 77-14 179-6 209 19 5 4 11 12 11 17 0-5 5-12 11-17 31-25 132-33 210-19 106 20 175 14 204-10 10-8 15-18 15-30 0 10-8 19-16 26Z'/></svg>") no-repeat center;
  background-size: cover;
  z-index: 2;
}

/* For tablets (iPads) */
@media (max-width: 1024px) {
  .wave-divider {
    height: 80px; /* Reduce the height for tablets */
    background-size: 150% 100%; /* Adjust the background size */
  }
}

/* For mobile devices */
@media (max-width: 768px) {
  .wave-divider {
    height: 60px; /* Further reduce height for mobile */
    background-size: 200% 100%; /* Adjust background size for better view */
  }
}
/* Welcome Section Background */
.holidayinn-welcome-section {
    background-color: #F1EEE7;  /* White background */
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
    
}

/* Main Container */
.holidayinn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.holidayinn-text {
    flex: 1;
    max-width: 1400px;
}

/* Subtitle */
.section-subtitle {
	font-family: 'Merriweather', serif; /* Retro script font */
    font-size: 20px;
    color: #00A9A5; /* Teal color for the subtitle */
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Main Title */
.section-title {
	
	 font-family: 'Dancing Script', cursive; /* Retro script font */
    font-size: 40px;
    color: #6f410d; /* Bright yellow color */
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Description */
.section-description {
    font-size: 20px;
    color: #4E3629; /* Dark brown for the text */
    margin-bottom: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

/* Read More Section */
.read-more-section {
    margin-top: 20px;
    position: relative;
}

#read-more-toggle {
    display: none;
}

.read-more-button {
    display: inline-block;
    background: linear-gradient(to right, #FFB300, #FFEB3B); /* Orange and yellow gradient */
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.read-more-button:hover {
    background: linear-gradient(to right, #FFEB3B, #FFB300); /* Inverted gradient on hover */
    color: #ffffff;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.5s ease;
    margin-top: 0;
    padding: 0;
    color: #2F2F2F;
    font-size: 20px;
    line-height: 1.6;
}

#read-more-toggle:checked ~ .read-more-content {
    max-height: 2000px;
    visibility: visible;
    padding-top: 20px;
}

.read-more-content h3 {
	font-family: 'Merriweather', serif; /* Retro script font */
    font-size: 24px;
    color: #00A9A5; /* Teal color for the headings in read more */
    margin-top: 25px;
    margin-bottom: 8px;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
    .holidayinn-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .read-more-content {
        font-size: 14px;
    }

    .read-more-button {
        width: 100%;
    }

    .read-more-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }

    .section-description {
        font-size: 14px;
    }

    .read-more-button {
        font-size: 14px;
        padding: 8px 14px;
    }

    .read-more-content {
        font-size: 13px;
    }

    .read-more-content h3 {
        font-size: 18px;
    }
}
/* ===== AMENITIES SECTION ===== */
.amenities-section {
  padding: 100px 8%;
  background: linear-gradient(90deg, #f0e5d9, #d2b39b); /* Soft pastel beige and light brown gradient */
  font-family: 'Montserrat', sans-serif;
  color: #5d4b3b; /* Dark brown text for contrast */
  border: 4px solid #a78d71; /* Soft brown/cream border for subtle separation */
}

/* ===== Container for both sections ===== */
.amenities-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap; /* Allow for wrapping on smaller screens */
}

/* ===== LEFT INTRO ===== */
.amenities-intro {
  flex: 1;
  max-width: 650px; /* Prevents content from stretching too wide */
}

.white {
  color: #2c8086;
  text-decoration: none;
}

.section-tag {
  color: #27848a; /* Soft beige for the tag */
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.amenities-intro h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 40px;
  color: #6f410d; /* Soft pastel brown for title */
 font-family: 'Dancing Script', cursive;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info .icon {
  font-size: 22px;
  color: #6f410d; /* Soft brown/cream color for icons */
  border: 2px solid #6f410d;
  padding: 12px;
  border-radius: 50%;
}

.contact-info small {
  color: #372612; /* Light beige color for small text */
  font-size: 16px;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #5d4b3b; /* Dark brown text for better contrast */
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

/* Individual amenity card */
.amenity-card {
  background: #f8ebe0; /* Soft pastel beige background */
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.amenity-card:hover {
  transform: translateY(-5px);
}

/* ===== CURTAINS (left + right) ===== */
.amenity-card::before,
.amenity-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(183, 157, 120, 0.15); /* Soft beige/brown curtain color */
  transition: transform 0.6s ease;
  z-index: 0;
}

.amenity-card::before {
  left: 0;
  transform: translateX(-100%);
}
.amenity-card::after {
  right: 0;
  transform: translateX(100%);
}

/* ===== CURTAINS (top + bottom) ===== */
.amenity-card .curtain-top,
.amenity-card .curtain-bottom {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(183, 157, 120, 0.15);
  transition: transform 0.6s ease;
  z-index: 0;
}

.amenity-card .curtain-top {
  top: 0;
  transform: translateY(-100%);
}
.amenity-card .curtain-bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* ===== HOVER EFFECT: All 4 curtains close ===== */
.amenity-card:hover::before { transform: translateX(0); }
.amenity-card:hover::after { transform: translateX(0); }
.amenity-card:hover .curtain-top { transform: translateY(0); }
.amenity-card:hover .curtain-bottom { transform: translateY(0); }

/* ===== CONTENT stays above curtains ===== */
.amenity-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ===== ICON (outlined pastel color) ===== */
.amenity-card .icon {
  flex-shrink: 0;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1.6px #a78d71; /* Soft brown outline for icons */
  transition: all 0.3s ease;
}

.amenity-card:hover .icon {
  color: #a78d71;
  -webkit-text-stroke: 0;
}

/* ===== TEXT ===== */
.amenity-card .text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #5d4b3b; /* Dark brown text for headings */
}

.amenity-card .text p {
  font-size: 17px;
  color: #777; /* Lighter gray for descriptions */
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet & below */
@media (max-width: 992px) {
  .amenities-container {
    flex-direction: column;       /* Stack intro on top */
    align-items: center;
    text-align: center;           /* Center text for better look */
    gap: 40px;
  }

  .contact-info {
    display: none;
  }

  .amenities-intro {
    max-width: 700px;             /* Keep it centered and readable */
  }

  .amenities-grid {
    grid-template-columns: 1fr;   /* One by one cards */
    width: 100%;
    max-width: 700px;
  }

  .amenity-card {
    text-align: left;             /* Keep content aligned inside card */
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .amenities-section {
    padding: 60px 6%;             /* Reduce padding */
  }

  .amenities-intro h2 {
    font-size: 28px;              /* Smaller heading */
  }

  .amenity-card .icon {
    font-size: 40px;              /* Smaller icon */
  }

  .amenity-card .text h3 {
    font-size: 18px;
  }
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%; /* Ensure grid spans full width */
}

/* Individual amenity card */
.amenity-card {
  background: #f0e5d8; /* Soft pastel beige background */
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden; /* Keep curtains inside */
  z-index: 1;
  text-align: center; /* Center text within the cards */
}

.amenity-card:hover {
  transform: translateY(-5px);
}

/* ===== CURTAINS (left + right) ===== */
.amenity-card::before,
.amenity-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(163, 198, 199, 0.15); /* Soft pastel blue curtain color */
  transition: transform 0.6s ease;
  z-index: 0;
}

.amenity-card::before {
  left: 0;
  transform: translateX(-100%);
}
.amenity-card::after {
  right: 0;
  transform: translateX(100%);
}

/* ===== CURTAINS (top + bottom) ===== */
.amenity-card .curtain-top,
.amenity-card .curtain-bottom {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(163, 198, 199, 0.15);
  transition: transform 0.6s ease;
  z-index: 0;
}

.amenity-card .curtain-top {
  top: 0;
  transform: translateY(-100%);
}
.amenity-card .curtain-bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* ===== HOVER EFFECT: All 4 curtains close ===== */
.amenity-card:hover::before { transform: translateX(0); }
.amenity-card:hover::after { transform: translateX(0); }
.amenity-card:hover .curtain-top { transform: translateY(0); }
.amenity-card:hover .curtain-bottom { transform: translateY(0); }

/* ===== CONTENT stays above curtains ===== */
.amenity-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  justify-content: center; /* Center content inside the cards */
}

/* ===== ICON (outlined pastel color) ===== */
.amenity-card .icon {
  flex-shrink: 0;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1.6px #a3c6c7; /* Soft blue outline for icons */
  transition: all 0.3s ease;
}

.amenity-card:hover .icon {
  color: #a3c6c7;
  -webkit-text-stroke: 0;
}

/* ===== TEXT ===== */
.amenity-card .text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3b3b3b; /* Soft dark text for headings */
}

.amenity-card .text p {
  font-size: 17px;
  color: #777; /* Lighter gray for descriptions */
  line-height: 1.6;
  margin: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet & below */
@media (max-width: 992px) {
  .amenities-container {
    flex-direction: column;       /* Stack intro on top */
    align-items: center;
    text-align: center;           /* Center text for better look */
    gap: 40px;
  }

  .contact-info {
    display: none;
  }

  .amenities-intro {
    max-width: 700px;             /* Keep it centered and readable */
  }

  .amenities-grid {
    grid-template-columns: 1fr;   /* One by one cards */
    width: 100%;
    max-width: 700px;
  }

  .amenity-card {
    text-align: left;             /* Keep content aligned inside card */
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .amenities-section {
    padding: 60px 6%;             /* Reduce padding */
  }

  .amenities-intro h2 {
    font-size: 28px;              /* Smaller heading */
  }

  .amenity-card .icon {
    font-size: 40px;              /* Smaller icon */
  }

  .amenity-card .text h3 {
    font-size: 18px;
  }
}

/* Main Section */
.accommodation-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  background-color: #f7f7f7; /* Optional for background */
}

/* Section Header */
.accommodation-header {
  margin-bottom: 60px;
}

.accommodation-header h2 {
  color: #29858c;
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.accommodation-header h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin: 0;
  color: #6f410d;
  font-family: 'Dancing Script', cursive;

}

/* Card Styles */
.accommodation-card {
  display: flex;
  align-items: stretch;
  margin-bottom: 80px;
  gap: 60px;
  background: #f8f6f2;
  border-radius: 12px;
  overflow: hidden;
}

.accommodation-card.reverse {
  flex-direction: row-reverse;
}

/* Room Images */


.accommodation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Room Info */
.accommodation-info {
  flex: 1;
  padding: 60px 50px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Text Styling */
.accommodation-info h3 {
  font-size: 2.4rem;
  margin: 0 0 8px;
  color: #6f410d;
  font-family: 'Playfair Display', serif;
}

.accommodation-subtitle {
  color: #29858c;
  font-size: 1.3rem;
  margin: 0 0 20px;
  font-weight: 500;
}

.accommodation-description {
  color: #666;
  line-height: 1.7;
  margin: 0 0 32px;
}

.accommodation-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.accommodation-highlights h4 {
  font-size: 1.3rem;
  margin: 0 0 12px;
  color: #6f410d;
}

.accommodation-highlights p {
  color: #555;
  margin: 0;
  line-height: 1.6;
}

.accommodation-book-btn {
  margin-top: 32px;
  background: #ffeb3b;
  color: #6f410d;
  border: none;
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  text-decoration:none;
}

.accommodation-book-btn:hover {
  background: #e76f51;
}

/* Scroll Animation for Cards */
@media (min-width: 768px) {
  .accommodation-card {
    opacity: 1;
    transform: translateY(0); /* Reveal cards on scroll */
  }

  .accommodation-card:nth-child(even) {
    animation: revealFromRight 0.5s ease-out;
  }

  .accommodation-card:nth-child(odd) {
    animation: revealFromLeft 0.5s ease-out;
  }
}

/* Scroll Animation Keyframes */
@keyframes revealFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 900px) {
  .accommodation-card,
  .accommodation-card.reverse {
    flex-direction: column;
  }
  .accommodation-image {
    min-height: 360px;
  }
  .accommodation-info {
    padding: 40px 30px;
  }
}
/* Responsive Fix for Image-on-Top */
@media (max-width: 900px) {
  /* This targets the cards where info comes before the image in HTML */
  .accommodation-card {
    display: flex;
    flex-direction: column; /* Stack vertically */
  }

  .accommodation-card .accommodation-image {
    order: 1; /* Move image to the top */
  }

  .accommodation-card .accommodation-info {
    order: 2; /* Move info to the bottom */
  }
}
/* Container - Clean & Simple */
.accommodation-image {
    flex: 1;
    min-height: 480px; /* Desktop height */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Slider Track */
.room-slider {
    display: flex;
    overflow-x: auto;
    snap-type: x mandatory;
    scroll-behavior: smooth;
    height: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none; /* IE/Edge */
}
.room-slider::-webkit-scrollbar { display: none; }

.slide {
    flex: 0 0 100%;
    width: 100%; /* Ensures slide takes full width of container */
    snap-align: start;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Minimalist Arrows - Fixed for Mobile/iPad */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, opacity 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.slider-arrow:hover { background: #fff; }
.slider-arrow.prev { left: 10px; }
.slider-arrow.next { right: 10px; }

/* Simple Clean Dots */
.slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-nav a {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0,0,0,0.2);
    transition: 0.3s;
    display: inline-block;
}

.slider-nav a.active {
    background: #fff;
    transform: scale(1.2);
    border-color: #fff;
}

/* RESPONSIVE FIXES */

/* iPad / Tablet (Up to 1024px) */
@media (max-width: 1024px) {
    .accommodation-image {
        min-height: 400px; /* Better ratio for tablets */
    }
}

/* Mobile (Up to 768px) */
@media (max-width: 768px) {
    .accommodation-image {
        min-height: 300px; /* Standard mobile height */
        border-radius: 4px; /* Slightly smaller radius for small screens */
    }

    .slider-arrow {
        width: 32px; /* Smaller buttons so they don't crowd mobile */
        height: 32px;
        font-size: 14px;
        background: rgba(255, 255, 255, 0.9); /* More solid on mobile for visibility */
    }
    
    .slider-arrow.prev { left: 5px; }
    .slider-arrow.next { right: 5px; }
    
    .slider-nav {
        bottom: 10px; /* Lift slightly for better visibility */
    }
}
/* ===============================
   STICKY CINEMATIC GALLERY
================================ */
.sticky-gallery {
  position: relative;
  height: 420vh;
  background: linear-gradient(90deg, #f0e5d9, #d2b39b); /* Pastel brown and beige gradient */
}

.sticky-gallery-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ===============================
   IMAGE LAYER
================================ */
.gallery-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(140px) scale(0.97);
  transition:
    opacity 0.9s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-image.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

/* ===============================
   ACCENT COLOR SYSTEM
================================ */
.gallery-image[data-accent="gold"] {
  --accent: #c19c6b;
  --accent-soft: rgba(193, 156, 107, 0.25);
}

.gallery-image[data-accent="brown"] {
  --accent: #6b4f3b;
  --accent-soft: rgba(107, 79, 59, 0.25);
}

.gallery-image[data-accent="beige"] {
  --accent: #f1e0c6;
  --accent-soft: rgba(241, 224, 198, 0.25);
}

.gallery-image[data-accent="sand"] {
  --accent: #d4b69e;
  --accent-soft: rgba(212, 182, 158, 0.25);
}

/* ===============================
   FRAME
================================ */
.gallery-frame {
  width: 100%;
  max-width: 1400px;
  height: 88vh;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #000;
  box-shadow:
    0 60px 140px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1.6s ease;
    position: relative;
  z-index: 1;
}

.gallery-image.active .gallery-frame img {
  transform: scale(1);
}

/* CINEMATIC OVERLAY */
/* IMAGE FADE LAYER (ONLY IMAGE) */
.gallery-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(6, 10, 20, 0.15),
    rgba(6, 10, 20, 0.75)
  );
  pointer-events: none;
}

/* ===============================
   CONTENT OVERLAY
================================ */
.gallery-content {
  position: absolute;
  z-index: 3;
  left: 60px;
  bottom: 60px;
  max-width: 440px;
  color: #f8fafc;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.gallery-content {
  padding: 18px 20px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 0.45),
    rgba(11, 18, 32, 0.25)
  );
  backdrop-filter: blur(6px);
}

.gallery-image.active .gallery-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* BADGE */
.gallery-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.6px;
}

/* HEADING */
.gallery-content h3 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 400;
  position: relative;
  color: #fff;
}

.gallery-content h3::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: var(--accent);
  margin-top: 10px;
  border-radius: 3px;
  align-items: center;
}

/* TEXT */
.gallery-content p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.9;
}

/* CTA */
.gallery-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 13px 26px;
  background: var(--accent);
  color: #0b1220;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ===============================
   PROGRESS INDICATOR
================================ */
.gallery-progress {
  position: absolute;
  right: 60px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-progress span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.gallery-progress span.active {
  height: 26px;
  border-radius: 8px;
  background: #fff;
}

/* SCROLL HINT */
.gallery-scroll-hint {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0% { opacity: 0.3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, -6px); }
  100% { opacity: 0.3; transform: translate(-50%, 0); }
}

.collage-frame {
  padding: 26px;
  background: linear-gradient(
    180deg,
    rgba(11,18,32,0.6),
    rgba(11,18,32,0.3)
  );
}
.collage-grid {
  display: grid;
  grid-template-columns: 1fr 0.3fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 100%;
}
.collage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transform: scale(1.05);
  transition: transform 1.6s ease;
}
.collage-grid img:nth-child(1) {
  grid-row: span 4;
}

.collage-grid img:nth-child(2),
.collage-grid img:nth-child(3),
.collage-grid img:nth-child(4) {
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.collage-content {
  left: 50%;
  bottom: 30%;
  transform: translate(-50%, 50%);
  text-align: center;
  max-width: 520px;
}
.gallery-image.active .collage-content {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ===============================
   MOBILE & iPAD – STICKY ENABLED
================================ */
@media (max-width: 1024px) {
  .sticky-gallery {
    height: 360vh; /* slightly shorter but still sticky */
  }

  .gallery-frame {
    width: 92%;
    height: 80vh;
    border-radius: 20px;
  }

  .gallery-content {
    left: 20px;
    right: 20px;
    bottom: 28px;
    max-width: none;
    padding: 16px 18px;
  }

  .gallery-content h3 {
    font-size: 26px;
  }

  .gallery-content p {
    font-size: 14px;
  }

  .gallery-progress {
    right: 24px;
    bottom: 70px;
  }
}

@media (max-width: 1024px) {
  .collage-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
  }

  .collage-content {
    left: 20px;
    right: 20px;
    bottom: 32px;
    transform: none;
    text-align: left;
  }
}
/* ===============================
   MOBILE – FIX COLLAGE LOOK
================================ */
@media (max-width: 600px) {

  .sticky-gallery {
    height: 420vh; /* keep full length on mobile for smooth switching */
  }

  .gallery-frame {
    width: 94%;
    height: 72vh; /* prevent oversized frame */
    border-radius: 18px;
  }

  /* COLLAGE SLIDE: make it tiles (2x2) */
  .collage-frame {
    padding: 16px;
  }

  .collage-grid {
    grid-template-columns: 1fr 1fr;  /* 2 columns */
    grid-template-rows: 1fr 1fr;     /* 2 rows */
    gap: 10px;
  }

  /* remove the big-left-image rule that causes the strip layout */
  .collage-grid img:nth-child(1) {
    grid-row: auto;
  }

  .collage-grid img {
    border-radius: 14px;
    transform: none;
  }

  /* collage content placement */
  .collage-content {
    left: 180px;
    right: 0px;
    bottom: 208px;
    max-width: 500px;
    text-align: left;
    padding: 14px 14px;
  }

  .gallery-content h3 {
    font-size: 22px;
  }

  .gallery-content p {
    font-size: 13px;
    line-height: 1.55;
  }

  .gallery-progress {
    right: 16px;
    bottom: 58px;
  }

  .gallery-scroll-hint {
    bottom: 22px;
  }
}
.video-gallery-split {
  padding: 100px 6%;
  background: #f8f4ef;
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  max-width: 1440px;
  margin: 0 auto;
}

.split-heading {
  font-family:'Dancing Script', cursive; 
  font-size: 2.8rem;
  color: #6f410d;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.split-heading::after {
  content: '';
  width: 70px;
  height: 3px;
  background: #a68a64;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.video-promo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(145deg, #2c3e50, #34495e);
  box-shadow: 0 25px 50px -12px rgba(92,64,51,0.25);
  transition: transform 0.4s ease;
}

.video-promo-card:hover {
  transform: translateY(-8px);
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(168,138,100,0.12) 50%, transparent 70%);
  animation: shine 7s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: translateX(-100%); }
  20% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

.video-thumbnail-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.08) saturate(0.95);
  transition: transform 0.6s ease;
}

.video-promo-card:hover .video-thumbnail {
  transform: scale(1.06);
}

.play-button-outer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-button-inner {
  width: 90px;
  height: 90px;
  background: #c19a6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c2e3b;
  box-shadow: 0 0 40px rgba(193,154,107,0.5);
  transition: all 0.4s ease;
}

.play-button-inner:hover {
  transform: scale(1.15);
  background: #d4b38a;
  box-shadow: 0 0 60px rgba(212,179,138,0.7);
}

.play-icon {
  width: 38px;
  height: 38px;
  margin-left: 4px;
}

.coming-soon-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(52,73,94,0.88);
  color: #e8d9c5;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid #a68a64;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 3;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(193,154,107,0.28);
  border-radius: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.ring-1 { width: 260px; height: 260px; animation: pulse-ring 3.2s infinite ease-out; }
.ring-2 { width: 340px; height: 340px; animation: pulse-ring 3.2s 0.9s infinite ease-out; }

@keyframes pulse-ring {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0; }
  40%  { opacity: 0.7; }
  100% { transform: translate(-50%,-50%) scale(1.6); opacity: 0; }
}

.video-info {
  padding: 20px;
  text-align: center;
  color: #e8d9c5;
}

.video-teaser {
  margin: 0;
  font-size: 1.05rem;
  opacity: 0.9;
}

.gallery-side {
  background: #fdfaf5;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(92,64,51,0.08);
}

.masonry-scroller {
  height: 380px;
  overflow-y: auto;
  padding: 0 4px 4px 0;
  scrollbar-width: thin;
  scrollbar-color: #c19a6b #f8f4ef;
}

.masonry-scroller::-webkit-scrollbar { width: 6px; }
.masonry-scroller::-webkit-scrollbar-track { background: #f8f4ef; border-radius: 10px; }
.masonry-scroller::-webkit-scrollbar-thumb { background: #c19a6b; border-radius: 10px; }

.masonry-grid { column-count: 2; column-gap: 12px; }

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.07);
  transition: transform 0.35s ease;
  background: #e8e0d5;
}

.masonry-item:hover { transform: scale(1.03); }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.masonry-item.tall   { aspect-ratio: 3 / 4; }
.masonry-item.wide   { aspect-ratio: 4 / 3; }
.masonry-item.medium { aspect-ratio: 1 / 1; }
.masonry-item.small  { aspect-ratio: 4 / 5; }

/* Responsive */
@media (max-width: 1024px) {
  .split-row { grid-template-columns: 1fr; gap: 60px; }
  .masonry-scroller { height: 460px; }
}

@media (max-width: 640px) {
  .masonry-grid { column-count: 1; }
  .split-heading { font-size: 2.4rem; }
  .play-button-inner { width: 70px; height: 70px; }
  .play-icon { width: 30px; height: 30px; }
  .masonry-item.tall,
  .masonry-item.wide,
  .masonry-item.medium,
  .masonry-item.small { aspect-ratio: 4 / 3; }
}
/* Popup styles */
.gallery-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(6px);
}

.gallery-popup.active {
  display: flex;
}

.popup-content {
  position: relative;
  max-width: 92vw;
  max-height: 92vh;
}

.popup-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7);
  object-fit: contain;
}

.popup-close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
}

.popup-close:hover {
  background: rgba(255,255,255,0.35);
  transform: scale(1.1);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .popup-close {
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.5);
  }
}

/* ================= BASE ================= */
/* ================= BASE WITH BACKGROUND IMAGE ================= */
.lux-footer {
  position: relative;
  color: #f5f5f5; /* Soft light gray text */

  overflow: hidden;

  /* Background image */
  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 10%,  /* Darker background for text contrast */
      rgba(0, 0, 0, 0.7) 100%  /* Dark gradient for better text readability */
    ),
    url("../images/new/exterior.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lux-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.7)
  );
  pointer-events: none;
  z-index: 0;
}


/* ================= CONTENT ================= */
.lux-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 70px;
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 80px;
}

/* ================= HEADINGS ================= */
.lux-footer h3,
.lux-footer h4 {
  font-family:'Dancing Script', cursive; 
  color: #fef5e3; /* Soft cream color for better contrast */
  margin-bottom: 22px;
  position: relative;
}

.lux-footer h3 {
  font-size: 30px;
}

.lux-footer h4 {
  font-size: 30px;
}

.lux-footer h3::after,
.lux-footer h4::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #ffbc42; /* Soft gold color */
  position: absolute;
  left: 0;
  bottom: -10px;
}

/* ================= PROPERTY ================= */
.lux-footer-address {
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.9;
  font-size: 17px;
  color: #e5e5e5; /* Light gray for address text */
}

.lux-footer-contact a {
  color: #ffbc42; /* Gold color for the contact links */
  text-decoration: none;
  font-size: 18px;
}

.lux-footer-contact a:hover {
  text-decoration: underline;
}

/* ================= LINKS ================= */
.lux-footer-links ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.lux-footer-links li {
  list-style: none;
  position: relative;
  padding-left: 14px;
  opacity: 0.9;
  font-size: 18px;
  line-height: 1.7;
  color: #e5e5e5; /* Light gray for the link items */
}

.lux-footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ffbc42; /* Soft gold color for the bullet points */
}

.lux-footer-links a {
  text-decoration: none;
  color: #ffffff; /* White color for links */
  font-weight: 400;
  transition: color 0.3s ease;
}

.lux-footer-links a:hover {
  color: #ffbc42; /* Gold color for links on hover */
}

/* ================= CHECK IN ================= */
.lux-footer-time p {
  margin: 10px 0;
}

.lux-footer-time strong {
  color: #ffbc42; /* Soft gold color for the check-in time */
  font-weight: 500;
  font-size: 17px;
}
/* ================= SOCIAL ICONS ================= */
.lux-footer-social {
  text-align: center;
}

.lux-footer-social h4 {
  font-size: 30px;
  color: #fef5e3; /* Light cream color for the title */
  margin-bottom: 22px;
  
  position: relative;
}

.lux-footer-social h4::after {
  content: "";
  width: 36px;
  height: 2px;
  background: #ffbc42; /* Soft gold color */
  position: absolute;
  left: 85px;
  bottom: -10px;
}

.lux-footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  font-size: 24px;
  color: #fef5e3; /* White color for the icons */
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #ffbc42; /* Soft gold color for hover effect */
}

/* Add responsiveness for social icons */
@media (max-width: 768px) {
  .lux-footer-social-icons {
    flex-direction: column;
    gap: 10px;
  }

  .social-icon {
    font-size: 30px;
  }
}


/* ================= LEGAL ================= */
.lux-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 80px;
  text-align: center;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.25);
}

.lux-license {
  margin-bottom: 10px;
  opacity: 0.85;
}

.lux-legal-links a {
  color: #e5ecf3;
  text-decoration: none;
  margin: 0 6px;
}

.lux-legal-links a:hover {
  color: #ffbc42; /* Soft gold color for legal links */
}

/* ================= LOGO ================= */
.lux-footer-logo {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 12px 0;
  text-align: center;
  background: #050e1a;
}

.lux-footer-logo img {
  height: 84px;
  opacity: 0.95;
}
/* ================= CHECK IN / OUT ADJUSTMENTS ================= */
.lux-footer-time {
  margin-top: 25px; /* Creates space below the social icons */
  text-align: center;
  border-top: 1px solid rgba(255, 188, 66, 0.2); /* Subtle gold divider */
  padding-top: 15px;
  display: inline-block; /* Keeps the border from stretching full width if desired */
}

.lux-footer-time p {
  margin: 5px 0;
  font-size: 16px;
  color: #e5e5e5;
  letter-spacing: 0.5px;
}

.lux-footer-time strong {
  color: #ffbc42; /* Matching your theme's gold color */
  font-weight: 600;
  margin-left: 5px;
}

/* Ensure the heading underlines stay centered in this column */
.lux-footer-social h4::after {
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}
/* ================= RESPONSIVE IMPROVEMENTS ================= */

/* Tablet / iPad (Portrait) */
@media (max-width: 1024px) {
  .lux-footer-content {
    grid-template-columns: 1fr 1fr; /* 2 Columns */
    gap: 50px;
    padding: 70px 40px;
  }

  /* Make the 3rd item (Check In/Time) span full width to balance the grid */
  .lux-footer-content > div:nth-child(3) {
    grid-column: 1 / -1; 
    text-align: center;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  /* Center the underline for the 3rd item only */
  .lux-footer-content > div:nth-child(3) h4::after {
    left: 10%;
    transform: translateX(-50%);
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .lux-footer-content {
    grid-template-columns: 1fr; /* Stack everything */
    text-align: left;
    padding: 60px 20px;
    gap: 50px;
  }

  /* Center the headings underline */
  .lux-footer h3::after,
  .lux-footer h4::after {
    left: 10%;
    transform: translateX(-50%);
  }

  /* Fix Links Alignment: Remove bullets and side padding for clean centering */
  .lux-footer-links ul {
    grid-template-columns: 1fr 1fr; /* Stack links */
    padding: 0;
    gap: 15px;
  }

  .lux-footer-links li {
    padding-left: 0; /* Remove space reserved for bullet */
  }

  .lux-footer-links li::before {
    content: none; /* Hide the bullet point on mobile */
  }

  /* Add some breathing room between sections */
  .lux-footer-address, 
  .lux-footer-contact, 
  .lux-footer-time {
    margin-bottom: 10px;
  }
}

.title1 {
  font-family: 'Dancing Script', cursive; 
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  text-decoration: none;
}


/* ===== RESERVATION BOX SECTION – AGUSTIN INN REFINED ===== */
.below-section {
  position: relative;
  padding: 60px 0; /* Increased padding for better breathing room */
  text-align: center;
  z-index: 1;
}

/* ============================
    BACKGROUND BOOKING LABEL
============================ */
.below-section::before {
  content: "Historic Sevilla House Inn";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-family: 'Dancing Script', cursive;
  font-size: clamp(30px, 18vw, 100px);
  font-weight: 900;
  letter-spacing: 12px;

  /* Using a very soft gold/tan for the background text */
  color: rgba(184, 158, 103, 0.20); 
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}

/* Reservation wrapper */
.reservation-box {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 4px; /* Squares off slightly for a more "Inn" feel */
  overflow: hidden;
  /* Deep Charcoal-Navy for a premium look */
  background: #1a1e23; 
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  width: 100%;
  max-width: 1280px;
  height: 110px;
  border: 1px solid #b89e67; /* Thin gold border */
}

/* Flex layout */
.res-flex {
  display: flex;
  width: 100%;
  align-items: stretch;
}

/* Form items */
.res-item {
  padding: 15px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(184, 158, 103, 0.3);
  flex: 1;
  transition: background 0.3s ease;
}

.res-item:hover {
  background: rgba(184, 158, 103, 0.05);
}

.res-item.small {
  min-width: 110px;
  text-align: center;
}

/* Labels */
.res-item label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #b89e67; /* Antique Gold */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

/* Inputs */
.res-input,
.res-select {
  background: transparent;
  border: none;
  color: #ffffff; /* White text on dark bg */
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
}

.res-select option {
  color: #1a1e23;
  background: #fff;
}

/* Icons */
.res-content i {
  font-size: 16px;
  color: #b89e67;
  margin-left: 10px;
}

/* Button - The Gold Call to Action */
.res-button {
  background: #b89e67; /* Solid Antique Gold */
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  transition: all .4s ease;
}

.res-button button {
  background: none;
  border: none;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 30px;
  font-size: 14px;
  height: 100%;
  cursor: pointer;
}

.res-button:hover {
  background: #a38956; /* Slightly darker gold */
  box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

/* ======================
    Datepicker Theming
====================== */
.ui-datepicker {
  background: #ffffff;
  border: 1px solid #b89e67;
  color: #1a1e23;
  font-family: 'Montserrat', sans-serif;
  padding: 10px;
  border-radius: 0;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.ui-datepicker-header {
  background: #1a1e23; /* Dark header */
  color: #b89e67;
  border: none;
}

.ui-state-default {
  background: #fdfaf3;
  color: #1a1e23;
  border: 1px solid #eee;
}

.ui-state-hover {
  background: #b89e67 !important;
  color: #fff !important;
}

.ui-state-active {
  background: #1a1e23 !important;
  color: #b89e67 !important;
  border: 1px solid #b89e67 !important;
}

/* ======================
    Responsive (Mobile)
====================== */
@media (max-width: 992px) {
  .reservation-container {
    height: auto;
    background: #1a1e23;
    border-radius: 8px;
  }

  .res-flex {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-areas: 
      "in out"
      "adult kid"
      "btn btn";
    gap: 1px;
    background: #b89e67; /* Gold lines for grid */
  }

  .res-item {
    background: #1a1e23;
    padding: 20px;
  }

  .res-button {
    min-height: 60px;
  }
}
/* 1. Hide the browser's native calendar icon/arrow */
input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
    z-index: 2; /* Makes the whole box clickable for the native picker */
}

/* 2. Fix the container positioning */
.res-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; /* Essential for the absolute picker positioning */
    width: 100%;
}

/* 3. Style the date input to prevent overlapping */
.res-input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    width: 100%;
    z-index: 1;
    position: relative;
    padding-right: 30px; /* Space for the FontAwesome icon */
}

/* 4. Ensure FontAwesome icon is positioned correctly */
.res-content i {
    font-size: 16px;
    color: #b89e67;
    position: absolute;
    right: 0;
    pointer-events: none; /* Let clicks pass through to the input */
    z-index: 0;
}
/* Inner Hero Container */
.inner-hero {
  position: relative;
  height: 60vh; /* Shorter than home page to get straight to content */
  min-height: 400px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4E8B8A; /* Matches your hero slider teal */
}

/* Background Image with Parallax Effect */
.inner-hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates a steady, antique scroll feel */
  z-index: 1;
}

/* Matching Pulse Overlay */
.inner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* Keeping the brand identity with the same pulse animation */
  animation: overlayPulse 6s ease-in-out infinite; 
}

/* Content Area */
.inner-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 0 20px;
}

.inner-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: #FFEB3B; /* Brand Yellow */
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.inner-title {
  font-size: 4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #F2A900; /* Brand Gold */
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
}

/* Antique Divider */
.inner-divider {
  width: 80px;
  height: 3px;
  background-color: #F2A900;
  margin: 20px auto;
  border-radius: 2px;
}

.inner-desc {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Responsive Scaling */
@media (max-width: 768px) {
  .inner-hero {
    height: 40vh;
  }
  .inner-title {
    font-size: 2.2rem;
  }
  .inner-subtitle {
    font-size: 1.2rem;
  }
  .inner-desc {
    font-size: 1rem;
    display: none; /* Hide desc on small mobile to save space */
  }
}
/* --- Steward's Ledger Amenities Section --- */
.steward-ledger {
 background-image:linear-gradient(rgb(60 59 59 / 64%), rgb(0 0 0 / 24%)), url(../images/new/antique-texture.jpg);
  background-size: cover;
  background-blend-mode: overlay;
  padding: 40px 5%;
  font-family: 'Playfair Display', serif;
}

.ledger-container {

  max-width: 1300px;

  margin: 0 auto;

  border: 6px double #2a4d37; /* Victorian Deep Green Double Frame */

  padding: 60px 40px;

  background: #ffffff;

  box-shadow: 0 20px 50px rgba(0,0,0,0.05);

  position: relative;

}

/* Header Styling */
.ledger-header { 
  text-align: center; 
  margin-bottom: 50px; 
}

.header-flourish { 
  font-size: 30px; 
  color: #6f410d; /* Antique Gold */
  margin-bottom: 10px; 
}

.ledger-header h2 { 
  font-size: clamp(2rem, 5vw, 3rem); 
  color: #2a4d37; 
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 2px;
}

.ledger-subtitle { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.9rem; 
  letter-spacing: 3px; 
  color: #6f410d; 
  font-weight: 700; 
  margin: 10px 0; 
  text-transform: uppercase;
}

.ledger-intro-text { 
  max-width: 1300px; 
  margin: 20px auto; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 1.05rem; 
  color: #555; 
  line-height: 1.8; 
  
}

.ledger-line { 
  height: 1px; 
  width: 150px; 
  background: #d4af37; 
  margin: 25px auto; 
}

/* Grid & Panel Layout */
.ledger-grid { 
  display: flex; 
  gap: 25px; 
  align-items: stretch; 
}

.ledger-panel { 
  flex: 1; 
  border: 1px solid #eee5d8; 
  padding: 35px 30px; 
  position: relative; 
  background: #fff;
  transition: transform 0.3s ease;
}

/* Highlighted Center Panel (The "Gold Standard") */
.ledger-panel.highlight {
  background-image: 
    url('../images/new/antique-texture.jpg'); /* Replace with your dark texture path */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border: 1px solid #d4af37;
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(42, 77, 55, 0.25);
  z-index: 2;
}

.panel-head { 
  text-align: center; 
  border-bottom: 1px solid #d4af37; 
  padding-bottom: 20px; 
  margin-bottom: 25px; 
}

.panel-head i { 
  font-size: 26px; 
  color: #d4af37; 
  margin-bottom: 12px; 
  display: block; 
}

.panel-head h3 { 
  font-size: 1.5rem; 
  text-transform: uppercase; 
  margin: 0; 
  letter-spacing: 1px; 
}

.panel-tag { 
  display: block; 
  font-family: 'Montserrat', sans-serif; 
  font-size: 0.75rem; 
  color: #999; 
  text-transform: uppercase; 
  margin-top: 8px; 
  letter-spacing: 1px;
}

.ledger-panel.highlight .panel-tag {
  color: #d4af37; /* Gold tag for the dark panel */
}

/* Subgroups & Internal Lists */
.ledger-subgroup h4 { 
  font-size: 0.9rem; 
  color: #6f410d; 
  text-transform: uppercase; 
  margin: 25px 0 12px; 
  border-bottom: 2px solid #2a4d37; 
  padding-bottom: 5px;
  display: inline-block;
}

.ledger-items { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.ledger-items li {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #2c2c2c; /* Deep ink color */
  padding: 8px 0;
  border-bottom: 1px solid #f4eee1;
  display: flex;
  align-items: center;
}

.ledger-items li::before {
  content: "◈"; /* Antique Diamond Bullet */
  color: #d4af37;
  font-size: 10px;
  margin-right: 12px;
  flex-shrink: 0;
}

/* Featured Center List Styling */
.feature-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.feature-list i { 
  color: #d4af37; 
  width: 35px; 
  font-size: 18px; 
  text-align: center;
}

.ledger-subgroup-alt h4 { 
  color: #d4af37; 
  font-size: 0.85rem; 
  text-transform: uppercase; 
  margin-top: 30px; 
  letter-spacing: 1px;
}

.ledger-subgroup-alt p { 
  font-family: 'Montserrat', sans-serif; 
  font-size: 13px; 
  color: #f4eee1; /* Creamy text for dark background */
  line-height: 1.8; 
  margin-top: 10px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .ledger-grid { 
    flex-direction: column; 
    gap: 30px;
  }
  
  .ledger-panel.highlight { 
    transform: none; 
    order: -1; /* Keeps the most important info at the top on mobile */
  }

  .ledger-container {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .ledger-header h2 { font-size: 2rem; }
  .ledger-items li { font-size: 13px; }
}

/* --- Base State (Hidden/Exit) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.9s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  visibility: hidden;
}

/* --- Active State (Visible/Enter) --- */
.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

/* Staggered Delays for the 3 Panels */
.ledger-grid .ledger-panel:nth-child(1).active { transition-delay: 0.2s; }
.ledger-grid .ledger-panel:nth-child(2).active { transition-delay: 0.4s; }
.ledger-grid .ledger-panel:nth-child(3).active { transition-delay: 0.6s; }

/* Specifically for the line animation */
.ledger-line {
  width: 0;
  transition: width 1.2s ease-in-out 0.8s;
}
.active .ledger-line {
  width: 150px;
}

/* Keep your existing Hover effects below this */
.ledger-panel.highlight:hover {
  transform: scale(1.06) translateY(-5px) !important; /* !important to override the 'active' state transform */
}


/* ============================================================
   THINGS TO DO - ANTIQUE STEWARD'S LEDGER STYLE
   Full Color & Font Sync with Amenities Page
   ============================================================ */

.spotlight-section {
  /* Applying the uploaded antique-texture.jpg as the background */
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
              url('../images/new/antique-texture.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 20px 100px;
  overflow: clip;
  font-family: 'Playfair Display', serif;
}

/* --- The Main Container Frame --- */
.spotlight-wrapper {
  display: flex;
  position: relative;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  /* Victorian Deep Green Double Frame from Amenities screenshot */
  border: 6px double #2a4d37; 
  background: #ffffff; /* Solid white ledger page background */
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* --- Centered Section Header --- */
.ttd-section-header {
	
  width: 100%;
  text-align: center;
  max-width: 1300px;
  margin: 0 auto;
  /* Header sits directly on texture, so we use lighter variants */
  border: 6px double #2a4d37; 
  background: #ffffff;
}



.ttd-main-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #2a4d37; /* Victorian Deep Green */
  text-transform: uppercase;
  margin: 20px;
  letter-spacing: 2px;
  /* REDUCE THIS: Controls the vertical gap between lines */
  line-height: 1.1; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ttd-main-title span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 3px;
  color: #6f410d; /* Antique Gold */
  font-weight: 700;
  text-transform: uppercase;
  /* ADJUST THIS: Negative margin can pull it even closer if needed */
  margin-top: 5px; 
  margin-bottom: 0;
  line-height: 1.2;
}

.ttd-main-intro {
     max-width: 1200px;
    margin: 20px auto;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.header-divider {
  width: 180px;
  height: 2px;
  background: #d4af37; 
  margin: 30px auto;
  box-shadow: 0px 1px 3px rgba(0,0,0,0.5);
}

/* --- Sticky Image Column (Right) --- */
.spotlight-visuals {
  flex: 1;
  height: 100vh;
  position: sticky;
  top: 0;
  z-index: 1;
  /* Matching the frame style on the inner split */
  border-left: 2px solid #eee5d8;
}

.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 1s ease-in-out, transform 1.5s ease-out;
  transform: scale(1.1);
}

.spotlight-img.active {
  opacity: 1;
  transform: scale(1);
}

/* --- Progress Bar (Steward Style) --- */
.spotlight-progress {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  height: 250px;
  width: 2px;
  background: #f4eee1;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.progress-fill {
  width: 100%;
  background: #2a4d37; /* Deep Green fill */
  border: 1px solid #d4af37; /* Gold border */
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-total {
  position: absolute;
  bottom: -35px;
  left: -5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #6f410d;
}

/* --- Scrolling Narrative Column (Left) --- */
.spotlight-narrative {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.narrative-block {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  opacity: 0.2;
  transition: all 0.8s ease;
}

.narrative-block.active {
  opacity: 1;
}

.narrative-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  color: #6f410d; /* Gold */
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.narrative-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #2a4d37; /* Deep Green */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.narrative-divider {
  width: 50px;
  height: 2px;
  background: #d4af37; /* Gold Divider */
  margin: 20px 0;
}

.narrative-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555555; /* Soft ink color for body text */
  max-width: 500px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .spotlight-section { padding: 40px 15px; }
  .spotlight-wrapper { 
    flex-direction: column; 
    border-width: 4px; 
  }
  .spotlight-visuals { 
    height: 40vh; 
    width: 100%; 
    position: relative; 
    border-left: none;
    border-bottom: 1px solid #eee5d8;
  }
  .spotlight-narrative { 
    width: 100%; 
    padding: 30px 20px; 
  }
  .narrative-block { 
    min-height: auto; 
    padding: 40px 0; 
    opacity: 1; 
  }
  .spotlight-progress { display: none; }
}



/* Legibility-focused Ledger Section without Header */
.nearby-ledger-section {
 /* Applying the uploaded antique-texture.jpg as the background */
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
              url('../images/new/antique-texture.jpg'); 
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 10px 100px;
  overflow: clip;
}

.ledger-container {
  max-width: 1300px;
  margin: 0 auto;
  border: 6px double #2a4d37; /* Victorian Deep Green Frame */
  padding: 50px 40px;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.nearby-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.nearby-panel {
  flex: 1;
  min-width: 320px;
  border: 1px solid #eee5d8;
  padding: 30px;
  background: #fff;
  transition: transform 0.3s ease;
}

/* Matching the 'Gold Standard' panel from Amenities */
.nearby-panel.highlight {
 background-image: 
    url('../images/new/antique-texture.jpg'); /* Replace with your dark texture path */
  background-size: cover;
  background-position: center;
  color: #ffffff;
  border: 1px solid #d4af37;
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(42, 77, 55, 0.25);
  z-index: 2;
}

.nearby-panel.highlight .panel-heading {
  color: #d4af37;
  border-bottom-color: #d4af37;
}

.nearby-panel.highlight .nearby-list li {
  color: #f4eee1;
  border-bottom-color: rgba(255,255,255,0.1);
}

.panel-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #2a4d37;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.panel-heading i {
  color: #6f410d;
  margin-right: 12px;
  font-size: 1.1rem;
}

.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nearby-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f4eee1;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #333;
}

.nearby-list li:last-child {
  border-bottom: none;
}

.distance {
  color: #6f410d; /* Antique Gold */
  font-weight: 700;
  font-size: 0.85rem;
  margin-left: 15px;
  white-space: nowrap;
}

.nearby-panel.highlight .distance {
  color: #d4af37;
}
/* ============================================================
   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;
  }
}
/* --- Antique Location Suite --- */
.antique-location-suite {
  background: url('../images/new/antique-texture.jpg'); /* Your Antique Texture */
  background-size: cover;
  padding: 20px 20px;
  position: relative;
  overflow: hidden;
}

.desk-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

/* Brass Seal Icon */
.antique-seal {
  position: absolute;
  top: -40px;
  right: 15%;
  width: 80px;
  height: 80px;
  background: #6f410d;
  border: 4px double #2a4d37;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 5;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* Parchment Frame for the Map */
.map-parchment-frame {
  flex: 1.5;
  height: 700px;
  background: #f4eee1;
  padding: 20px;
  border: 20px solid #2a4d37; /* Victorian Deep Green Frame */
  border-image: none;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.2), 20px 30px 60px rgba(0,0,0,0.6);
  position: relative;
  transform: rotate(-1deg); /* Slight tilt for "dropped on desk" feel */
}

.parchment-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

/* Ledger Card (Floats over the map) */
.ledger-overlay-card {
  flex: 0 0 420px;
  background: url('../images/new/antique-texture.jpg'); /* Your Antique Texture */
  background-size: cover;
  padding: 50px;
  margin-left: -100px; /* Overlaps the map parchment */
  z-index: 10;
  box-shadow: 15px 15px 40px rgba(0,0,0,0.4);
  border: 1px solid #d4af37;
  position: relative;
  transform: rotate(2deg); /* Counter-tilt */
}

.ledger-no {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: #6f410d;
  text-transform: uppercase;
}

.ledger-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2a4d37;
  margin: 10px 0;
}

.ledger-divider-ornate {
  height: 2px;
  background: linear-gradient(to right, transparent, #2a4d37, transparent);
  margin: 20px 0 40px;
}

.ledger-entry {
  margin-bottom: 25px;
}

.ledger-entry label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  text-transform: uppercase;
  color: #6f410d;
  letter-spacing: 2px;
  font-weight: 700;
}

.ledger-entry p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #1a1a1a;
  margin: 5px 0 0;
}

/* Handwritten Route Input */
.handwritten-input {
  border-top: 1px solid rgba(42, 77, 55, 0.2);
  padding-top: 30px;
  margin-top: 30px;
}

.handwritten-input input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2a4d37;
  padding: 10px 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #2a4d37;
  margin-bottom: 20px;
  outline: none;
}

.brass-btn {
  width: 100%;
  background: #2a4d37;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.4s;
}

.brass-btn:hover {
  background: #6f410d;
  color: #fff;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .desk-container { flex-direction: column; }
  .map-parchment-frame { width: 100%; transform: none; height: 450px; }
  .ledger-overlay-card { 
    width: 95%; 
    margin-left: 0; 
    margin-top: -50px; 
    transform: none; 
    padding: 30px;
  }
}
/* Specific styling for the 4-line SEO Text */
.ledger-seo-text {
  font-family: 'Montserrat', sans-serif;
  font-size:16px;
  line-height: 1.8; /* Increased spacing for readability */
  color: #4a4a4a;
  margin-top: 15px;
  text-align: left;
  letter-spacing: 0.5px;
  font-weight: 500;
  max-width: 100%;
  /* Optional: Adds a subtle 'ink on paper' feel */
  opacity: 0.9;
}

/* Ensure the header expands to fit the text */
.ledger-header {
  margin-bottom: 20px;
}

/* Adjust the divider to sit neatly below the SEO block */
.ledger-divider-ornate {
  height: 1px;
  background: linear-gradient(to right, transparent, #2a4d37, transparent);
  margin: 25px 0;
  position: relative;
}

.ledger-divider-ornate::after {
  content: '◈';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff; /* Matches ledger card bg */
  padding: 0 10px;
  color: #6f410d;
  font-size: 12px;
}

/* Ledger Card Background Adjustment */
.ledger-overlay-card {
  flex: 0 0 560px; /* Widened slightly to handle the 4-line text better */
  background: #ffffff; /* Clean paper white to keep text legible */
  padding: 40px;
  border: 1px solid #d4af37;
  box-shadow: 15px 15px 40px rgba(0,0,0,0.4);
  z-index: 10;
  position: relative;
}
/* --- Contact Ledger Suite --- */
.contact-ledger-suite {
   background: url('../images/new/antique-texture.jpg');
  background-size: cover;
  padding: 20px 5%;
  position: relative;
}

.ledger-outer-frame {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  display: flex;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  border: 1px solid #eee5d8;
  position: relative;
  overflow: hidden;
}

/* Side Texture Accent */
.ledger-accent-sidebar {
  width: 80px;
  background: url('../images/new/antique-texture.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 40px;
}

.sidebar-logo-mark {
  width: 40px;
  height: 40px;
  border: 2px solid #d4af37;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ledger-main-content {
  flex: 1;
  padding: 60px 80px;
}

.ledger-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #2a4d37; /* Victorian Green */
  margin-bottom: 20px;
}

.ledger-headline span {
  font-style: italic;
  font-weight: 400;
  color: #6f410d; /* Antique Gold */
}

.ledger-subtext {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #555;
  max-width: 1200px;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* Horizontal Details Row */
.ledger-details-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid #eee5d8;
  padding-top: 40px;
}

.ledger-item {
  flex: 1;
}

.item-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #6f410d;
  margin-bottom: 15px;
  font-weight: 700;
}

.estate-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #2a4d37;
  margin-bottom: 5px;
}

.item-data p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.ledger-link {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2a4d37;
  text-decoration: none;
  transition: 0.3s;
  display: block;
  margin-bottom: 5px;
}

.ledger-link:hover {
  color: #6f410d;
}

/* --- Mobile & Tablet Response --- */
@media (max-width: 1024px) {
  .ledger-main-content { padding: 40px; }
  .ledger-details-row { flex-direction: column; gap: 30px; }
  .ledger-headline { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .ledger-outer-frame { flex-direction: column; }
  .ledger-accent-sidebar { width: 100%; height: 60px; padding-top: 0; align-items: center; }
  .ledger-main-content { padding: 30px 20px; }
}


/* --- Sitemap Architectural Index --- */
.sitemap-index-suite {
  padding: 20px 5%;
  background: url('../images/new/antique-texture.jpg');
  background-size: cover;
  display: flex;
  justify-content: center;
}

.index-parchment {
  max-width: 1100px;
  width: 100%;
  background: #ffffff;
  padding: 80px;
  border: 1px solid #eee5d8;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.05);
}

/* Add a double border look without extra HTML */
.index-parchment::before {
  content: '';
  position: absolute;
  top: 15px; left: 15px; right: 15px; bottom: 15px;
  border: 1px solid #eee5d8;
  pointer-events: none;
}

.index-header {
  text-align: center;
  margin-bottom: 60px;
}

.index-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #6f410d;
  display: block;
  margin-bottom: 20px;
}

.index-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #2a4d37;
  margin-bottom: 25px;
}

.index-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.index-ornament {
  width: 100px;
  height: 1px;
  background: #d4af37;
  margin: 40px auto 0;
  position: relative;
}

.index-ornament::after {
  content: '◈';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 10px;
  color: #2a4d37;
}

/* The Column Layout (No boxes, just lines) */
.index-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}

.index-col {
  padding: 0 40px;
  text-align: center;
}

/* Vertical dividers between columns */
.index-col:not(:last-child) {
  border-right: 1px solid #eee5d8;
}

.col-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #6f410d;
  margin-bottom: 30px;
}

.index-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.index-list li {
  margin-bottom: 18px;
}

.index-list li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-decoration: none;
  color: #2a4d37;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.index-list li a:hover {
  color: #6f410d;
  letter-spacing: 1.5px; /* Subtle expansion on hover */
}

.index-footer-mark {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: #eee5d8;
  letter-spacing: 2px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .index-parchment { padding: 60px 30px; }
  .index-title { font-size: 2.2rem; }
  .index-columns { grid-template-columns: 1fr; gap: 40px; }
  .index-col:not(:last-child) { border-right: none; border-bottom: 1px solid #eee5d8; padding-bottom: 40px; }
}

/* --- FAQ Ledger Suite --- */
.faq-ledger-suite {
  background: #fdfbf7;
  padding: 100px 5%;
  border-top: 1px solid #eee5d8;
}

.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: 150px;
}

.faq-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #6f410d;
  display: block;
  margin-bottom: 15px;
}

.faq-headline {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: #2a4d37;
  line-height: 1.1;
  margin-bottom: 25px;
}

.faq-headline span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #6f410d;
}

.faq-context {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.faq-stamp {
  margin-top: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  color: #eee5d8;
  letter-spacing: 2px;
  border: 1px solid #eee5d8;
  display: inline-block;
  padding: 10px 20px;
}

/* Entry Styling (The List) */
.faq-entries {
  flex: 1;
}

.faq-entry {
  display: flex;
  gap: 30px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee5d8;
  transition: 0.3s;
}

.entry-no {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #d4af37;
  font-style: italic;
  padding-top: 5px;
}

.faq-entry h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #2a4d37;
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-entry p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

.antique-link {
  color: #6f410d;
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.antique-link:hover {
  border-bottom: 1px solid #6f410d;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .faq-ledger-wrapper { flex-direction: column; gap: 50px; }
  .faq-sidebar { flex: none; text-align: center; }
  .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: 1rem; }
}

/* Unique Reservation Hero Styles */
.res-hero-container {
  position: relative;
  height: 70vh; /* Reduced height for reservation page */
  min-height: 400px;
  overflow: hidden;
  background-color: #4E8B8A;
}

.res-hero-item {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.res-hero-item.active {
  opacity: 1;
  z-index: 2;
}

.res-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* Static dark overlay */
}

.res-hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.res-hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: #FFEB3B;
  display: block;
  margin-bottom: 10px;
}

.res-hero-title {
  font-size: 3.5rem;
  text-transform: uppercase;
  color: #F2A900;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.res-hero-desc {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-top: 10px;
}

/* Side Navigation Arrows */
.res-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  padding: 20px;
  color: #FFEB3B;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.res-nav-btn:hover { background: rgba(0,0,0,0.5); }
.res-prev { left: 0; border-radius: 0 5px 5px 0; }
.res-next { right: 0; border-radius: 5px 0 0 5px; }

@media (max-width: 768px) {
  .res-hero-container { height: 40vh; }
  .res-hero-title { font-size: 2.2rem; }
  .res-nav-btn { padding: 10px; font-size: 1.5rem; }
}