* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.has-scroll-smooth {
  overflow: hidden;
}
body {
  cursor: default;
  font-family: "Work Sans", sans-serif;
  background-color: rgba(0, 0, 0, 0.1);
  color: white;
  font-weight: 300;
}

/* Apply the condensed font to headings */
h1,
h2,
h3,
.navbar-logo {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}


a,
button,
.cta-button,
.menu-toggle,
input[type="button"],
input[type="submit"] {
  cursor: pointer;
}
/* Add this to your existing CSS */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
  max-width: 80%;
}

.loader-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
}

.loader-content p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.loading-bar {
  width: 300px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-progress {
  height: 100%;
  background-color: #c8a97e;
  width: 0%;
  border-radius: 3px;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .loader-content h1 {
    font-size: 2rem;
  }
  
  .loader-content p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .loading-bar {
    width: 250px;
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#content {
  position: relative;
  z-index: 3;
  padding: 0 20px;
  margin-top: 100vh;
}

.section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1.2rem;
  max-width: 600px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
  opacity: 1; /* Change from 0 to 1 to make it visible from the start */
  transition: padding 0.3s ease, background-color 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5); /* Add an initial background color */
  backdrop-filter: blur(5px);
}

/* Keep the hover effect */
.navbar:hover {
  background-color: rgba(0, 0, 0, 0.7); /* Darken on hover */
}
/* Make the navbar logo more distinctive */
.navbar-logo {
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #fff;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: white;
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 102;
}

.c-scrollbar {
  z-index: 1000;
}

#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none !important;
  /* Force this to not capture any clicks */
}
#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  /* Make sure the video doesn't capture clicks */
}
/* Book Now Button in navbar */
.book-now-button {
  position: absolute;
  right: 25%; /* Position to the left of menu toggle on mobile */
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  padding: 8px 18px;
  background-color: #c8a97e;
  color: #000 !important;
  border: none;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100; /* Ensure it's above other elements */
}

.book-now-button:hover {
  background-color: #d9ba8c;
  transform: translateY(-50%) translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments for the Book Now button */
@media (min-width: 768px) {
  .book-now-button {
    right: 30px; /* Position further right on desktop */
    padding: 10px 22px;
    font-size: 1rem;
  }
}

/* When navbar links are visible on desktop */
/* Adjust navbar to properly position elements */
@media (min-width: 1220px) {
  .navbar {
    display: flex;
    justify-content: space-between; /* Change back to space-between */
    align-items: center;
    padding: 20px 5%; /* Keep existing padding */
  }
  
  .navbar-logo {
    flex: 0 0 auto;
    order: 1; /* Explicitly set logo order */
  }
  
  .navbar-links {
    flex: 1 1 auto;
    display: flex;
    justify-content: center; /* Center the links */
    margin: 0 20px; /* Add margin on both sides */
    order: 2; /* Set navbar links in middle */
  }
  
  .book-now-button {
    top: auto;
    transform: none;
    margin-left: 0;
    order: 3; 
    position: absolute;
    right: 80px;
    margin-right: 10px; 
  }
  
  .book-now-button:hover {
    transform: translateY(-2px);
  }
  
  .menu-toggle {
    order: 4; /* Ensure menu toggle comes last */
  }
}

/* Mobile layout fixes */
@media (max-width: 1219px) {
  
  .navbar-logo{
    font-size: 1.1rem;
  }
  
  .book-now-button {
    font-size:0.6rem;
    position: absolute;
    right: 15%;
    margin-right: 10px; /* Position to the left of menu toggle */
  }
  
  .menu-toggle {
    position: relative;
    right: 0;
  }
}

@media (min-width: 768px) {
  .book-now-button.with-home {
    right: 70px;
  }
}
#hero-content {
  position: fixed;
  bottom: 10%;
  left: 5%;
  max-width: 800px;
  width: 90%;
  color: white;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none !important;
}
#hero-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.1;
  letter-spacing: 0.03em;
  pointer-events: none;
}

#hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  max-width: 90%;
  pointer-events: none;
}



.scrolled #hero-content {
  opacity: 0;
  pointer-events: none !important;
}

.about-section {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title content";
  height: 100%;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.about-title {
  grid-area: title;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 10%;
  padding-bottom: 10%;
}

.about-title h2 {
  font-size: 5rem;
  margin: 0;
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
  opacity: 0.8;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: left; */
  padding: 10% 10% 10% 5%;
}

.about-text {
  max-width: 600px;
}

.about-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}


.kheoniwildlife-section {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
  overflow: visible; /* Change from hidden to visible to allow content to show fully */
  padding: 0;
}

.kheoniwildlife-container {
  height: 100%;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
}

.kheoniwildlife-header {
  text-align: center;
  margin-bottom: 60px;

}

.kheoniwildlife-header h2 {
  font-size: 3.5rem;

  margin-bottom: 15px;
  text-transform: uppercase;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.kheoniwildlife-header h2,
.about-title h2 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.kheoniwildlife-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

/* Update paragraph styling for better readability */
p,
.about-paragraph {
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* Style navigation links */
.navbar-links a {
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
}

/* Style the CTA button */
.cta-button{
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid-image,
.carousel-track,
.hero-content {
  transform: translateZ(0); /* GPU acceleration for critical animations */
}

/* Footer styles */
.site-footer {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  padding: 4rem 2rem 2rem;
  margin-top: auto;
  width: 100%;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-logo {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 3px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
  font-family: "Oswald", sans-serif;
}

.footer-column a,
.footer-column p {
  display: block;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Work Sans", sans-serif;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  max-width: 1600px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

@media (max-width: 1536px) {
  #hero-content h1 {
    font-size: 3.5rem;
  }

  #hero-content p {
    font-size: 1.1rem;
  }
  .about-title h2 {
    font-size: 4rem;
  }

  .about-paragraph {
    font-size: 1.1rem;
    line-height: 1.7;
  }
  .section {
    height: auto !important; /* Override the fixed height */
    min-height: 100vh !important; /* Set minimum height instead */
    padding: 60px 20px;
  }


  .kheoniwildlife-section {
    height: auto !important;
    padding-bottom: 40px;
  }

  .kheoniwildlife-container {
    height: auto;
    padding: 60px 20px 20px 20px; /* Adjusted padding */
  }

  .kheoniwildlife-header h2 {
    font-size: 2.5rem;
  }

  .kheoniwildlife-header p {
    font-size: 1rem;
  }
   .menu-toggle {
    display: block;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    transition: right 0.3s ease;
    padding: 2rem;
    gap: 40px;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  #hero-content {
    bottom: 15%;
  }

  #hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  #hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  
  .about-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "content";
  }

  .about-title {
    padding-bottom: 2rem;
    padding-top: 3rem;
    justify-content: center;
    padding-left: 0;
  }

  .about-content {
    padding: 0 2rem 4rem 2rem;
  }

  .about-title h2 {
    font-size: 3.5rem;
  }

  .about-paragraph {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .navbar:hover {
    backdrop-filter: none; /* Remove on mobile */
  }
  

}


@media (max-width: 480px) {
  .about-title h2 {
    font-size: 2.5rem;
  }

  .about-content {
    padding: 0 1.5rem 3rem 1.5rem;
  }
  .kheoniwildlife-section {
    padding-bottom: 20px;
  }

  .kheoniwildlife-container {
    padding: 40px 15px 10px 15px; /* Further reduced padding on very small screens */
  }

  .kheoniwildlife-header {
    margin-bottom: 30px;
  }

  .kheoniwildlife-header h2 {
    font-size: 2rem;
  }


}


/* Contact Section Styling */
.contact-section {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* .contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/solretreat media/pathway2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
} */

.contact-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

/* .contact-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,0,0,0), #6dd5ed, rgba(0,0,0,0));
} */


.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper {
  background-color: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-align: start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #6dd5ed;
  outline: none;
}

.contact-form .submit-button {
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid white;
  padding: 12px 25px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
}

.contact-form .submit-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.info-card {
  background-color: rgba(15, 15, 15, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.info-card p {
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 5px 0;
}
.info-card a {
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.3s ease;
  position: relative; /* Add this for the underline positioning */
}

.info-card a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #c8a97e; /* Same blue color as social links */
  transition: width 0.3s ease;
}

.info-card a:hover {
  color: #c8a97e !important; /* Change to the light blue color on hover */
}

.info-card a:hover::after {
  width: 100%; /* Expand the underline on hover */
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Work Sans', sans-serif;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #6dd5ed;
  transition: width 0.3s ease;
}

.social-link:hover {
  color: #6dd5ed;
}

.social-link:hover::after {
  width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .contact-container {
    padding: 0 20px;
  }
  
  .contact-header h2 {
    font-size: 2.8rem;
  }
  
  .contact-form-wrapper {
    padding: 30px;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Amenities Section Styling */
.amenities-section {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 2vw 0;
}

.amenities-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

.amenities-header {
  margin-top: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.amenities-header h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.7) 0%,
    rgba(255, 255, 255, 1) 50%,
    rgba(255, 255, 255, 0.7) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.amenities-header .section-subtitle {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 50px;
}

.amenity-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: rgba(15, 15, 15, 0.5);
  height: 100%;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-color: rgba(109, 213, 237, 0.3);
}

.amenity-image {
  height: 12vw;
  position: relative;
  overflow: hidden;
}

.amenity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.amenity-card:hover .amenity-image img {
  transform: scale(1.05);
}

.amenity-details {
  padding: 10px;
}

.amenity-details h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}


/* Responsive Adjustments */
@media (max-width: 1220px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-header h2 {
    font-size: 3rem;
  }
  .amenity-image{
    height:18vw;
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .amenities-section {
    padding: 60px 0;
  }
  
  .amenities-container {
    padding: 0 20px;
  }
  
  .amenities-header h2 {
    font-size: 2.5rem;
  }
  
  .amenities-header .section-subtitle {
    font-size: 1rem;
  }
  
  .amenity-image {
    height: 240px;
  }
}

@media (max-width: 480px) {
  .amenity-details h3 {
    font-size: 1.4rem;
  }
  
  .amenity-details p {
    font-size: 0.9rem;
  }
  
  .amenities-header h2 {
    font-size: 2rem;
  }
}
.full-screen-carousel {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image {
  height: 100%;
  width: 100%;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: brightness(0.8);
}

.carousel-slide:hover .slide-image img {
  transform: scale(1.03);
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5rem 3rem 4rem; /* Increased top and bottom padding */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center; /* Center the text */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
}

.slide-content h3 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  max-width: 80%; /* Limit width for better readability while centered */
}

.slide-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 70%; /* Slightly wider than before but still constrained */
  font-family: 'Work Sans', sans-serif;
  text-align: center; /* Ensure paragraph text is also centered */
}

.carousel-cta-button {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 4px;
  backdrop-filter: blur(5px);
  margin-bottom: 2.5rem; 
}

.carousel-cta-button:hover {
  background-color: white;
  color: #000;
}
.carousel-nav {
  position: absolute;
  bottom: 20px; /* Position at the bottom of carousel */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
  padding: 8px 15px;
  border-radius: 30px;

}


.carousel-prev,
.carousel-next {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: rgba(255, 255, 255, 0.7);
  color: #000;
}

.carousel-indicators {
  display: flex;
  gap: 10px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

/* Experience highlights section */
.experience-highlights {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  margin: 2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  width: 30%;
}

.highlight-icon {
  font-size: 2.2rem;
  margin-right: 1rem;
  color: #fff;
}

.highlight-text h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.highlight-text p {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .slide-content h3 {
    font-size: 2rem;
  }
  
  .slide-content p {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .full-screen-carousel {
    height: 60vh;
  }
  
  .slide-content {
    padding: 4rem 2rem 3.5rem;
  }
  
  .slide-content h3 {
    font-size: 1.8rem;
  }
  
  .slide-content p {
    max-width: 100%;
    font-size: 1rem;
  }
  
  .experience-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .highlight-item {
    width: 100%;
  }
  .carousel-cta-button {
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .full-screen-carousel {
    height: 50vh;
  }
  .slide-content {
    padding: 3rem 1.5rem 3rem;
  }
  
  .carousel-cta-button {
    margin-bottom: 1.5rem;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .carousel-nav {
    bottom: 15px;
    /* Keep it centered with transform */
    left: 50%;
    transform: translateX(-50%);
  }
  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
  
  .carousel-indicators {
    gap: 8px;
  }
  
  .carousel-indicator {
    width: 10px;
    height: 10px;
  }
}
/* Property Map Section */
.map-section {
  padding: 6rem 0;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
}

.map-container {
  max-width: 1600px; /* Increased from 1200px for a wider map */
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.map-header {
  text-align: center;
  margin-bottom: 3rem;
}

.map-header h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

.map-content {
  position: relative;
  height: 600px; /* Increased from 500px for a taller map */
  border-radius: 12px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

#property-map {
  height: 100%;
  width: 100%;
}

.map-overlay {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 350px;
  text-align: center;
  transition: transform 0.3s ease;
  z-index: 999;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: auto; /* Allow content to determine width */
  min-width: 300px; /* Set minimum width for readability */
}


.map-overlay:hover {
  transform: none;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}
.map-actions {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}


.location-info h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: 'Oswald', sans-serif;
  color: #333;
}

.location-info p {
  margin-bottom: 10px;
  font-size: 0.85rem;
  display: flex;
  align-items: left;
  line-height: 1.5;
  color: #666;
}

.location-icon {
  font-size: 1.1rem;
  margin-right: 10px;
  width: 20px;
  text-align: center;
  display: inline-block;
}

.google-maps-button {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  background-color: #4285F4;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
  width: 100%;
  justify-content: center;
  white-space: nowrap; /* Prevent text wrapping */
  margin-top: 15px; /* Add space above button */
}
.google-maps-button:hover {
  background-color: #3367D6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
}

.maps-icon {
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Responsive adjustments for map section on mobile */
@media (max-width: 768px) {
  .map-section {
    padding: 4rem 0;
  }
  
  .map-content {
    height: 700px; /* Increased height to accommodate the overlay */
    display: flex;
    flex-direction: column;
  }
  
  #property-map {
    height: 100%;
    width: 100%;
    flex: 1;
  }
  
  .map-overlay {
    position: relative; /* Change from absolute to relative positioning */
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
    width: 100%; /* Full width */
    max-width: 100%;
    margin-top: -60px; /* Pull it up slightly to overlap with map */
    z-index: 1000;
    border-radius: 8px 8px 0 0; /* Rounded corners only at top */
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2); /* Shadow at top */
  }
  
  .location-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .location-info h3 {
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
  
  .location-info p {
    width: 48%; 
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  
  .map-actions {
    width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .map-content {
    height: 700px;
  }
  
  .map-overlay {
    padding: 15px;
    margin-top: -50px;
  }
  
  .location-info p {
    width: 100%; /* Stack vertically on very small screens */
    margin-bottom: 8px;
  }
  
  .google-maps-button {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
}

/* Nearby Attractions Section */
.nearby-section {
  padding: 4rem 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.nearby-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
}

.nearby-header {
  text-align: center;
  margin-bottom: 2rem;
}

.nearby-header h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
  color: #fff;
}
.nearby-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.8;
  text-align: center;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.nearby-place {
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.nearby-place:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.place-image-container {
  position: relative;
  height: 12vw;
  overflow: hidden;
}

.place-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nearby-place:hover .place-image-container img {
  transform: scale(1.05);
}

.place-distance {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.place-details {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.place-details h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-family: 'Oswald', sans-serif;
  
}

.place-details p {
  font-size: 0.9rem;
 
  margin-bottom: 1rem;
  line-height: 1.6;
  flex: 1;
}

.place-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.place-feature {
  display: inline-flex;
  align-items: center;
  background-color: #f2f2f2;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #555;
}

.place-feature .feature-icon {
  margin-right: 5px;
  font-size: 1rem;
}

.nearby-map {
  margin-top: 20px;
  height: 14vw;
  border-radius: 10px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/images/mp\ dark.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.map-overlay-text {
  text-align: center;
  color: white;
  padding: 4rem 2rem;
  max-width: 600px;
  width: 80%;
  transition: all 0.3s ease;
  position:absolute;
}

.map-overlay-text h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'Oswald', sans-serif;
}

.map-overlay-text p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.map-link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  border-radius: 4px;
}

.map-link-button:hover {
  background-color: white;
  color: #222;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .nearby-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .place-image-container {
  height: 25vw;
}
  .map-overlay-text {
    max-width: 80%;
  }
  .nearby-map {
    height: 28vw;
  }
}
@media (max-width: 768px) {
  .nearby-grid {
    grid-template-columns: 1fr;
  }
  
  .nearby-map {
    height: auto;
    min-height: 50vw;
    background-attachment: scroll;
    padding: 20px 0;
  }
  .place-image-container {
  height: 35vw;
}
  .map-overlay-text {
    width: 90%;
    padding: 1.5rem;
  }
  
  .map-overlay-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  
  .map-overlay-text p {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }
  
  .map-link-button {
    padding: 10px 20px;
    font-size: 0.95rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}


@media (max-width: 480px) {
  .nearby-map {
    min-height: 100vw;
    margin-top: 2rem;
  }
  
  .map-overlay-text {
    padding: 1.2rem;
    width: 92%;
  }
  
  .map-overlay-text h3 {
    font-size: 1.5rem;
  }
  
  .map-overlay-text p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .map-link-button {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}
@media (hover: none) and (pointer: coarse) {
  .map-link-button {
    background-color: rgba(255, 255, 255, 0.25);
    padding-top: 12px;
    padding-bottom: 12px;
  }
  
  .map-link-button:active {
    background-color: white;
    color: #222;
    transform: translateY(-1px);
  }
}

.amenities-footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.amenities-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.amenities-cta-button:hover {
  background-color: white;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.amenities-cta-button svg {
  transition: transform 0.3s ease;
}

.amenities-cta-button:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .amenities-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}


