﻿@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Rubik:wght@400;500;700&display=swap');

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
background: linear-gradient(90deg, #1a1f1c, #2c4631); /* forest gradient */
  color: #333;
}
/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === INFO BAR === */
.info-bar {
  background: #f7f7f7;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}
.info-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.info-content span, .info-content a {
  color: #2a2a2a;
  text-decoration: none;
}
.social-icons a {
  margin: 0 5px;
  color: #004225;
}
.social-icons a:hover {
  color: #b08a40;
}

/* === NAVIGATION BAR === */
.nav-bar {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
.logo img {
  height: 100px;
}
.nav-links ul {
  display: flex;
  list-style: none;
  gap: 25px;
}
.nav-links ul li a {
  text-decoration: none;
  color: #2a2a2a;
  font-weight: 500;
  font-size: 16px;
  padding: 10px;
  transition: all 0.3s ease;
}
.nav-links ul li a:hover {
  color: #004225;
}
/* Active Link Styling */
.nav-links li a.active {
  color: #004225; /* Green color for active link */
  font-weight: 700;
  text-decoration: none; /* Optional underline for active link */
}

/* Dropdown container */
.dl-dropdown {
  position: relative;
}

/* Portrait dropdown menu */
.dl-dropdown .dl-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 10px 60px;
  background: #365c41; /* Dark green base */
  border:2px solid #fff;
  min-width: 180px;
  list-style: none;
  padding: 10px 0;
  
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
  display: block;
}

/* Dropdown items */
.dl-dropdown .dl-dropdown-menu li {
  width: 100%;
  margin: 0;
}

.dl-dropdown .dl-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: #f8f9f7; /* Light text for contrast */
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

/* Add subtle hover effect with gradient */
.dl-dropdown .dl-dropdown-menu li a:hover {
  background: linear-gradient(90deg, #3e6644, #2c4631);
   border:2px solid #fff;
  color: #fff;
   border-radius: 10px 60px;
  padding-left: 25px;
}

/* Dropdown arrow */
.dl-dropdown a i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.dl-dropdown:hover a i {
  transform: rotate(180deg);
}

/* Show dropdown on hover */
.dl-dropdown:hover .dl-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* === HAMBURGER (Mobile Only) === */
.hamburger {
  display: none;
  font-size: 28px;
  color: #004225;
  cursor: pointer;
}

/* === MOBILE MENU === */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: #ffffff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1200;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-logo {
  height: 50px;
}
.close-btn {
  font-size: 26px;
  color: #2a2a2a;
  cursor: pointer;
}

/* === MOBILE NAV LINKS === */
.mobile-nav-links {
  list-style: none;
  margin-top: 30px;
}
.mobile-nav-links li {
  margin-bottom: 15px;
}
.mobile-nav-links li a {
  display: block;
  padding: 12px;
  background: #f7f7f7;
  border-radius: 6px;
  color: #004225;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-nav-links li a:hover {
  background: #004225;
  color: #fff;
}

/* === MOBILE SOCIAL ICONS === */
.mobile-social {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding-top: 20px;
}
.mobile-social a {
  font-size: 20px;
  color: #004225;
}
.mobile-social a:hover {
  color: #b08a40;
}

/* === OVERLAY === */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 1100;
}
.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
/* Expanding dropdown container */
.mobile-expand-dropdown {
  position: relative;
}

/* Sub-menu hidden by default */
.mobile-expand-menu {
  list-style: none;
  padding-left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Sub-menu items */
.mobile-expand-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  color: #004225;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.mobile-expand-menu li a:hover {
  background: #365c41;
  color: #fff;
}

/* Expand on hover */
.mobile-expand-dropdown:hover .mobile-expand-menu {
  max-height: 500px; /* Enough height to fit all submenu items */
  padding-top: 5px;
  padding-bottom: 5px;
}

/* Rotate caret on hover */
.mobile-expand-dropdown:hover .mobile-expand-toggle i {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

/* === RESPONSIVE === */
@media (max-width: 991px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
/* ===== STICKY HEADER ===== */
.sticky-header {
  position: fixed;
  top: -120px;
  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: 9998;
  padding: 6px 0; /* ✅ compact */
}

/* 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: 100px;
}

/* 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);
}
/* Sticky Dropdown container */
.sticky-dropdown {
  position: relative;
}

/* Vertical Dropdown Menu */
.sticky-dropdown-menu-vertical {
  position: absolute;
  top: 100%; /* Position below parent link */
  left: 0;
  width: 200px; /* Fixed width for vertical dropdown */
  border-radius: 10px 60px;
  background: #fff; /* Lighter green for dropdown */
  border: 2px solid #3e6644; /* White border for accent */
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 9999;
  flex-direction: column; /* Stack items vertically */
}

/* Dropdown Items */
.sticky-dropdown-menu-vertical li a {
  display: block;
  padding: 10px 15px;
  font-size: 17px;
  color: #f8f9f7; /* Light text for contrast */
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 4px;
}

.sticky-dropdown-menu-vertical li a:hover {
  background: #2c4631; /* Darker green on hover */
  color: #f8f9f7;
  border-radius: 10px 60px; /* Keep the unique radius */
}

/* Show dropdown on hover */
.sticky-dropdown:hover .sticky-dropdown-menu-vertical {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Caret rotation */
.sticky-dropdown-toggle i {
  transition: transform 0.3s ease;
}

.sticky-dropdown:hover .sticky-dropdown-toggle i {
  transform: rotate(180deg);
}

/* ✅ Responsive adjustments */
@media (max-width: 992px) {
  .sticky-nav {
    display: none; /* Hide menu links on mobile */
  }
  .sticky-hamburger {
    display: block; /* Show hamburger on mobile */
  }
}
/* ===== ROOT HERO ===== */
.collage-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1a1f1c; /* fallback dark */
}

/* ===== BACKGROUND ===== */
.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('../images/family.jpg') center/cover no-repeat;
  filter: blur(6px) brightness(0.4);
  z-index: 1;
  overflow: hidden;
}

/* ===== FLOATING FIREFLIES ===== */
.firefly {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #F2C94C;
  border-radius: 50%;
  opacity: 0.8;
  box-shadow: 0 0 12px 4px rgba(242, 201, 76, 0.6);
  animation: drift 12s linear infinite, blink 3s ease-in-out infinite alternate;
  z-index: 2;
}

@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, -80px) scale(1.2); }
  100% { transform: translate(-40px, 100px) scale(1); }
}

@keyframes blink {
  from { opacity: 0.3; }
  to   { opacity: 1; }
}

/* ===== IMAGE COLLAGE ===== */
.image-collage {
  position: absolute;
  width: 100%; height: 100%;
  z-index: 3;
}

.image-collage .img {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  transition: all 1s ease-in-out;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  animation: floaty 6s ease-in-out infinite;
}

.image-collage .img img {
  width: 100%; height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  border: 3px solid rgba(76, 128, 107, 0.6); /* forest teal border */
}

/* Floating animation for pinned images */
@keyframes floaty {
  0%   { transform: translateY(0) rotate(var(--rotate, 0deg)); }
  50%  { transform: translateY(-12px) rotate(var(--rotate, 0deg)); }
  100% { transform: translateY(0) rotate(var(--rotate, 0deg)); }
}

/* === Pinned Layout === */
.img-1 { top: 10%; left: 5%; width: 250px; height: 180px; --rotate: -6deg; }
.img-2 { top: 20%; right: 10%; width: 320px; height: 250px; --rotate: 4deg; }
.img-3 { bottom: 15%; left: 7%; width: 350px; height: 240px; --rotate: 8deg; }
.img-4 { bottom: 10%; right: 12%; width: 470px; height: 210px; --rotate: -3deg; }
.img-5 { top: 5%; left: 30%; width: 540px; height: 190px; --rotate: 1deg; }

/* ===== SPOTLIGHT (active image expands) ===== */
.image-collage .img.active {
  animation: none !important; /* disable float */
  top: 50% !important;
  left: 50% !important;
  width: 100% !important;
  height: 100% !important;
  transform: translate(-50%, -50%) scale(1.1) rotate(0deg) !important;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 40px rgba(74,123,108,0.7);
  z-index: 6;
}

/* ===== CAPTION BOX ===== */
.caption-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: rgba(44, 70, 49, 0.8); /* forest green bg */
  border: 2px solid #4A7B6C; /* teal accent border */
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  transition: all 0.6s ease;
  min-width: 280px;
}

.caption-box h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.caption-box p {
  font-size: 1.2rem;
  color: #A8D5BA; /* lighter green for contrast */
}

.img.active .caption-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ===== HERO MESSAGE ===== */
.hero-message {
  position: relative;
  z-index: 4;
  color: #fff;
  max-width: 650px;
  padding: 20px;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
  transition: opacity 0.6s ease;
}

.hero-message h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  color: #A8D5BA;
}
.hero-message h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #FFD700;
}
.hero-message p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #ddd;
}

/* Hide hero message when spotlight active */
.collage-hero-slider.spotlight-on .hero-message {
  opacity: 0;
  visibility: hidden;
}

/* ===== NAV DOTS ===== */
.slider-dots {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dots .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #4A7B6C;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: #4A7B6C;
  transform: scale(1.2);
}

/* ===== ARROWS ===== */
.slider-arrows {
  position: absolute;
  top: 50%; width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 11;
  pointer-events: none;
}

.slider-arrows .arrow {
  pointer-events: auto;
  font-size: 45px;
  background: rgba(44,70,49,0.1);
  border: 2px solid #4A7B6C;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider-arrows .arrow:hover {
  background: #4A7B6C;
  transform: scale(1.1);
}

/* ===== RESPONSIVE ===== */
/* ===== MOBILE HERO (only visible on small screens) ===== */
.mobile-hero {
  display: none; /* hidden by default */
}

@media (max-width: 1080px){
	.collage-hero-slider{
		height: 50vh;
		
	}
}

@media (max-width: 767px) {
  .collage-hero-slider {
    display: none; /* hide collage hero on mobile */
  }

  .mobile-hero {
    display: block;
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
    background: #000;
    z-index: 1;
  }

  .mobile-hero .slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 6s ease-in-out;
    transform: scale(1.1);
  }

  .mobile-hero .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
  }

  /* Caption */
  .mobile-hero .caption {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 15px 25px;
    border-radius: 8px;
    max-width: 85%;
  }

  .mobile-hero .caption h2 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    color: #F2C94C;
  }

  .mobile-hero .caption p {
    font-size: 1rem;
    color: #ddd;
  }
}


/* Global Firefly Layer */
.firefly-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; /* don’t block clicks */
  z-index: 9999; /* adjust: above backgrounds, below UI */
}

/* Fireflies */
.firefly {
  position: absolute;
  
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(255, 255, 200, 0.9),
              0 0 30px rgba(255, 255, 150, 0.7);
  animation: drift 6s infinite ease-in-out, blink 2s infinite alternate;
  will-change: transform;
}

/* Drift animation */
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(40px, -60px) scale(1.3); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Blink animation */
@keyframes blink {
  0%, 100% { opacity: 0.8; }
  50%      { opacity: 0.2; }
}

/* ===== RESERVATION BOX SECTION (THEMED) ===== */
.below-section {
  position: relative;
  padding: 30px 0;
  text-align: center;
  background: linear-gradient(135deg, #1a1f1c, #2c4631); /* forest gradient */
  z-index: 1;
}

/* Optional firefly overlay (reuse global fireflies) */
.below-section::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 2px, transparent 3px);
  background-size: 100px 100px;
  animation: twinkle 4s infinite linear;
  opacity: 0.25;
  z-index: 0;
}

/* ================================
   HERO BELOW SECTION HEADINGS
================================ */
.below-section h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #A8D5BA; /* light green */
  font-weight: 700;
  text-shadow: 0 3px 6px rgba(0,0,0,0.5);
}
.below-section p {
  color: #ddd;
  font-size: 1.1rem;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* ================================
   RESERVATION BOX WRAPPER
================================ */
.reservation-box {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 2;
  position: relative;
}

.reservation-container {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(26, 31, 28, 0.8); /* semi-transparent dark green */
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(74, 123, 108, 0.5); /* teal accent */
  width: 90%;
  max-width: 1200px;
}

/* ================================
   FLEX FORM LAYOUT
================================ */
.reservation-container form {
  display: flex;
  width: 100%;
}

.res-flex {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

/* ================================
   EACH ITEM
================================ */
.res-item {
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  flex: 1;
}

.res-item.small {
  width: auto;
  min-width: 120px;
  text-align: center;
}

/* ================================
   LABELS
================================ */
.res-item label {
  font-size: 12px;
  color: #F2C94C; /* gold accent */
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

/* ================================
   CONTENT (INPUTS & ICONS)
================================ */
.res-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.res-content.center {
  justify-content: center;
}

.res-date {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}

.res-number {
  font-size: 24px;
  font-weight: 600;
  color: #A8D5BA; /* light green numbers */
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ================================
   ICON STYLING
================================ */
.res-content i {
  font-size: 22px;
  color: #F2C94C;
  margin-left: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
}
.res-content i:hover {
  color: #A8D5BA;
}

/* ================================
   INPUT & SELECT STYLING
================================ */
.res-input, .res-select {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  appearance: none;
  outline: none;
  text-align: left;
  cursor: pointer;
}

.res-input.res-date {
  width: 100%;
}

.res-select {
  cursor: pointer;
}

.res-select option {
  color: #1a1f1c;
}

/* ================================
   CHECK BUTTON
================================ */
.res-button {
  background: #4A7B6C; /* forest teal */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 240px;
  flex-shrink: 0;
  border-right: none;
}

.res-button button {
  background: none;
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 40px;
  font-size: 16px;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.res-button:hover {
  background: #F2C94C; /* gold hover */
}

.res-button:hover button {
  color: #1a1f1c;
}

/* ================================
   RESPONSIVE LAYOUT
================================ */
/* ================================
   RESPONSIVE MOBILE FIXES
================================ */
@media (max-width: 992px) {
  .reservation-box {
    padding: 10px;
  }

  .reservation-container {
    width: 95%;
    border-radius: 10px;
    flex-direction: column;
  }

  .reservation-container form,
  .res-flex {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .res-item {
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    text-align: left;
  }

  .res-item:last-of-type {
    border-bottom: none;
  }

  .res-content {
    justify-content: space-between;
    width: 100%;
  }

  .res-item label {
    font-size: 11px;
    letter-spacing: 0.5px;
	 text-align: left;
  }

  .res-input, .res-select {
    font-size: 18px;
    width: 100%;
    text-align: left;
  }

  .res-button {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 10px 10px;
    background: #4A7B6C;
    width: 100%;
    min-width: auto;
    margin-top: 10px;
  }

  .res-button button {
    width: 100%;
    padding: 18px 0;
    font-size: 15px;
    border-radius: 0 0 10px 10px;
  }

  /* Ensure datepicker overlays correctly on mobile */
  .ui-datepicker {
    font-size: 14px;
    width: 90vw !important;
  }
}

/* Even more compact layout for very small devices */
@media (max-width: 480px) {
  .res-item {
    padding: 10px 15px;
  }
  .res-input, .res-select {
    font-size: 16px;
  }
  .res-button button {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}


/* ================================
   DATEPICKER CUSTOM THEME
================================ */
.ui-datepicker {
  background: rgba(26, 31, 28, 0.95);
  border: 1px solid #4A7B6C;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  z-index: 9999 !important;
}

.ui-datepicker-header {
  background: #4A7B6C;
  color: #F2C94C;
  border: none;
  border-radius: 6px 6px 0 0;
  padding: 5px 0;
  font-weight: 600;
}

.ui-datepicker-title {
  font-size: 15px;
}

.ui-datepicker-calendar th {
  color: #A8D5BA;
  font-weight: 500;
}

.ui-state-default {
  background: transparent;
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease;
}

.ui-state-hover {
  background: #F2C94C;
  color: #1a1f1c;
}

.ui-state-active {
  background: #A8D5BA;
  color: #1a1f1c;
}


/* ===== WELCOME SECTION ===== */
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 8%;
  background: #f8f9f7;
  gap: 80px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  overflow: hidden;
   
}

/* Subtle forest pattern background */
.welcome-section::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
 
  opacity: 0.12; /* slightly stronger */
  z-index: 1;
}


/* ===== LEFT TEXT ===== */
.welcome-content {
  flex: 1;
  max-width: 48%;
  position: relative;
  z-index: 2;
  animation: fadeInLeft 1s ease-out;
}

.tagline {
  font-size: 15px;
  color: #F2C94C;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-weight: 600;
}

.welcome-content h2 {
  font-size: 46px;
  margin-bottom: 24px;
  color: #2c4631; /* forest green */
  line-height: 1.2;
  font-weight: 700;
  position: relative;
}

.welcome-content h2::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #F2C94C, #4A7B6C);
  margin-top: 15px;
  border-radius: 2px;
}

.welcome-content p {
  font-size: 18px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.read-more-btn {
  background: #4A7B6C;
  color: #fff;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px; /* pill shape */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.read-more-btn:hover {
  background: #F2C94C;
  color: #1a1f1c;
  transform: translateY(-4px);
}

/* ===== RIGHT IMAGE AREA ===== */
.welcome-images {
  flex: 1;
  position: relative;
  z-index: 2;
  animation: fadeInRight 1s ease-out;
}

/* Organic clipped shape for main image */
.big-image-wrapper {
  max-width: 560px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  position: relative;
  clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
}

.big-image {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.big-image-wrapper:hover .big-image {
  transform: scale(1.05);
}

/* Floating smaller image, circular */
.small-image-wrapper {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  z-index: 5;
  background: #fff;
}

.small-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.small-image-wrapper:hover .small-image {
  transform: scale(1.08);
}

/* ===== 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); }
}

/* ===== FULLSCREEN INFO BLOCK ===== */
.fullscreen-info {
  display: none;
  max-width: 900px;
  width: 100%;
  animation: fadeIn 0.5s ease;
  position: relative;
  z-index: 10; /* ✅ On top */
}

.fullscreen-info h2 {
  font-size: 46px;
  margin-bottom: 30px;
  color: #2c4631;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

.fullscreen-info p {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
}

.fullscreen-info p strong {
  color: #4A7B6C;
  font-size: 19px;
}

/* Read Less Button */
.read-less-btn {
  background: #4A7B6C;
  color: #fff;
  padding: 14px 42px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.read-less-btn:hover {
  background: #F2C94C;
  color: #1a1f1c;
  transform: translateY(-4px);
}

/* ===== FULLSCREEN MODE ===== */
.welcome-section.fullscreen-mode {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  background: #f8f9f7;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 10% 60px;
  z-index: 9999;
  overflow-y: auto;
}

.welcome-section.fullscreen-mode .welcome-images,
.welcome-section.fullscreen-mode .welcome-content {
  display: none;
}

.welcome-section.fullscreen-mode .fullscreen-info {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .welcome-section {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }
  .welcome-content {
    max-width: 100%;
  }
  .small-image-wrapper {
    bottom: -50px;
    right: 50%;
    transform: translateX(50%);
    width: 180px; height: 180px;
  }
}
/* ===== AMENITIES SECTION ===== */
.amenities-section {
  padding: 100px 8%;
  background: linear-gradient(90deg, #1a1f1c, #2c4631); /* dark forest background */
  font-family: 'Montserrat', sans-serif;
  color: #FAFAFA;
   border: 4px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.amenities-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}

/* ===== LEFT INTRO ===== */
.amenities-intro {
  flex: 1;
}

.section-tag {
  color: #D4AF37;
  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: #FAFAFA;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info .icon {
  font-size: 22px;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 12px;
  border-radius: 50%;
}

.contact-info small {
  color: #ccc;
  font-size: 16px;
}

.contact-info p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #FAFAFA;
}

/* ===== AMENITIES GRID ===== */
.amenities-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.amenity-card {
  background: #2c4631;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden; /* keep curtains inside */
  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(212, 175, 55, 0.15);
  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(212, 175, 55, 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 gold, no circle) ===== */
.amenity-card .icon {
  flex-shrink: 0;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1.6px #D4AF37;
  transition: all 0.3s ease;
}

.amenity-card:hover .icon {
  color: #D4AF37;
  -webkit-text-stroke: 0;
}

/* ===== TEXT ===== */
.amenity-card .text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FAFAFA;
}

.amenity-card .text p {
  font-size: 17px;
  color: #ddd;
  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;
  }
}
/* ===== DL ROOMS SECTION ===== */
.dl-rooms-section {
  padding: 80px 8%;
  background: #f8f9f7; /* light background */
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

/* Header */
.dl-rooms-header {
  margin-bottom: 50px;
}
.dl-section-tag {
  color: #4A7B6C;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.dl-section-title {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

/* Grid */
.dl-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Room Card */
.dl-room-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}
.dl-room-card:hover {
  transform: translateY(-8px);
}
.dl-room-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.dl-room-card:hover img {
  transform: scale(1.08);
}

/* Room Info (hidden until hover) */
.dl-room-info {
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  background: rgba(250, 250, 250, 0.96);
  padding: 25px 20px;
  box-sizing: border-box;
  transition: bottom 0.4s ease;
  text-align: left;
}
.dl-room-card:hover .dl-room-info {
  bottom: 0;
}

/* Info Text */
.dl-room-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #12372A;
}
.dl-room-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
}

/* Book Button */
.dl-book-btn {
  background: #4A7B6C;
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dl-book-btn:hover {
  background: #D4AF37;
  color: #12372A;
}

/* Responsive */
@media (max-width: 1200px) {
  .dl-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dl-rooms-grid {
    grid-template-columns: 1fr;
  }
  .dl-room-card img {
    height: 260px;
  }
}
/* ===== ATTRACTIONS SECTION ===== */
.dl-attractions-section {
  padding: 80px 8%;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(90deg, #1a1f1c, #2c4631); /* Dark background */
  color: #FAFAFA;
   border: 4px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

/* ===== ATTRACTIONS HEADER ===== */
.dl-attractions-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 15px;
}

.dl-attractions-text {
  flex: 1;
}

.dl-attractions-text .dl-subtitle {
  color: #D4AF37;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.dl-attractions-text .dl-title {
  font-size: 34px;
  font-weight: 700;
  color: #FAFAFA;
  margin: 0;
  line-height: 1.3;
  position: relative;
}

.dl-attractions-text .dl-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #4A7B6C);
  margin-top: 12px;
  border-radius: 2px;
}

/* ===== CTA BUTTON ===== */
.dl-action-btn {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dl-action-btn:hover {
  background: #D4AF37;
  color: #1a1f1c;
  transform: translateY(-3px);
}

/* ===== MOSAIC GRID ===== */
.dl-attractions-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 40px;
  
}

.dl-mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.dl-mosaic-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.dl-mosaic-item.large { grid-column: 1 / span 2; }
.dl-mosaic-item.tall { grid-row: span 2; }

/* ===== OVERLAY ===== */
.dl-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
   border: 4px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

/* Title always visible */
.dl-overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #D4AF37;
  z-index: 2;
}

/* Description hidden by default */
.dl-overlay p {
  font-size: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Show description on hover */
.dl-mosaic-item:hover .dl-overlay p {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dl-attractions-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .dl-attractions-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .dl-mosaic-item {
    height: 200px;
  }

  .dl-mosaic-item.large,
  .dl-mosaic-item.tall {
    grid-column: auto;
    grid-row: auto;
  }
}


/* ===== MEDIA GALLERY SECTION ===== */
.dl-media-gallery-section {
  background: #f8f9f7;
  padding: 80px 8%;
  font-family: 'Montserrat', sans-serif;
  color: #12372A;
}

.dl-media-container {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* ===== HEADERS ===== */
.dl-media-header {
  margin-bottom: 25px;
}

.dl-subtitle {
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dl-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c4631;
  margin: 0;
  position: relative;
}

.dl-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #4A7B6C);
  margin-top: 10px;
  border-radius: 2px;
}

/* ===== LEFT VIDEO CARD ===== */
.dl-media-left {
  flex: 1 1 45%;
}

.dl-video-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dl-video-placeholder {
  text-align: center;
  color: #2c4631;
}

.dl-video-placeholder i {
  font-size: 70px;
  color: #D4AF37;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.dl-video-card:hover i {
  transform: scale(1.15);
}

.dl-video-placeholder p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

/* ===== RIGHT GALLERY ===== */
.dl-media-right {
  flex: 1 1 50%;
}

.dl-gallery-main {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  margin-bottom: 20px;
}

.dl-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.dl-gallery-main img.active {
  opacity: 1;
}

.dl-gallery-desc {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  min-height: 60px;
}

/* Thumbnails */
.dl-gallery-thumbs {
  display: flex;
  gap: 15px;
}

.dl-gallery-thumbs img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dl-gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.dl-gallery-thumbs img.active {
  opacity: 1;
  border-color: #D4AF37;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .dl-media-container {
    flex-direction: column;
  }
  .dl-video-card {
    height: 250px;
  }
  .dl-gallery-main {
    height: 220px;
  }
  .dl-gallery-thumbs img {
    width: 80px;
    height: 60px;
  }
}
/* ===== FOOTER BASE ===== */
.dl-footer {
  background: linear-gradient(90deg, #1a1f1c, #2c4631); /* dark forest green */
  color: #c9d2cc; /* soft gray-green */
 
  padding: 40px 20px 40px;
  position: relative;
  overflow: hidden;
}

/* Decorative gradient lines */
.dl-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 8px;
  background: linear-gradient(to right, #D4AF37, #4A7B6C);
  border-radius: 3px;
}

/* ===== TOP ===== */
.dl-footer-top {
  text-align: center;
  margin-bottom: 50px;
}

.dl-footer-logo {
  width: 150px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;

  /* Floating animation */
  animation: footerFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Floating animation keyframes */
@keyframes footerFloat {
  0%, 100% {
  transform: translateY(0);
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.9)); /* soft black shadow */
}
50% {
  transform: translateY(-6px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.9)); /* stronger black shadow */
}

}

/* Hover effect */
.dl-footer-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 12px 24px rgba(212, 175, 55, 0.9));
}

.dl-footer-tagline {
  color: #D4AF37;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ===== MIDDLE ===== */
.dl-footer-middle {
  display: flex;
  justify-content: space-between;
  max-width: 1350px;
  margin: 0 auto 50px auto;
  gap: 60px;
  flex-wrap: wrap;
  text-align: left;
}

.dl-footer-col {
  flex: 1 1 300px;
  min-width: 240px;
}

.dl-footer-heading {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
  border-bottom: 2px solid #D4AF37;
  display: inline-block;
  padding-bottom: 6px;
  letter-spacing: 1px;
  text-decoration:none;
}

/* ===== TEXT STYLES ===== */
.dl-footer-text {
  margin: 8px 0;
  line-height: 1.7;
  font-size: 18px;
  color: #c9d2cc;
}

.dl-footer-copy {
  font-size: 14px;
  color: #a0b0aa;
}

/* ===== LINKS ===== */
.dl-footer-link {
  color: #c9d2cc;
  text-decoration: none;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
}

.dl-footer-link:hover {
  color: #D4AF37;
}

.dl-footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

.dl-footer-link:hover::after {
  width: 100%;
}

/* ===== QUICK LINKS COLUMNS ===== */
.dl-footer-links-columns {
  display: flex;
  gap: 50px;
}

.dl-footer-links-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dl-footer-links-columns li {
  margin-bottom: 12px;
}

/* ===== SOCIAL ICONS ===== */
.dl-social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.dl-footer-social {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #D4AF37;
  border-radius: 50%;
  color: #D4AF37;
  font-size: 30px;
  transition: all 0.3s ease;
  text-decoration:none;
}

.dl-footer-social:hover {
  background: #D4AF37;
  color: #0f1915;
  transform: translateY(-3px);
  border-radius: 10%;
}

/* ===== BOTTOM ===== */
.dl-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 25px;
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 15px;
  color: #9aa7a2;
}

.dl-footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.dl-footer-sep {
  margin: 0 6px;
  color: #666;
}

.dl-footer-credit {
  font-size: 15px;
  color: #7d8b86;
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 1024px) {
  .dl-footer-middle {
    gap: 40px; /* reduce gap for tablets */
  }

  .dl-footer-text,
  .dl-footer-link {
    font-size: 16px; /* slightly smaller text */
  }

  .dl-footer-social {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .dl-footer-middle {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .dl-footer-col {
    min-width: 100%;
  }

  /* Keep Quick Links in 2 columns */
  .dl-footer-links-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 400px; /* keeps it balanced */
    margin: 0 auto;
  }

  .dl-footer-links-columns ul {
    flex: 1 1 45%; /* two columns side by side */
    min-width: 140px;
    padding: 0;
    margin: 0;
    text-align: left; /* looks neater */
  }

  .dl-footer-links-columns li {
    margin-bottom: 8px;
  }

  .dl-social-icons {
    justify-content: center;
  }

  .dl-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .dl-footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dl-footer-logo {
    width: 120px;
  }

  .dl-footer-tagline {
    font-size: 14px;
  }

  .dl-footer-heading {
    font-size: 18px;
  }

  .dl-footer-text,
  .dl-footer-link {
    font-size: 15px;
  }

  .dl-footer-social {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* On very small phones, still keep 2-column Quick Links */
  .dl-footer-links-columns {
    max-width: 100%;
    gap: 15px;
  }

  .dl-footer-links-columns ul {
    flex: 1 1 45%;
    text-align: left;
  }
}
/* Quick Links with right arrow */
.dl-footer-links-columns li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px; /* space for arrow */
}

.dl-footer-links-columns li::before {
  content: "→"; /* right arrow */
  position: absolute;
  left: 0;
  top: 0;
  color: #D4AF37; /* golden arrow */
  font-size: 16px;
  line-height: 1.4;
}


/* Container */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  animation: float 3s ease-in-out infinite; /* floating animation */
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); /* golden glow */
  }
  50% {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
  }
}

/* Visible State */
#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

/* Circle Background */
.progress-ring__bg {
  fill: none;
  stroke: rgba(255,255,255,0.15);
  stroke-width: 5;
}

/* Progress Circle */
.progress-ring__circle {
  fill: none;
  stroke: #D4AF37; /* Golden border */
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 164;
  stroke-dashoffset: 164;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.25s linear;
}

/* Logo inside */
#progressLogo {
  position: absolute;
  width: 30px;
  height: 30px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

#progressLogo:hover {
  background: #4A7B6C; /* Green highlight */
  transform: scale(1.15) rotate(5deg); /* smoother hover bounce */
}

/* ===== ROOT HERO STYLE ===== */
.hero-advanced {
  position: relative;
  width: 100%;
  height: 70vh; /* Full screen height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #1a1f1c; /* Fallback dark color */
  z-index: 1;
}

/* ===== BACKGROUND IMAGE (Fixed Position) ===== */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  filter: brightness(0.5); /* Dim the image for better text visibility */
  transform: scale(1.1); /* Slight zoom effect for background */
  background-attachment: fixed; /* Make background fixed while scrolling */
  transition: transform 0.3s ease-out;
}

/* Hover effect for the background image */
.hero-advanced:hover .hero-bg {
  transform: scale(1.2);
}

/* ===== CONTENT OVERLAY ===== */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 40px 20px;
  max-width: 700px;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  transform: translateY(50px);
}

/* ===== TITLE ANIMATION ===== */
.hero-title {
  font-size: 4rem;
  font-weight: 700;
  color: #A8D5BA;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
  animation: textSlideUp 1s ease-out forwards;
}

/* ===== SUBTITLE ANIMATION ===== */
.hero-subtitle {
  font-size: 1.6rem;
  margin-top: 20px;
  color: #FFD700;
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.6);
  animation: textSlideUp 1.2s ease-out 0.5s forwards;
}

/* ===== CTA BUTTON ANIMATION ===== */
.cta-btn {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 36px;
  background: linear-gradient(45deg, #4A7B6C, #3A6F5B);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  margin-top: 30px;
}

.cta-btn:hover {
  transform: translateY(-5px);
  background: linear-gradient(45deg, #3A6F5B, #4A7B6C);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* ===== TEXT SLIDE-UP ANIMATION ===== */
@keyframes textSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FADE-IN ANIMATION FOR THE CONTENT ===== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ===== DECORATIVE LAYER (for depth) ===== */
.decorative-layer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background-color: #FFD700;
  opacity: 0.2;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotateLayer 10s linear infinite;
  z-index: 0;
}

/* Rotating decorative layer for a dynamic feel */
@keyframes rotateLayer {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1080px) {
  .hero-advanced {
    height: 600px;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.3rem;
  }
  .cta-btn {
    padding: 16px 32px;
  }
}

@media (max-width: 767px) {
  .hero-advanced {
    height: 450px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .cta-btn {
    padding: 12px 28px;
  }
}
/* ===== AMENITIES SECTION STYLES ===== */
.deerfield-amenities {
  padding: 60px 20px;
  background-color: linear-gradient(135deg, #1a1f1c, #2c4631);
  text-align: center;
  
}

.deerfield-amenities .deerfield-section-title h2 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #d4af37; /* Gold for elegance */
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
}

.deerfield-amenities .deerfield-section-title p {
  font-size: 1.3rem;
  color: #e4e4e4; /* Light gray for contrast */
  margin-bottom: 40px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}


/* ===== DEERFIELD AMENITIES GRID ===== */
.deerfield-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Three columns for larger screens */
  gap: 25px;
}

/* Responsive grid for smaller screens */
@media (max-width: 1080px) {
  .deerfield-amenities-grid {
    grid-template-columns: repeat(2, 1fr); /* Two columns for medium screens */
  }
}

@media (max-width: 767px) {
  .deerfield-amenities-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
  }
}

/* ===== DEERFIELD AMENITY CARD ===== */
.deerfield-amenity-card {
  background: #2c4631;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden; /* keep curtains inside */
  z-index: 1;
  
}

.deerfield-amenity-card:hover {
  transform: translateY(-5px);
}

/* ===== CURTAINS (left + right) ===== */
.deerfield-amenity-card::before,
.deerfield-amenity-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(212, 175, 55, 0.15);
  transition: transform 0.6s ease;
  z-index: 0;
}

.deerfield-amenity-card::before {
  left: 0;
  transform: translateX(-100%);
}
.deerfield-amenity-card::after {
  right: 0;
  transform: translateX(100%);
}

/* ===== CURTAINS (top + bottom) ===== */
.deerfield-amenity-card .deerfield-curtain-top,
.deerfield-amenity-card .deerfield-curtain-bottom {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(212, 175, 55, 0.15);
  transition: transform 0.6s ease;
  z-index: 0;
}

.deerfield-amenity-card .deerfield-curtain-top {
  top: 0;
  transform: translateY(-100%);
}
.deerfield-amenity-card .deerfield-curtain-bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* ===== HOVER EFFECT: All 4 curtains close ===== */
.deerfield-amenity-card:hover::before { transform: translateX(0); }
.deerfield-amenity-card:hover::after { transform: translateX(0); }
.deerfield-amenity-card:hover .deerfield-curtain-top { transform: translateY(0); }
.deerfield-amenity-card:hover .deerfield-curtain-bottom { transform: translateY(0); }

/* ===== CONTENT stays above curtains ===== */
.deerfield-amenity-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* ===== ICON (outlined gold, no circle) ===== */
.deerfield-amenity-card .deerfield-icon {
  flex-shrink: 0;
  font-size: 50px;
  color: transparent;
  -webkit-text-stroke: 1.6px #D4AF37;
  transition: all 0.3s ease;
}

.deerfield-amenity-card:hover .deerfield-icon {
  color: #D4AF37;
  -webkit-text-stroke: 0;
}

/* ===== TEXT ===== */
.deerfield-amenity-card .deerfield-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #FAFAFA;
}

.deerfield-amenity-card .deerfield-text p {
  font-size: 17px;
  color: #ddd;
  line-height: 1.6;
  margin: 0;
}
/* === Enhanced Full Amenities List === */
.amenities-full-list-section {
  padding: 30px 20px;
  background: #f8f9f7; /* Light background color */
  text-align: center;
  position: relative;
  z-index: 1;
}

.amenities-full-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.amenities-full-list-title {
  font-size: 36px;
  color: #365c41; /* Dark green color for the title */
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.amenities-full-list-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #27ae60; /* Lighter green for the underline */
  margin: 18px auto 40px;
  border-radius: 2px;
}

.amenities-full-list-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.amenities-full-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 30px;
  text-align: left;
}

.amenities-full-list-category {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
   border: 2px dashed; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}



.amenities-full-list-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.amenities-full-list-category:hover::before {
  opacity: 1;
}

.amenities-full-list-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3e6644; /* Lighter green for the header */
  margin: 20px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ddd;
}

.amenities-full-list-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-full-list-category ul li {
  font-size: 18px;
  color: #333; /* Dark text for the list items */
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

/* Custom Checkmark Bullet Design using :before */
.amenities-full-list-category ul li::before {
  content: "\2713"; /* Unicode for checkmark (✓) */
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px; /* Size of the checkmark */
  color: #3e6644; /* Lighter green color for the checkmark */
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .amenities-full-list-title {
    font-size: 28px;
  }

  .amenities-full-list-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .amenities-full-list-category h3 {
    font-size: 20px;
  }

  .amenities-full-list-category ul li {
    font-size: 17px;
  }
}



/* ===== THINGS TO DO - SECTION TITLE ===== */
.td-things-to-do-mosaic-section {
  padding: 30px 20px;
  background: linear-gradient(135deg, #1a1f1c, #2c4631); /* Gradient background */
  text-align: center;
  position: relative;
  z-index: 1;
}

.td-mosaic-title {
  font-size: 36px;
  font-weight: 700;
  color: #d4af37; /* Gold color for title */
  margin-bottom: 10px;
  text-align: center;
}

.td-mosaic-description {
  font-size: 18px;
  color: #f1f1f1; /* Light text for description */
  margin-bottom: 40px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-align: center;
}

/* ===== THINGS TO DO - ATTRACTIONS MOSAIC GRID ===== */
.td-things-to-do-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
  margin-top: 40px;
}

.td-mosaic-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}

.td-mosaic-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.td-mosaic-item.large { 
  grid-column: 1 / span 2; 
}

.td-mosaic-item.td-tall { 
  grid-row: span 2; 
}

/* ===== OVERLAY FOR THINGS TO DO ===== */
.td-mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0)); /* Dark overlay */
}

/* Title always visible */
.td-mosaic-overlay h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 700;
  color: #d4af37; /* Gold color for the title */
  z-index: 2;
}

/* Description hidden by default */
.td-mosaic-overlay p {
  font-size: 15px;
  line-height: 1.5;
  color: #f1f1f1;
  opacity: 0;
  max-height: 0;
  transform: translateY(10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Show description on hover */
.td-mosaic-item:hover .td-mosaic-overlay p {
  opacity: 1;
  max-height: 200px;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .td-mosaic-title {
    font-size: 28px;
  }

  .td-mosaic-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .td-mosaic-overlay h3 {
    font-size: 20px;
  }

  .td-mosaic-overlay p {
    font-size: 14px;
  }
}
/* === Things to Do List Section === */
.things-to-do-list-section {
  padding: 30px 20px;
  background: #f8f9f7; /* Light background color */
  text-align: center;
  position: relative;
  z-index: 1;
  
}

.things-to-do-list-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.things-to-do-list-title {
  font-size: 36px;
  color: #365c41; /* Dark green color for the title */
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}

.things-to-do-list-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #27ae60; /* Lighter green for the underline */
  margin: 18px auto 40px;
  border-radius: 2px;
}

.things-to-do-list-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.things-to-do-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 30px;
  text-align: left;
}

.things-to-do-list-category {
  background: #fff;
  border-radius: 14px;
  padding: 30px 25px;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
    border: 2px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}


.things-to-do-list-category:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.things-to-do-list-category:hover::before {
  opacity: 1;
}

.things-to-do-list-category h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3e6644; /* Lighter green for the header */
  margin: 20px 0 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #ddd;
}

.things-to-do-list-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.things-to-do-list-category ul li {
  font-size: 18px;
  color: #333; /* Dark text for the list items */
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

/* Custom Checkmark Bullet Design using :before */
.things-to-do-list-category ul li::before {
  content: "\2713"; /* Unicode for checkmark (✓) */
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px; /* Size of the checkmark */
  color: #3e6644; /* Lighter green color for the checkmark */
  transition: opacity 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .things-to-do-list-title {
    font-size: 28px;
  }

  .things-to-do-list-description {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .things-to-do-list-category h3 {
    font-size: 20px;
  }

  .things-to-do-list-category ul li {
    font-size: 17px;
  }
}
/* Location Section Alt */
.location-section-alt {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #f8f9f7 0%, #1a1f1c 100%); /* Light green to dark green gradient */
}

.location-wrapper-alt {
  max-width: 1250px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

/* Left Side Info */
.location-info-alt {
  flex: 1;
  min-width: 320px;
}

.location-title {
  font-size: 40px;
  font-weight: 700;
  color: #2a412e; /* Soft green for title */
  margin-bottom: 15px;
}

.location-description {
  font-size:18px;
  color: #000; /* Dark text for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: #fff;
 
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  gap: 15px;
    border: 2px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.info-card i {
  font-size: 20px;
  color: #27ae60; /* Green for icons */
  margin-top: 5px;
}

.info-card h4 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #2c4631; /* Dark green for headings */
}

.info-card p {
  font-size: 18px;
  color: #555; /* Light gray text for details */
  line-height: 1.4;
}

/* Right Side Map */
.location-map-alt {
  flex: 1.3;
  min-height: 400px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Floating Form */
.route-form-overlay {
  position: absolute;
  bottom: 20px;
  right: 40px;
  background: rgba(44, 70, 49, 0.95); /* Dark green with transparency */
  color: #fff;
  padding: 20px;
  
  max-width:650px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border: 2px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.route-form-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #fff;
}

.route-form-overlay form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: none;
  font-size: 0.95rem;
}

.route-form-overlay form button {
  width: 100%;
  padding: 12px;
  background: #4a7b6c; /* Green button */
  color: #fff;
  border: none;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.route-form-overlay form button:hover {
  background: #3a6f5b; /* Darker green on hover */
}

/* Responsive */
@media (max-width: 992px) {
  .location-wrapper-alt {
    flex-direction: column;
  }

  .location-map-alt {
    height: 350px;
  }

  .route-form-overlay {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }
}


/* === Contact Section === */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9f7 0%, #1a1f1c 100%); /* Light green to dark green gradient */
  text-align: center;
}

.contact-wrapper {
  max-width: 1500px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 50px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  color: #3e6543; /* Soft green color for the title */
  margin-bottom: 15px;
}

.contact-description {
  font-size: 18px;
  color: #000; /* Dark gray for better readability */
  max-width: 1400px;
  margin: 0 auto;
  line-height: 1.7;
  
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: start;
}

.contact-card {
  padding: 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2); /* softer divider */
}

.contact-card:last-child {
  border-right: none;
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4a7b6c; /* Green color for icons */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.contact-card h3 {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff; /* White text for titles */
}

.contact-card p {
  font-size: 18px;
  color: #e0e0e0; /* Light gray text for body */
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 30px;
  }

  .contact-card:last-child {
    border-bottom: none;
  }
}
/* 🌐 Sitemap Section */
.sitemap-section {
  padding: 80px 20px;
  background: #f8f9f7; /* Light background to match layout */
  text-align: center;
  color: #365c41; /* Dark green for text */
  position: relative;
  z-index: 1;
}

.sitemap-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sitemap-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #365c41; /* Dark green for title */
}

.sitemap-subtitle {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto 50px;
  color: #3e6644; /* Lighter green for subtitle */
  line-height: 1.6;
}

/* Sitemap Grid */
.sitemap-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Block Styling */
.sitemap-block {
  background: #ffffff; /* White card background */
  color: #365c41;
  padding: 35px;
 
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
 
    border: 2px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.sitemap-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.sitemap-block h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #365c41; /* Dark green for headings */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sitemap-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-block ul li {
  margin-bottom: 14px;
}

.sitemap-block ul li a {
  font-size: 18px;
  text-decoration: none;
  color: #3e6644; /* Lighter green text */
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.sitemap-block ul li a:hover {
  color: #365c41; /* Dark green hover */
}

.sitemap-block ul li a i {
  color: #3e6644; /* Lighter green for icons */
}

/* 📱 Responsive */
@media (max-width: 992px) {
  .sitemap-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sitemap-links {
    grid-template-columns: 1fr;
  }
}
/* === FAQ Section - Deerfield Lodge === */
.faq-section {
  padding: 60px 20px;
  background: #f8f9f7; /* Light neutral background */
  color: #0f2d3f; /* Dark text for readability */
  text-align: center;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: #365c41; /* Dark green title */
  margin-bottom: 10px;
  text-transform: uppercase;
}

.faq-subtitle {
  font-size: 18px;
  color: #365c41; /* Dark green for subtitle */
  max-width: 1300px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: left;
}

.faq-item {
  background: #ffffff;
  color: #333; /* Dark text for content */
  padding: 25px 30px;
 
 
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    border: 2px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.faq-item h2 {
  font-size: 23px;
  font-weight: 600;
  color: #365c41; /* Dark green for headings */
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 18px;
  line-height: 1.7;
  color: #555; /* Softer dark text */
}

.faq-item a {
  color: #3e6644; /* Teal/green link accent */
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.faq-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #3e6644; /* Green underline for links */
  transition: width 0.3s ease;
}

.faq-item a:hover::after {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 28px;
  }
  .faq-subtitle {
    font-size: 14px;
  }
  .faq-item h2 {
    font-size: 18px;
  }
  .faq-item p {
    font-size: 14px;
  }
}
/* === Assistance Bar === */
.dl-assistance-bar {
  background: linear-gradient(135deg, #1a1f1c, #2c4631); /* Dark green background */
  color: #f8f9f7; /* Light text */
  text-align: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 500;
  position: relative;
 border: 4px solid; /* border width */
  border-image: linear-gradient(to right, #F2C94C, #4A7B6C) 1;
}

.dl-assistance-bar p {
  margin: 0;
}

.dl-assistance-bar a {
  color: #f8f9f7;
  font-weight: 700;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.dl-assistance-bar a:hover {
  color: #F2C94C; /* Red accent on hover */
  text-decoration: underline;
}

.dl-assistance-bar i {
  margin-right: 5px;
}
/* Attraction Section */
.attraction-wrap {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f2d3f 0%, #355e3b 50%, #0f2d3f 100%);
  /* Gradient: deep forest green to light pine green */
  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.25);
}

/* Content area */
.attraction-content {
  flex: 1 1 600px;
}

/* Title styling */
.attraction-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f2f6f4; /* Soft white for contrast on darker background */
  margin-bottom: 20px;
}

/* Paragraph text */
.attraction-content p {
  font-size: 1rem;
  color: #e5efe9; /* Muted off-white for a natural tone */
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Button styling */
.attraction-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: linear-gradient(90deg, #355e3b 0%, #4e8c63 100%);
  color: #ffffff;
  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.2);
}

/* Hover and active states */
.attraction-btn:hover {
  background: linear-gradient(90deg, #4e8c63 0%, #6bb58f 100%);
}

.attraction-btn:active {
  background: linear-gradient(90deg, #2e5234 0%, #4e8c63 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* 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;
  }
}
