html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}






/* Base Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f1ec;
  color: #333;
}

h1, h2, h3 {
  text-align: center;
  margin-top: 1.5em;
  color: #2c3e50;
}

/* Hero Section */
.hero {
  position: relative; /* THIS is crucial for ::before */
  background: url('images/double11.jpeg') no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  color: white;
  text-align: center;
  text-shadow: 1px 1px 4px #000;
  overflow: hidden; /* Optional: prevents ::before overflow */
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  line-height: 1.6;
  
}


.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}







.fade-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-text.visible {
  opacity: 1;
  transform: translateY(0);
}








.experience-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

.experience-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.experience-card h4 {
  font-size: 20px;
  color: #3c5d3c;
  margin: 15px;
  font-family: 'Playfair Display', serif;
}

.experience-card p {
  font-size: 16px;
  color: #444;
  margin: 0 15px 20px;
  line-height: 1.6;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  gap: 24px; /* Add spacing between stacked cards */
}





section {
  background-color: #f0ebe2; /* Soft parchment tone */
  border-left: 6px solid #c89b7b;
  padding: 2rem;
  margin: 60px auto;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  transition: transform 0.4s ease;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

section:hover {
  transform: scale(1.02);
}

section h2 {
  font-size: 2em;
  color: #4a3f35;
  margin-bottom: 10px;
  border-left: 5px solid #c8a67a;
  padding-left: 15px;
}

section img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

section p {
  font-size: 1.1em;
  color: #333;
  line-height: 1.6;
}

section ul {
  padding-left: 20px;
  margin: 15px 0;
  color: #444;
}

section ul li {
  margin-bottom: 8px;
  list-style-type: '🌿 ';
  font-size: 1em;
}

@media screen and (max-width: 600px) {
  section {
    padding: 15px;
  }

  section h2 {
    font-size: 1.5em;
  }

  section p, section ul li {
    font-size: 0.95em;
  }
}








.experience-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}













/* Attractions Section */
/*
.attractions {
  padding: 40px 20px;
}

.attraction-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.attraction-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}

.attraction-card:hover {
  transform: scale(1.03);
}

/*
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
*/
/*
.attraction-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  animation: fadeIn 1s ease-out;
}

/* Map Section */
.map-preview {
  padding: 40px 20px;
  background-color: #eaf2f1;
  animation: fadeIn 1.2s ease-out;
}

/* Culture Section */
/*
.culture {
  padding: 40px 20px;
  background-color: #fff8f0;
  animation: fadeInUp 0.8s ease-out;
}

.culture ul {
  list-style-type: square;
  padding-left: 20px;
}*/

/* Call to Action */
.cta-footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 60px 20px;
  animation: fadeIn 1s ease-out;
}

.book-btn {
  background-color: #ff914d;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 15px;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background-color: #e07b3c;
}

/* Fade-in Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}





/* FOOTER */

/* FOOTER STYLING */
footer {
  background-color: #3c5d3c;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Open Sans', sans-serif;
}

footer p {
  margin: 8px 0;
  font-size: 15px;
}

footer a {
  color: #e0f2d2;
  text-decoration: none;
}

footer a:hover,
footer a:focus {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.social-icons img {
  width: 24px;
  margin: 0 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a:hover img,
.social-icons a:focus img {
  transform: scale(1.1);
  opacity: 0.85;
}

.khasi-quote {
  font-style: italic;
  margin-top: 15px;
  color: #cfdac8;
  font-size: 15px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 480px) {
  footer {
    padding: 30px 14px;
  }

  footer p,
  .khasi-quote {
    font-size: 14px;
  }

  .social-icons img {
    width: 22px;
    margin: 0 6px;
  }
}








.map {
  padding: 60px 20px;
  /*background-color: #f0ebe2; *//* Soft parchment tone */
  background-color: #F5F9F5; /* Soft mint green tint */
  text-align: center;
}

.map h2 {
  font-size: 32px;
  color: #3c5d3c;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.map-frame {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}










.owner-contact {
  padding: 60px 20px;
  background-color: #ffffff;
  max-width: 800px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.owner-contact h2 {
  font-size: 2em;
  color: #3c5d3c;
  margin-bottom: 10px;
}

.owner-contact p {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 18px;
}

.contact-details p {
  margin: 8px 0;
  font-size: 1em;
}

.contact-details a {
  color: #2a6c2a;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .owner-contact {
    padding: 40px 14px;
  }

  .owner-contact h2 {
    font-size: 1.6em;
  }

  .contact-details p {
    font-size: 0.95em;
  }
}






/* === ANIMATED CAPTION Tweak === */
.experiences-grid .experience-card .animated-caption:hover {
  color: #af6e4d;
  font-weight: 600;
}































/* Hidden overlay */
/*ORIGINAL#menuOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  color: white;
}*/

#menuOverlay {
  height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  padding: 4rem 1rem;
  text-align: center;
}

#menuOverlay ul {
  list-style: none;
  padding: 0;
  font-size: 1.5em;
}

#menuOverlay li {
  margin: 20px 0;
}

#menuOverlay a {
  color: white;
  text-decoration: none;
}

#closeMenu {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2em;
  cursor: pointer;
}

#menuToggle {
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 999;
  background: #333;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.menu-visible {
  /*display: flex !important;*/
  
/*adjustments*/



  visibility: visible;
  opacity: 1;
}


.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

#menuOverlay.menu-visible {
  display: flex;
}









@media (max-width: 768px) {
  .hero {
    padding: 40px 15px;
    min-height: 80vh;
    background-position: center top;
  }

  .experience-card p,
  .experience-card h4 {
    font-size: 1rem;
    text-align: center;
  }

  section h2 {
    font-size: 1.4rem;
  }

  section ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .experiences-grid,
  .attraction-grid {
    gap: 16px;
  }
}







/* If performance stutters on mobile, add this inside your media query
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll;
  }
}
  */