body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f5f2ed; /* Soft linen background */
  color: #333;
  margin: 0;
  padding: 0;
  font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem); /* Responsive font sizing */
  line-height: 1.6; /* Improves readability */
  font-smooth: always;
  -webkit-font-smoothing: antialiased; /* Crisp text rendering */
  touch-action: manipulation; /* Better touch responsiveness */
  scroll-behavior: smooth; /* Elegant scroll experience */
}

*, *::before, *::after {
  box-sizing: border-box; /* Consistent sizing model */
}





/* === HEADER BACKDROP AND STRUCTURE === */
header {
  position: relative;
  background: url('images/double11.jpeg') no-repeat center center;
  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;
}

/* === Atmospheric Overlay === */
header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 1;
}

/* === Ensure Content Renders Above Overlay === */
header > * {
  position: relative;
  z-index: 2;
}

/* === Responsive Heading Text === */
header h1 {
  font-size: clamp(2rem, 5vw, 48px);
  margin-bottom: 10px;
  font-family: 'Kaushan Script', cursive;
}

/* === Responsive Subheading Text === */
header p {
  font-size: clamp(1.2rem, 3vw, 24px);
  margin-bottom: 30px;
}

/* === Call-to-Action Buttons === */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.book-now-btn {
  background-color: #3c5d3c; /* Khasi green */
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.book-now-btn:hover {
  background-color: #2e472e;
  transform: translateY(-2px);
}


@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .book-now-btn {
    width: 80%;
  }
}





/* Navbar Base Styling */
.navbar {
  background-color: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Navbar List Layout */
.navbar{
  background-color: #f0ebe2; /* Soft parchment tone */
  border: 1px solid #d4c4ae; /* Gentle earthy border */
}


.navbar ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 1rem;
}

/* Navbar Links */
.navbar li a {
  text-decoration: none;
  color: #333;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover and Active States */
.navbar li a:hover,
.navbar li a.active {
  background-color: #f5f2ed;
  color: #000;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .navbar ul {
    flex-direction: column;
    align-items: center;
  }

  .navbar li a {
    width: 100%;
    text-align: center;
  }
}





/* === ABOUT SECTION BASE STYLES === */
.about-section {
  background-color: #f5f8f6;
  padding: 60px 20px;
  font-family: 'Open Sans', sans-serif;
}

.about-heading h2 {
  font-size: 36px;
  color: #2e4e2e;
  text-align: center;
}

.subheading {
  font-size: 18px;
  text-align: center;
  color: #666;
  margin-top: 5px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
  justify-content: center;
}

.about-image {
  position: relative;
  flex: 1 1 400px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.image-overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(60, 93, 60, 0.85);
  color: #fff;
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 16px;
}

.about-text {
  flex: 1 1 400px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #333;
}

.pull-quote {
  font-size: 20px;
  font-style: italic;
  color: #3c5d3c;
  border-left: 4px solid #7da47d;
  padding-left: 14px;
  margin: 25px 0;
}

.about-benefits {
  list-style: none;
  padding-left: 0;
}

.about-benefits li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #444;
}

.about-benefits i {
  margin-right: 10px;
  color: #2e4e2e;
}

/* === RESPONSIVE ENHANCEMENTS === */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }

  .about-heading h2 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .image-overlay {
    font-size: 14px;
    padding: 8px 12px;
  }

  .pull-quote {
    font-size: 18px;
  }

  .about-benefits li {
    font-size: 15px;
  }
}





/* === ROOMS SECTION BASE STYLES === */
.rooms-section {
  padding: 4rem 2rem;
  background-color: #f5f8f6;
  text-align: center;
}

.rooms-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #2e4e2e;
}

/* === ROOM PANEL LAYOUT === */
.rooms-section .room-panels {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === ROOM CARD === */
.rooms-section .room-panel {
  display: flex;
  width: 600px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.rooms-section .room-panel:nth-child(1) {
  animation-delay: 0.2s;
}
.rooms-section .room-panel:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rooms-section .room-panel:hover {
  transform: scale(1.02);
}

/* Subtle zoom on image */
.rooms-section .room-panel img {
  width: 40%;
  object-fit: cover;
  border-right: 1px solid #eee;
  transition: transform 0.3s ease;
}

.rooms-section .room-panel:hover img {
  transform: scale(1.04);
}

/* === ROOM INFO STYLING === */
.rooms-section .room-info {
  padding: 1.5rem;
  flex: 1;
  text-align: left;
}

.rooms-section .room-info h3 {
  font-size: 1.4rem;
  color: #3c5d3c;
  margin-bottom: 0.5rem;
}

.rooms-section .room-info p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.rooms-section .room-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.rooms-section .room-info li {
  margin-bottom: 0.3rem;
}

/* === EXPLORE BUTTON === */
.rooms-section .explore-btn {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #457fca;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.rooms-section .explore-btn:hover {
  background-color: #345fa8;
}

.rooms-section .explore-btn:focus {
  outline: 3px dashed #457fca;
  outline-offset: 4px;
}

/* === RESPONSIVE ENHANCEMENTS === */
@media (max-width: 768px) {
  .rooms-section .room-panel {
    flex-direction: column;
    width: 90%;
  }

  .rooms-section .room-panel img {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }

  .rooms-section .room-info {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .rooms-section .room-panel {
    width: 46%;
  }

  .rooms-section .room-panels {
    justify-content: space-between;
  }
}





/* 1. Zoom-in on hover */
.room-image {
  transition: transform 0.4s ease;
}
.room-image:hover {
  transform: scale(1.05);
}

/* 2. Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3. Slide-in for call-to-action buttons */
.slide-in {
  transform: translateX(-100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.slide-in.visible {
  transform: translateX(0);
  opacity: 1;
}

/* 4. Pulse effect for hover interaction */
.explore-btn {
  transition: transform 0.3s ease;
}
.explore-btn:hover {
  transform: scale(1.1);
}












body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fdfdfd;
}

.gallery {
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
max-width: 100vw;
}

/*
.fade-text {
  animation: fadeIn 1.5s ease;
}*/

.swiper-container {
  width: 100%;
  max-width: 900px;
  /*max-width: 100vw;    FOR MOBILE*/
  height: 60vh;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  position: relative; /* ✨ This keeps nav buttons anchored */
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.slide-frame:hover img {
  transform: scale(1.03);
}

.swiper-button-prev,
.swiper-button-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* 👈 ensure layering */
  width: 44px;
  height: 44px;

}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
  .swiper-container {
    height: 40vh;
  }

  .swiper-button-prev,
  .swiper-button-next {
    padding: 6px;
  }
}

/*@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}*/

@media (max-width: 768px) {
  .some-desktop-only-element {
    display: none;
  }
}

.fade-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-text.visible {
  opacity: 1;
  transform: translateY(0);
}








.testimonials blockquote {
  font-style: italic;
  background: #fff;
  border-left: 4px solid #3c5d3c;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.testimonials span {
  display: block;
  text-align: right;
  font-size: 15px;
  color: #555;
  margin-top: 10px;
}

@media (max-width: 480px) {
  .testimonials blockquote {
    padding: 12px 16px;
    font-size: 0.95rem;
  }

  .testimonials span {
    font-size: 14px;
  }
}

/*This keeps everything centered and comfortable on narrow viewports.*/
.testimonials {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials blockquote::before {
  content: "❝";
  font-size: 24px;
  color: #7da47d;
  margin-right: 8px;
}


.testimonial-heading {
  text-align: center;
  margin-top: 40px; /* or whatever spacing you like */
  margin-bottom: 20px;
  font-size: 1.8em;
  font-family: 'Playfair Display', serif;
  color: #3C6E47;
}










/*Custom map */

.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);
}


@media (max-width: 480px) {
  .map {
    padding: 40px 15px;
  }

  .map h2 {
    font-size: 24px;
  }

  .map p {
    font-size: 14px;
  }

  .map-frame {
    height: 300px; /* reduces vertical space usage on mobile */
  }
}

/*Adjustments for mobile view     #This ensures the iframe doesn't accidentally introduce scrollbars or spacing issues if nested oddly.
.map iframe {
  width: 100%;
  height: 100%;
  display: block;
}*/








/* Accessibility */
.visually-hidden {
  position: absolute;
  left: -9999px;
  top: -9999px;
}

/* Booking Layout and Inputs */
.booking-contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

#booking-form,
.owner-contact {
  flex: 1 1 48%;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

#booking-form {
  max-width: 700px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Open Sans', sans-serif;
}

/* Form Inputs */
#booking-form input,
#booking-form select,
#booking-form textarea {
  width: 100%;
  padding: 14px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#booking-form input:focus,
#booking-form select:focus,
#booking-form textarea:focus {
  border-color: #3c5d3c;
  box-shadow: 0 0 0 3px rgba(60, 93, 60, 0.2);
  outline: none;
}

#booking-form textarea {
  resize: vertical;
  min-height: 100px;
}

/* Buttons */
#booking-form button {
  background-color: #25D366;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#booking-form button:hover {
  background-color: #1ea756;
}

/* Host Contact Section */
.owner-contact {
  background-color: #ffffff;
  max-width: 800px;
  margin: auto;
  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;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .booking-contact-wrapper {
    flex-direction: column;
  }

  #booking-form,
  .owner-contact {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  #booking-form input,
  #booking-form select,
  #booking-form textarea {
    font-size: 15px;
    padding: 12px 10px;
  }

  #booking-form {
    padding: 30px 20px;
  }

  #booking-form button {
    font-size: 15px;
    padding: 12px;
  }







  
  .owner-contact p,
  .contact-details p {
    font-size: 0.9em;
  }
}






/* 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;
  }
}




