﻿@import url('https://fonts.googleapis.com/css2?family=Literata:wght@400;500;600&family=Montserrat:wght@400;500;600&display=swap');

/* Reset & Base Layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #ffffff;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 100 100'%3E%3Cg stroke='%23CCC' stroke-width='0' %3E%3Crect fill='%23F5F5F5' x='-60' y='-60' width='109' height='240'/%3E%3C/g%3E%3C/svg%3E");
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
   font-family: 'Montserrat', sans-serif;
  margin: 0 0 1em;
  font-weight:400;
  
}

/* ===== MAIN HEADER WRAPPER ===== */
/* ===== MAIN HEADER WRAPPER ===== */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)); /* White fade effect */
  backdrop-filter: blur(8px); /* Subtle blur effect */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
  border-bottom: 2px solid rgba(0, 0, 0, 0.1); /* Soft bottom border */
}

/* ===== TOPBAR ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0)); /* White fade effect */
  border-top: 3px solid #006341; /* Green border */
  border-bottom: 1px solid #ddd;
}


.topbar-left, .topbar-center, .topbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  justify-content: center;
}
.bordered-section {
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}

.topbar-left { border-left: none; }
.topbar-right { border-right: none; }

.blank-col { width: 50px; }

.address {
  color: #333;
  font-size: 16px;
  font-weight: 400;
}

.logo {
  height: 100px;
  padding: 10px 0;
}


/* ===== SOCIAL ICONS ===== */
.social-icons a {
  color: #006341;
  font-size: 18px;
  margin-left: 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #b08a40; /* Gold hover effect */
}

/* ===== MENU BAR ===== */
.menu-bar {
  background: transparent; /* Transparent background */
  border-top: 1px solid rgba(0, 0, 0, 0.1); /* Soft top border */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Soft bottom border */
}

.menu-bar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-bar ul li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}



.menu-bar ul li a {
  display: block;
  padding: 14px 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.menu-bar ul li a:hover {
  color: #fff; /* Green text on hover */
  border: 2px solid #006341; /* Green border outline on hover */
}

/* ===== DROPDOWN MENU ===== */
.menu-bar ul li.dropdown {
  position: relative;
}

.menu-bar ul li .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.8); /* Faded background */
  min-width: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #e4e4e4;
  z-index: 1000;
  display: none;
  flex-direction: column;
}

.menu-bar ul li .dropdown-menu li {
  border-bottom: 1px solid #eee;
}

.menu-bar ul li .dropdown-menu li:last-child {
  border-bottom: none;
}

.menu-bar ul li .dropdown-menu li a {
  padding: 12px 20px;
  color: #333;
  font-weight: 400;
  text-decoration: none;
  display: block;
  transition: background 0.3s, color 0.3s;
}

.menu-bar ul li .dropdown-menu li a:hover {
  background: #006341; /* Green background on hover */
  color: #fff;
}

/* Show dropdown on hover */
.menu-bar ul li.dropdown:hover .dropdown-menu {
  display: flex;
}

/* ===== DROPDOWN ICON STYLE ===== */
.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 6px;
  transition: transform 0.3s ease;
}

/* Optional: rotate on hover */
.menu-bar ul li.dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* ===== HAMBURGER ICON ===== */
.hamburger {
  display: none; /* Hidden by default */
  font-size: 28px;
  color: #007054;
  cursor: pointer;
  margin-left: 15px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* ===== DARK OVERLAY ===== */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  z-index: 1500;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  color: #333;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
  transition: right 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  border-radius: 8px 0 0 8px;
}

.mobile-menu.open {
  right: 0;
}

/* ===== MOBILE MENU HEADER ===== */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  height: 50px;
  
}

.close-btn {
  font-size: 30px;
  cursor: pointer;
  color: #333;
  transition: transform 0.3s ease;
}

.close-btn:hover {
  transform: rotate(90deg);
}

/* ===== MOBILE MENU LINKS ===== */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateX(30px);
  animation: slideIn 0.4s ease forwards;
}

.mobile-menu ul li:nth-child(1) {
  animation-delay: 0.2s;
}

.mobile-menu ul li:nth-child(2) {
  animation-delay: 0.3s;
}

.mobile-menu ul li:nth-child(3) {
  animation-delay: 0.4s;
}

.mobile-menu ul li:nth-child(4) {
  animation-delay: 0.5s;
}

.mobile-menu ul li:nth-child(5) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile menu link style */
.mobile-menu ul li a {
  display: block;
  padding: 14px 20px;
  background: #f5f5f5;
  color: #006341;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  text-align: left;
  margin: 8px 20px;
  border-radius: 6px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
  background: #006341;
  color: #fff;
  border: 1px solid #006341;
}

/* ===== CALL NOW BOX ===== */
.call-now-box {
  background: #006341;
  margin: 20px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.call-now-box p {
  margin: 5px 0;
  color: #F2C94C;
  font-weight: bold;
}

.call-now-box a {
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}

/* ===== MOBILE SOCIAL ICONS ===== */
.mobile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-social a {
  font-size: 20px;
  color: #006341;
  transition: color 0.3s ease;
}

.mobile-social a:hover {
  color: #F2C94C;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .menu-bar {
    display: none;
  }

  .hamburger {
    display: block;
  }
   .logo {
    height: 80px; /* Adjust logo size for smaller screens */
  }
  .address {
   display: none;
  }
  .social-icons{
	  display: none;
  }
  
}

/* ===== MOBILE DROPDOWN HOVER STYLE ===== */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown:hover .mobile-submenu {
  display: flex;
  flex-direction: column;
}

.mobile-submenu {
  display: none;
  padding-left: 20px;
  margin-top: 0;
}

.mobile-submenu li a {
  background: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 15px;
  color: #333;
  margin: 0;
  border-radius: 0;
}

.mobile-submenu li a:hover {
  color: #006341;
}

/* Optional: rotate arrow on hover */
.mobile-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* ===== STICKY HEADER ===== */
.sticky-header {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: top 0.4s ease-in-out;
  z-index: 9999;
  padding: 6px 0;
}

/* When visible */
.sticky-header.visible {
  top: 0;
}

/* Layout */
.sticky-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.sticky-logo img {
  height: 60px;
}

/* Desktop Nav */
.sticky-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sticky-nav ul li {
  margin-left: 20px;
}

.sticky-nav ul li a {
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #333;
  padding: 8px 14px;
  transition: background 0.3s ease;
  border-radius: 4px;
}

.sticky-nav ul li a:hover {
  background: #006341;
  color: #fff;
}

/* Mobile Hamburger (hidden on desktop) */
.sticky-hamburger {
  display: none;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  padding: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease;
}

.sticky-hamburger:hover {
  background-color: rgba(0, 0, 0, 0.15);
}

/* Dropdown for Desktop */
.sticky-nav .dropdown {
  position: relative;
}

.sticky-nav .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  display: none;
  min-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sticky-nav .dropdown:hover .dropdown-menu {
  display: block;
  
}

.sticky-nav .dropdown-menu li {
  padding: 0px;
}

.sticky-nav .dropdown-menu li a {
  text-decoration: none;
  color: #333;
  display: block;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  
 
}

.sticky-nav .dropdown-menu li a:hover {
  background-color: #006341;
  border-radius: 0px;
  color: #fff;
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .sticky-nav {
    display: none;
  }

  .sticky-hamburger {
    display: block;
  }

  .sticky-nav.active {
    display: block;
  }

  /* Mobile Dropdown - Show dropdown on click */
  .sticky-nav .dropdown-menu {
    position: static;
    display: none;
    background-color: #fff;
  }

  .sticky-nav .dropdown.active .dropdown-menu {
    display: block;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  z-index: 1;
  margin-top: 120px;
  /* Gradient from green to yellow from the logo colors */
  background: linear-gradient(to bottom, rgba(0, 99, 65, 0.8), rgba(242, 201, 76, 0.8)); /* Dark green to yellow gradient */
  clip-path: ellipse(50% 100% at 50% 15%); /* Clip the top part with an ellipse */
}

/* ===== SLIDES ===== */
.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

/* ===== DARK OVERLAY for better text visibility ===== */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

/* ===== SLIDE CAPTIONS ===== */
.slide-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: all 1s ease;
}

.hero-slide.active .slide-caption {
  opacity: 1;
}

.slide-caption h2 {
  font-size: 60px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}

.slide-caption p {
  font-size: 22px;
  font-weight: 300;
  margin-top: 10px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}

/* ===== HERO FADES ===== */
.hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  z-index: 3;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: 3;
}

/* ===== SLIDER CONTROLS ===== */
.hero-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
  z-index: 4;
}

.hero-controls .prev,
.hero-controls .next {
  font-size: 30px;
  color: white;
  cursor: pointer;
  user-select: none;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.hero-controls .prev:hover,
.hero-controls .next:hover {
  background: #006341;
  color: #fff;
}

/* ===== DOT INDICATORS ===== */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dots .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dots .dot.active {
  background: #F2C94C;
}

/* ===== SCROLL ICON ===== */
.scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 25px;
  cursor: pointer;
  z-index: 4;
}

.scroll-down span {
  display: block;
  width: 6px;
  height: 6px;
  background: white;
  margin: 10px auto;
  border-radius: 50%;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0.5; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== MOBILE ===== */
/* ===== MOBILE ===== */
@media (max-width: 768px) {
	
  .slide-caption h2 { 
    font-size: 36px; 
  }
  .slide-caption p { 
    font-size: 16px; 
  }
  .hero-controls .prev,
  .hero-controls .next {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .hero {
    height: 60vh;

    /* Remove clip-path on mobile */
    clip-path: none;
    border-radius: 0; /* optional, in case you had any border-radius effects */
  }
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 8%;
  background: Transparent; /* light neutral background */
  gap: 80px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}

/* ===== LEFT TEXT ===== */
.welcome-content {
  flex: 1;
  max-width: 45%;
  animation: fadeInLeft 1s ease-out;
}

.tagline {
  font-size: 15px;
  color: #F2C94C; /* gold */
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-weight: 600;
}

.welcome-content h2 {
  font-size: 50px;
  margin-bottom: 24px;
  color: #006341; /* dark green */
  line-height: 1.2;
  font-weight: 700;
  border-bottom: 2px solid #F2C94C; /* gold underline */
}

.welcome-content  {
  font-size: 18px;
  color: #333; /* darker neutral text */
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more-btn {
  background: #F2C94C; /* gold button */
  color: #006341; /* dark green text */
  padding: 15px 42px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  margin-top: 30px;
  /* Leaf / D shape */
  clip-path: polygon(
    0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%
  ); /* Custom polygon simulating a “D” shape */
}
.read-more-btn:hover {
  background: #d4af37; /* deeper gold */
  transform: translateY(-4px);
  color: #fff;
}
/* ===== RIGHT IMAGE AREA ===== */
.welcome-images {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease-out;
}

/* BIG IMAGE */
.big-image-wrapper {
  max-width: 660px;
  overflow: hidden;
  
  box-shadow: 0 12px 35px rgba(0, 99, 65, 0.25);
  position: relative;
border: 2px solid #fff;
  /* Leaf / D shape */
  clip-path: polygon(
    0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%
  ); /* Custom polygon simulating a “D” shape */
  top: 80px;
}

.big-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
  
}
.big-image-wrapper:hover .big-image {
  transform: scale(1.03);
}

/* SMALL IMAGE (floats over big one) */
.small-image-wrapper {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 380px;
  
  overflow: hidden;
  border: 2px solid #f9f7f3;
  
  z-index: 5;
  background: #fff;
/* Leaf / D shape */
  clip-path: polygon(
    0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%
  ); /* Custom polygon simulating a “D” shape */
 
}

.small-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.small-image-wrapper:hover .small-image {
  transform: scale(1.05);
}

/* GOLD ACCENT LINE */
.gold-line {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #F2C94C, #b08a40); /* gold gradient */
  border-radius: 2px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .welcome-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .welcome-content {
    max-width: 100%;
  }

  .small-image-wrapper {
    top: -30px;
    right: 50%;
    transform: translateX(50%);
    width: 180px;
  }
}

/* ===== FULLSCREEN INFO BLOCK ===== */
.fullscreen-info {
  display: none;
  text-align: left;
  max-width: 900px;
  width: 100%;
  animation: fadeIn 0.5s ease;
}

.fullscreen-info h2 {
  font-size: 50px;
  margin-bottom: 30px;
  color: #006341; /* dark green */
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.fullscreen-info p {
  font-size: 20px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.fullscreen-info p strong {
  color: #F2C94C; /* gold highlights */
  font-size: 21px;
}

/* Read Less Button */
.read-less-btn {
  background: #F2C94C; /* gold button */
  color: #006341; /* dark green text */
  padding: 15px 42px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
 /* Flipped D / Leaf shape, arrow on the left */
clip-path: polygon(
  100% 0%,  /* top-right */
  20% 0%,   /* top-left-ish */
  0% 50%,   /* left tip */
  20% 100%, /* bottom-left-ish */
  100% 100% /* bottom-right */
);
  
}
.read-less-btn:hover {
  background: #d4af37;
  transform: translateY(-4px);
  color: #fff;
}

/* ===== FULLSCREEN MODE ===== */
.welcome-section.fullscreen-mode {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f9f9f9;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  padding: 40px 10% 60px;
  z-index: 9999;
  overflow-y: auto;
  box-sizing: border-box;
}

/* Hide normal welcome content + images in fullscreen */
.welcome-section.fullscreen-mode .welcome-images,
.welcome-section.fullscreen-mode .welcome-content {
  display: none;
}

/* Show hidden fullscreen info */
.welcome-section.fullscreen-mode .fullscreen-info {
  display: block;
}

/* Scrollbar in fullscreen */
.welcome-section.fullscreen-mode::-webkit-scrollbar {
  width: 8px;
}
.welcome-section.fullscreen-mode::-webkit-scrollbar-thumb {
  background: #006341; /* dark green thumb */
  border-radius: 4px;
}
.welcome-section.fullscreen-mode::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.amenities-section {
  padding: 40px 20px;
  background: #f9f7f3;
  text-align: center;
}

/* Subtitle for amenities section */
.amenities-section .media-header {
  text-align: center;
  margin-bottom: 40px;
}

.amenities-section .subtitle {
  color: #F2C94C; /* Gold accent */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight:bold;
}

.amenities-section .section-title {
  font-size: 42px;
  color: #006341; /* Dark green */
  font-weight: 700;
  margin-bottom: 50px;
  border-bottom: 3px solid #F2C94C; /* Gold underline */
  display: inline-block;
  padding-bottom: 6px;
}


.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Amenity icon */
.amenity em {
  font-size: 46px;
  color: #fff;
  background: #006341;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

/* Hover effect: outline with filled icon color */
.amenity:hover em {
  background: transparent;
  color: #006341;
  border: 2px solid #006341;
}

/* Amenity Title */
.amenity-title {
  font-size: 20px;
  font-weight: 600;
  margin: 5px 0;
  color: #333;
}

/* Amenity Description */
.amenity-desc {
  font-size: 18px;
  color: #555;
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
}

/* Hover title color */
.amenity:hover .amenity-title {
  color: #006341;
}

/* MOBILE */
@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .section-title {
    font-size: 26px;
  }
  .amenity i {
    font-size: 30px;
    padding: 15px;
  }
  .amenity-title {
    font-size: 16px;
  }
  .amenity-desc {
    font-size: 13px;
    max-width: 140px;
  }
}
/* Rooms Section Title & Subtitle */
.rooms-section .rooms-header {
  text-align: center;
  margin-bottom: -40px;
  position: relative;
  z-index: 2; /* Above overlay */
  padding: 30px 20px;
}

.rooms-section .subtitle {
  color: #fff; /* Gold accent */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
   font-weight:bold;
 
  
}

.rooms-section .section-title {
  font-size: 46px;
  color: #fff; /* Dark green */
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 3px solid #F2C94C; /* Gold accent underline */
  display: inline-block;
  padding-bottom: 6px;
}


.rooms-section .container {
  position: relative;
  z-index: 2; /* content above overlay */
}



.rooms-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.rooms-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.room-slide {
  flex: 0 0 calc(33.333% - 13.33px); /* 3 slides per row */
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.room-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-slide:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.room-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  padding: 15px;
  color: #fff;
  transition: background 0.3s ease;
}

.room-info h3 {
  margin: 0 0 5px;
  font-size: 20px;
}

.room-info p {
  font-size: 14px;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .room-slide {
    flex: 0 0 calc(50% - 10px); /* 2 per row */
  }
}

@media (max-width: 768px) {
  .room-slide {
    flex: 0 0 100%; /* 1 per row */
  }
  .rooms-section .section-title {
    font-size: 28px;
  }
}

.attractions-section {
  padding: 60px 20px;
  background: #f9f7f3;
}

/* Center container with max width */
.attractions-container {
  max-width: 1300px; /* limit width */
  margin: 0 auto;    /* center horizontally */
 
}

/* Subtitle above section title */
.attraction-header {
  text-align: center;
  margin-bottom: 40px;
}

.subtitle {
  color: #F2C94C; /* Gold accent */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
   font-weight:bold;
}

.section-title1 {
  font-size: 46px;
  color: #006341; /* Dark green */
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #F2C94C; /* Gold accent underline */
  display: inline-block;
  padding-bottom: 6px;
}


.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
}

/* Column 1: Info above image */
.attraction-col1,
.attraction-col3 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.attraction-col1 img,
.attraction-col3 img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.attraction-info-top {
  padding: 20px;
  background: #fff;
  color: #006341;
}

.attraction-info-top h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight:500;
}

.attraction-info-top p {
  font-size: 18px;
  line-height: 1.4;
}

/* Column 2: Top image, bottom info */
.attraction-col2 {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.attraction-col2 img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.attraction-info-bottom {
  padding: 15px;
  background: #fff;
  color: #006341;
}

.attraction-info-bottom h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight:500;
}

.attraction-info-bottom p {
  font-size: 18px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
  .attractions-container {
    padding: 0 20px;
  }
  .attractions-grid {
    grid-template-columns: 1fr 1fr;
  }
  .attraction-col1 img,
  .attraction-col3 img {
    height: 200px;
  }
  .attraction-col2 img {
    height: 120px;
  }
}

@media (max-width: 768px) {
  .attractions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .attraction-col1 img,
  .attraction-col2 img,
  .attraction-col3 img {
    height: 200px;
  }
}

.media-gallery-section {
  max-width: 1300px;
  margin: auto;
  padding: 50px 20px;
  color: #222;
  font-family: 'Arial', sans-serif;
}

.media-container {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.media-left, .media-right {
  flex: 1 1 48%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  border-bottom: 3px solid #F2C94C; /* Gold accent */
  display: inline-block;
  padding-bottom: 6px;
  color: #006341; /* Dark green */
  text-transform: uppercase;
}

.subtitle {
  color: #F2C94C; /* Gold accent */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.video-wrapper.coming-soon {
  background: #000 url('assets/images/youtube-thumb.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.video-placeholder {
  text-align: center;
}

.video-placeholder i {
  font-size: 64px;
  color: #F2C94C; /* Gold accent */
  margin-bottom: 10px;
}

.coming-text {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 4px;
}

.gallery-tabs {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.gallery-tabs .tab {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.2rem;
  padding: 10px 0;
  cursor: pointer;
  color: #aaa;
  transition: all 0.3s ease;
}

.gallery-tabs .tab.active {
  color: #F2C94C;
  border-bottom: 2px solid #F2C94C;
}

.gallery-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.gallery-slider img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-slider img.active {
  opacity: 1;
}

.gallery-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.gallery-controls button {
  background: transparent;
  border: 1px solid #F2C94C;
  color: #F2C94C;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-controls button:hover:not(:disabled) {
  background-color: #F2C94C;
  color: #fff;
}

.gallery-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gallery-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid #ddd;
  min-height: 60px;
}

@media (max-width: 768px) {
  .media-container {
    flex-direction: column;
  }
  .gallery-slider {
    height: 220px;
  }
}
.site-footer {
  background: linear-gradient(360deg, #ed8b00, #ffd058); /* Orange to gold gradient */
  padding: 60px 20px 30px;
  color: #1a1a1a; /* Dark text for contrast with bright gradient */
  font-size: 18px;
  line-height: 1.7;
  border-top: 3px solid #154734; /* Accent line in lighter gold */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-col {
  flex: 1 1 320px;
}

.footer-title {
  font-size: 28px;
  color: #1a1a1a; /* Dark color for heading contrast */
  
  position: relative;
  padding-bottom: 1px;
  display: inline-block;
  min-width: 190px;
  text-decoration:none;
 
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #1a1a1a;
}

.footer-info address,
.footer-info p {
  font-style: normal;
  margin: 10px 0;
  line-height: 1.6;
}

.footer-info a {
  color: #1a1a1a; /* Dark link color */
  text-decoration: none;
  font-weight: 500;
}

.footer-links-columns {
  display: flex;
  gap: 40px;
}

.footer-links-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-columns li {
  margin-bottom: 12px;
}

.footer-links-columns a {
  color: #1a1a1a; /* Dark text */
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
  font-size: 18px;
}

.footer-links-columns a:hover {
  color: #fff; /* Hover highlight in orange */
  border-color: #ed8b00;
  transform: translateY(-2px);
}

.footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  margin-bottom: 12px;
}

.footer-social a {
  color: #1a1a1a; /* Dark links */
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.footer-social i {
  margin-right: 8px;
  color: #154734; /* Icons in orange */
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 50px auto 0;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
  color: #1a1a1a;
  border-top: 1px solid #ffd058;
}

.footer-bottom-left small {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
}

.footer-bottom-right {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
}

.footer-bottom-right a,
.footer-bottom-right span,
.footer-bottom-right small {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom-right a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-bottom-right span {
  margin: 0 8px;
}

@media (max-width:580px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    text-align: left;
  }

  .footer-col {
    width: 100%;
  }

  .footer-links-columns {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-links-columns ul {
    width: 45%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-bottom-right {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* ===== AMENITIES SECTION STYLES ===== */
.amenities-section-wrapper {
  background-color: #f5f5f573;
  padding: 60px 0;
}

.amenities-container {
  width: 80%;
  margin: 0 auto;
}

.amenities-section-title {
  font-size: 40px;
  color: #154734;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.amenities-columns {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.amenities-box {
  width: 48%;
  background: linear-gradient(360deg, #ed8b0087, #ffd058);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenities-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.amenities-box-title {
  font-size: 28px;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 500;
}

.amenities-box-list {
  list-style: none;
  font-size: 18px;
  line-height: 1.8;
  padding-left: 0;
}

.amenities-box-list li {
  background-color: #f1f1f1;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.amenities-box-list li:hover {
  background-color: #f39c12;
  color: #fff;
  cursor: pointer;
}
.amenities-description {
  font-size: 18px;
  color: #444;
  text-align: center;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto 40px auto;
}

@media (max-width: 768px) {
  .amenities-columns {
    flex-direction: column;
  }

  .amenities-box {
    width: 100%;
  }
}

/* ===== INNER HERO SECTION ===== */
.inner-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
  z-index: 1;
  margin-top: 120px;
  background: linear-gradient(to bottom, rgba(0, 99, 65, 0.8), rgba(242, 201, 76, 0.8)); /* Dark green to yellow gradient */
   /* Apply clipping */
  clip-path: ellipse(50% 100% at 50% 15%);
}

/* ===== HERO IMAGE ===== */
.inner-hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}

/* ===== INNER HERO CAPTION ===== */
.inner-hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  transition: all 1s ease;
}

.inner-hero-image .inner-hero-caption {
  opacity: 1;
}

.inner-hero-title {
  font-size: 60px;
  
  font-weight: 600;
  margin-bottom: 15px;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.90);
}

.inner-hero-description {
  font-size: 22px;
  font-weight: 300;
  margin-top: 10px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.90);
}

/* ===== HERO FADES ===== */
.inner-hero-fade-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0));
  z-index: 3;
}

.inner-hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0));
  z-index: 3;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
  .inner-hero {
    height: 50vh; /* smaller hero height on mobile */
    clip-path: none;
    border-radius: 0; /* Optional for mobile */
  }

  .inner-hero-title {
    font-size: 36px;
  }

  .inner-hero-description {
    font-size: 16px;
  }
}

/* ===== THINGS TO DO SECTION ===== */
.things-to-do {
  background-color: #f5f5f573;
  padding: 30px 0;
}

.things-to-do .container10 {
  width: 80%;
  margin: 0 auto;
}

.things-to-do-title {
  font-size: 40px;
  color: #154734;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.things-to-do-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.thing-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thing-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.thing-card-content {
  padding: 20px;
}

.thing-card-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 500;
}

.thing-card-description {
  font-size: 16px;
  color: #555;
}
.things-to-do-description {
  font-size: 18px;
  color: #444;
  text-align: center;
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto 50px auto;
}

@media (max-width: 1024px) {
  .things-to-do-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .things-to-do-grid {
    grid-template-columns: 1fr;
  }

  .thing-card-title {
    font-size: 20px;
  }

  .thing-card-description {
    font-size: 14px;
  }
}
/* ===== WHAT'S NEARBY SECTION ===== */
.whats-nearby {
  background-color:#f5f5f573;
  padding: 20px 0;
}

.whats-nearby .container10 {
  width: 80%;
  margin: 0 auto;
}

.whats-nearby-title {
  font-size: 40px;
  color: #154734;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}

.whats-nearby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 0 20px;
}

.whats-nearby-category {
  background: linear-gradient(360deg, #ed8b0087, #ffd058);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.whats-nearby-category-title {
  font-size: 28px;
  color: #154734;
  margin-bottom: 25px;
  font-weight: 600;
  text-align: left;
}

.whats-nearby-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whats-nearby-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.whats-nearby-card-title {
  font-size: 22px;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 10px;
}

.whats-nearby-card-description {
  font-size: 18px;
  color: #555;
}

@media (max-width: 1024px) {
  .whats-nearby-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .whats-nearby-grid {
    grid-template-columns: 1fr;
  }

  .whats-nearby-card-title {
    font-size: 20px;
  }

  .whats-nearby-card-description {
    font-size: 16px;
  }
}

/* Location Section Header */
.location-section-hero {
  background: #f5f5f573; /* Soft white background */
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #006341; /* La Quinta Green */
  margin-bottom: 15px;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #4a4a4a; /* Darker grey text for readability */
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #fecb51; /* La Quinta Yellow for background */
  padding: 20px;
  border-left: 5px solid #006341; /* La Quinta Green for accent border */
  margin-bottom: 25px;
  border-radius: 10px;
}

.coordinates-area h4,
.directions-area h4 {
  color: #006341; /* Deep Blue for heading */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
  color: #333333; /* Dark grey text */
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #006341; /* La Quinta Green */
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s;
}

.directions-area form button:hover {
  background: #004d2c; /* Darker green on hover */
}

/* Right Side Map */
.location-map-box {
  flex: 1;
  background: #f4f9f6; /* Soft greenish background for map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Custom Location Header */
.custom-location-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #f5f5f573; /* Light white background */
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006341; /* La Quinta Green */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #fecb51; /* La Quinta Yellow accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  font-size: 20px;
  line-height: 1.8;
  color: #4a4a4a; /* Dark grey text */
  max-width: 1280px;
  margin: 0 auto;
}
/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f5f5f573; /* Soft white background for the header */
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006341; /* La Quinta Green for the title */
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #fecb51; /* La Quinta Yellow for accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dark gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #f5f5f573; /* Soft white background */
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* White background for the content box */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #006341; /* La Quinta Green for main headings */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #4a4a4a; /* Darker gray for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #fecb51; /* La Quinta Yellow for contact details area */
  padding: 20px;
  border-left: 5px solid #006341; /* La Quinta Green border accent */
  margin-bottom: 25px;
  border-radius: 10px;
}

.contact-details-area h4 {
  color: #006341; /* La Quinta Green for subheadings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
  color: #333; /* Dark gray text */
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.contact-details-area a {
  color: #006341; /* La Quinta Green for links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #004c30; /* Darker green on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #e4edf2; /* Very light blue background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}
/* 📍 La Quinta Inn & Suites Paris, TX Sitemap Section */
.sitemap-section {
    padding: 30px 20px;
    background:  #f5f5f573; /* Soft white gradient background */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #006341; /* La Quinta Green for the title */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 1.2rem;
    color: #4a4a4a; /* Dark gray text for readability */
    margin-bottom: 50px;
    font-weight: 400;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 99, 65, 0.08); /* La Quinta Green shadow */
    border: 1px solid #e3e3e3; /* Light gray border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 99, 65, 0.15); /* Darker green shadow on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #fecb51; /* La Quinta Yellow accent */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #006341; /* La Quinta Green for links */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #fecb51; /* La Quinta Yellow for icons */
}

.sitemap-block ul li a:hover {
    color: #004d2c; /* Darker green on hover effect */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}
/* 🎯 FAQ Section - La Quinta Inn & Suites Paris, TX */
.faq-section {
    padding: 30px 20px;
    background:  #f5f5f573; /* Light background for readability */
    color: #1a1a1a;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a{
    font-size: 3rem;
    font-weight: 700;
    color: #006341; /* La Quinta Green for titles */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #333333; /* Dark gray for subtitle */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #fff; /* White background for each FAQ item */
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e3e3e3; /* Soft light gray border */
    box-shadow: 0 8px 20px rgba(0, 99, 65, 0.08); /* La Quinta Green shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #fecb51; /* La Quinta Yellow accent */
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 99, 65, 0.12); /* Darker green shadow on hover */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #006341; /* La Quinta Green for FAQ headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #fecb51; /* La Quinta Yellow dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #333333; /* Dark gray text for body */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #006341; /* La Quinta Green for links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fecb51; /* La Quinta Yellow underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #fecb51; /* La Quinta Yellow on hover */
}

.faq-item a:hover::after {
    width: 100%; /* Full width La Quinta Yellow underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}
/* Attraction Section */
.attraction-wrap {
  padding: 100px 20px;
 
  /* Clean white background gradient for consistency with main layout */
  background-size: cover;

}

/* Flex container */
.attraction-box {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

/* Image styles */
.attraction-image {
  flex: 1 1 400px;
}

.attraction-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Content area */
.attraction-content {
  flex: 1 1 600px;
}

/* Title styling */
.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #004d40; /* Deep green — matches brand’s tone */
  margin-bottom: 20px;
}

/* Paragraph text */
.attraction-content p {
  font-size: 18px;
  color: #333333; /* Readable dark gray text */
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button styling */
.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(90deg, #f5b335 0%, #ffcc66 100%);
  color: #004d40;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hover and active states */
.attraction-btn:hover {
  background: linear-gradient(90deg, #ffcc66 0%, #ffe199 100%);
  color: #00332d;
}

.attraction-btn:active {
  background: linear-gradient(90deg, #f5b335 0%, #ffb84d 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .attraction-wrap {
    margin-top: 0;
  }

  .attraction-box {
    flex-direction: column;
  }

  .attraction-image {
    order: 2;
  }

  .attraction-content {
    order: 1;
    text-align: center;
  }

  .attraction-title {
    font-size: 2.2rem;
  }
}
