/*====================================
  CORE VARIABLES
====================================*/
:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --accent-color: #b08968;
  --secondary-color: #e8e1d9;
  --tertiary-color: #d8c9b6;
  --line-color: rgba(176, 137, 104, 0.3);
  --light-shadow: rgba(0, 0, 0, 0.05);
  --card-bg: #f9f7f4;
}

/*====================================
    BASE STYLES & RESET
  ====================================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Desktop smooth scroll styles (above 1220px) */
@media (min-width: 1220px) {
  html.has-scroll-smooth {
    overflow: hidden !important;
  }

  body.has-scroll-smooth {
    overflow: hidden !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  body.has-scroll-smooth::-webkit-scrollbar {
    display: none;
  }
  
  [data-scroll-container] {
    min-height: 100vh;
    width: 100%;
  }
}

/* Mobile scroll behavior */
@media (max-width: 1219px) {
  html, body {
    overflow-x: hidden;
    overflow-y: auto !important;
    height: auto !important;
    position: relative;
  }

  [data-scroll-container] {
    transform: none !important;
    position: relative !important;
  }
  
  .c-scrollbar {
    display: none !important;
  }
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  cursor: default;
}

h1, h2, h3, .navbar-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

a, button, .menu-toggle, input[type="button"], input[type="submit"] {
  cursor: pointer;
}

/* Loader styles */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.5s ease;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80%;
  max-width: 500px;
}

.loader-title {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.loader-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 300;
}

.progress-container {
  width: 100%;
  height: 6px;
  background-color: rgba(176, 137, 104, 0.2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: var(--accent-color);
  transition: width 0.5s ease;
}

.progress-percentage {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  .loader-title {
    font-size: 2rem;
  }
  
  .loader-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}
/* Video container */
#video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none !important;
}

#video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  z-index: 2;
}

#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 101;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-color);
  opacity: 1 !important;
  transition: opacity 0.3s ease, padding 0.3s ease, background-color 0.3s ease;
}

.navbar-logo {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--text-color);
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-links a {
  color: var(--text-color);
  text-decoration: none;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.navbar-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
  z-index: 102;
}

.c-scrollbar {
  z-index: 1000;
}

/* Locomotive scroll fixes */
html.has-scroll-smooth:not(.has-scroll-init) {
  overflow: auto !important;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction="horizontal"] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction="horizontal"] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0.5;
  width: 5px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/*====================================
    HERO SECTION
  ====================================*/
  #hero-content {
    position: fixed;
    bottom: 15%;
    left: 15%;
    max-width: 600px;
    width: 90%;
    color: var(--text-color);
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    pointer-events: none !important; /* Block all pointer events by default */
  }

#hero-content h1 {
  color: var(--text-color);
  text-shadow: none;
  font-size: 5.3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.1;
  pointer-events: none;
}

#hero-content p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.5;
  max-width: 90%;
  pointer-events: none;
  text-shadow: none;
}



/* When scrolled class is applied to html or body */
body.scrolled #hero-content,
html.scrolled #hero-content {
  opacity: 0 !important;
  pointer-events: none !important;
  z-index: -9999 !important; /* Force extremely low z-index */
  visibility: hidden !important;
  display: none !important; /* Completely remove from layout */
  transform: translateY(-100vh) !important; 
}


/*====================================
    IMAGE GRID - HIDDEN IN LIGHT THEME
  ====================================*/
#image-grid {
  display: none;
}

/*====================================
    MAIN CONTENT STRUCTURE
  ====================================*/
#content {
  position: relative;
  z-index: 3;
  background-color: var(--bg-color);
  margin-top: 100vh;
}

.section {
  background-color: var(--bg-color);
  padding: 140px 0;
  height: auto;
  min-height: 100vh;
  display: block;
  text-align: left;
}

/*====================================
    ABOUT SECTION
  ====================================*/
.about-section {
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 45% 55%;
  grid-template-areas: "title content";
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  gap: 40px;
  height: auto;
}

.about-title {
  grid-area: title;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 80px 0 0 0;
}

.title-accent-line {
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
  margin-bottom: 30px;
}

.about-title h2 {
  font-size: 4.5rem;
  color: var(--text-color);
  background: none;
  -webkit-text-fill-color: var(--text-color);
  line-height: 1.1;
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.about-content {
  grid-area: content;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 0 0 0;
}

.about-text {
  max-width: 600px;
}

.about-paragraph {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: var(--text-color);
  opacity: 0.9;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.about-image-container {
  position: relative;
  width: 90%;
  margin-top: 30px;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
}

.horizontal-line {
  width: 120px;
  height: 1px;
  background-color: var(--accent-color);
  margin: 0 0 40px 0;
  opacity: 0.6;
}

/*====================================
    LOCATIONS SECTION
  ====================================*/
.locations-section {
  position: relative;
  overflow: visible;
}

.locations-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
  height: auto;
}

.locations-header {
  margin-bottom: 80px;
  text-align: left;
  opacity: 1;
  position: relative;
}

.locations-header h2 {
  font-size: 4rem;
  color: var(--text-color);
  background: none;
  -webkit-text-fill-color: var(--text-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.locations-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
}


.location-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(248, 246, 242, 0.1) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.location-card {
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  position: relative;
  opacity: 1;
  backdrop-filter: none;
  height: 100%;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.location-image {
  height: 350px;
  position: relative;
  margin-bottom: 25px;
  width: 100%;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Changed from contain to cover for more uniform appearance */
  transition: transform 0.7s ease;
  aspect-ratio: 4/3; /* Maintain aspect ratio */
}

.location-details {
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.location-details h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  min-height: 2.4rem; /* Set minimum height for title */
}

.location-description {
  color: var(--text-color);
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  flex-grow: 1;
  min-height: 5.5rem; /* Consistent height for description */
}

.location-cta {
  margin-top: auto; /* Push button to bottom */
}
.location-button {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--accent-color);
  border-radius: 0;
  padding: 12px 30px;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  /* text-transform: uppercase; */
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  z-index: 101;
}

.location-button:hover {
  background-color: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

/*====================================
    STAYS SECTION
  ====================================*/
.stays-section {
  position: relative;
  padding: 140px 0;
  background-color: var(--bg-color);
}

.stays-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 5%;
}

.stays-header {
  margin-bottom: 80px;
  text-align: left;
}

.stays-header h2 {
  font-size: 4rem;
  color: var(--text-color);
  background: none;
  -webkit-text-fill-color: var(--text-color);
  position: relative;
  display: inline-block;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.stays-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
}

.stays-grid {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.stay-card {
  background-color: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  border: none;
  position: relative;
  transition: transform 0.4s ease;
}

.stay-card:nth-child(1) {
  grid-column: 2 / span 10;
}

.stay-card:nth-child(2) {
  grid-column: 14 / span 10;
}

.stay-card:hover {
  transform: translateY(-10px);
}

.stay-image {
  height: 400px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

.stay-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(248, 246, 242, 0.1) 0%,
    rgba(0, 0, 0, 0) 50%
  );
}

.stay-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.stay-card:hover .stay-image img {
  transform: scale(1.05);
}

.stay-details {
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.stay-location {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.6;
  margin-bottom: 8px;
  font-family: "Work Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stay-details h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin: 0 0 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  align-self: flex-start;
}

.stay-description {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 1rem !important;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: "Work Sans", sans-serif;
  text-align: left;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stay-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  width: 100%;
}

.stay-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  background-color: rgba(176, 137, 104, 0.08);
  padding: 8px 14px;
  border-radius: 20px;
  color: var(--text-color);
  transition: background-color 0.3s ease;
}

.stay-feature:hover {
  background-color: rgba(176, 137, 104, 0.15);
}

.feature-icon {
  font-size: 15px;
}

.pricing-cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--line-color);
}

.stay-pricing {
  font-family: "Work Sans", sans-serif;
  margin-top: 0;
}

.price-from {
  font-weight: 500;
  color: var(--accent-color);
}

.stay-cta {
  text-align: right;
  z-index: 101;
  text-decoration: none;
}

.cta-button.outline {
  border: 2px solid var(--accent-color);
  color: var(--text-color) !important;
  background-color: transparent;
  padding: 14px 28px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.cta-button.outline:hover {
  background-color: var(--accent-color);
  color: white !important;
  transform: translateY(-3px);
}

/*====================================
    CONTACT SECTION
  ====================================*/
.contact-section {
  background-color: var(--bg-color);
}

.contact-container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.contact-header {
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 4rem;
  color: var(--text-color);
  background: none;
  -webkit-text-fill-color: var(--text-color);
  text-align: left;
  display: inline-block;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.contact-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: var(--accent-color);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form-wrapper {
  background-color: var(--card-bg);
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 40px;
}

.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: var(--text-color);
  text-align: start;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: white;
  border: 1px solid var(--line-color);
  color: var(--text-color);
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  outline: none;
}

.contact-form .submit-button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 12px 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 0;
  width: 100%;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  text-transform: uppercase;
}

.contact-form .submit-button:hover {
  background-color: #9a775a;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.info-card {
  background-color: var(--card-bg);
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  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 var(--light-shadow);
}

.info-card h3 {
  color: var(--text-color);
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.info-card p {
  color: var(--text-color);
  opacity: 0.7;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
  margin: 5px 0;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-link {
  color: var(--text-color);
  opacity: 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: var(--accent-color);
  transition: width 0.3s ease;
}

.social-link:hover {
  color: var(--accent-color);
}

.social-link:hover::after {
  width: 100%;
}

/*====================================
    FOOTER
  ====================================*/
.site-footer {
  background-color: var(--secondary-color);
  color: var(--text-color);
  padding: 80px 40px 40px;
  margin-top: auto;
  width: 100%;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-logo {
  color: var(--accent-color);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  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 {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-family: "Montserrat", sans-serif;
}

.footer-column a,
.footer-column p {
  color: var(--text-color);
  opacity: 0.7;
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Work Sans", sans-serif;
}

.footer-column a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.footer-bottom {
  max-width: 1600px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-color);
  text-align: center;
  color: var(--text-color);
  opacity: 0.6;
  font-family: "Work Sans", sans-serif;
  font-size: 0.9rem;
}

.footer-legal {
  margin-top: 1rem;
}

.footer-legal a {
  color: var(--text-color);
  opacity: 0.6;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-color);
  opacity: 1;
}

/*====================================
  RESPONSIVE STYLES
====================================*/
@media (max-width: 1200px) {
  .about-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "content";
    gap: 10px;
  }

  .about-title {
    padding: 0 0 20px 0;
  }

  .locations-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-card:nth-child(n) {
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 60px;
  }

  /* Fix for location cards stacking */
  .location-card {
    width: 100%;
    display: block;
  }

  .stays-grid {
    grid-template-columns: 1fr;
  }

  .stay-card:nth-child(n) {
    grid-column: 1 / -1;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  #hero-content {
    left: 10%;
    bottom: 20%;
  }

  #hero-content h1 {
    font-size: 3.5rem;
  }

  .about-title h2,
  .locations-header h2,
  .stays-header h2,
  .contact-header h2 {
    font-size: 3rem;
  }

  .about-paragraph {
    font-size: 1.1rem;
  }

  /* Improve location card layout on mobile */
  .locations-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }

  .location-card {
    width: 100%;
    position: static !important; /* Prevent absolute positioning */
    margin: 0 !important; /* Reset all margins */
  }

  .location-card:nth-child(1),
  .location-card:nth-child(2),
  .location-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .location-image {
    height: 280px;
  }

  /* Show hamburger menu */
  .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(255, 255, 255, 0.95);
    transition: right 0.3s ease;
    padding: 2rem;
    gap: 40px;
  }

  .navbar-links.active {
    right: 0;
  }

  .navbar-links a {
    font-size: 1.2rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-column {
    width: 100%;
  }

  .site-footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-title h2 {
    font-size: 2.5rem;
  }

  .about-content {
    padding: 0 1.5rem 3rem 1.5rem;
  }

  .locations-section {
    padding-bottom: 20px;
  }

  .locations-container {
    padding: 40px 15px 10px 15px;
  }

  .locations-grid {
    gap: 40px; /* Less space between cards on very small screens */
  }

  .location-card:not(:last-child) {
    margin-bottom: 0 !important; /* Only apply bottom margin to non-last cards */
    padding-bottom: 0;
  }

  /* Make sure there's no extra margin causing overlapping */
  .location-details {
    padding-top: 0;
    margin-top: 0;
  }

  .locations-header {
    margin-bottom: 30px;
  }

  .locations-header h2 {
    font-size: 2rem;
  }

  .location-image {
    height: 200px; /* Slightly taller for better visibility */
    margin-bottom: 15px;
  }

  .location-card {
    margin-bottom: 40px !important;
  }

  .location-details h3 {
    font-size: 1.5rem;
  }

  .location-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}



.location-card, .stay-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }
  
  .location-card:hover, .stay-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--light-shadow);
  }
  
  /* Add subtle highlight on hover for better UX */
  .location-card::after, .stay-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
    pointer-events: none;
  }
  
  .location-card:hover::after, .stay-card:hover::after {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Make sure position is relative for proper positioning of pseudo-elements */
  .location-card, .stay-card {
    position: relative;
  }


  /* Responsive adjustments for hero content */
@media (max-width: 1536px) {
  #hero-content {
    bottom: 15%;
    left: 12%;
    max-width: 550px;
  }
  
  #hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
  
  #hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
}

@media (max-width: 1330px) {
  #hero-content {
    bottom: 12%;
    left: 10%;
    max-width: 480px;
  }
  
  #hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.2rem;
  }
  
  #hero-content p {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.8rem;
  }
  
  
}

.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: white !important;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 0;
}

.cta-button:hover {
  transform: translateY(-5px);
}


/* Responsive styles for CTA buttons */
@media (max-width: 768px) {
  .cta-button {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

}

