*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Hero CSS vars */
  --green:      #2b4a30;
  --green-dark: #1a3a2a;
  --green-mid:  #2d5a3d;
  --green-btn:  #2b4d35;
  --green-light:#4a7c5f;
  --white:      #ffffff;
  --dark:       #0e1410;
  --text:       rgba(255,255,255,0.76);
  /* Full site vars */
  --cream:      #f5f0e8;
  --cream-light:#faf8f4;
  --text-dark:  #1a2e1a;
  --text-grey:  #6b7a6b;
  --border:     #d8d0c0;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --font-serif: font-family:'Nuosu SIL', sans-serif; 
  --font-sans: 'Poppins', sans-serif; 
}
@font-face {
  font-family: 'Nuosu SIL';
  src: url('../fonts/NuosuSIL-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Nuosu SIL', sans-serif;
  height: 100%;
  font-family: var(--f);
  background-color: #fdfdfd;
  color: var(--text-dark);
  overflow-x: hidden;
  /* font-family: 'Poppins', sans-serif; */
  /* background: red !important */
}

img { display: block; width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
   font-family: 'Poppins', sans-serif;
  font-size: 0.8em;
   text-transform: uppercase;
  font-weight: 600;
  position: fixed;
  top: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 60px);
  max-width: 1280px;
  background: rgba(255,255,255,0.98);
  border-radius: 17px;
   box-shadow: 
  0 -5px 13px rgba(0,0,0,0.08),  /* 🔼 top */
  0 4px 13px rgba(0,0,0,0.1),    /* 🔽 bottom */
  0 10px 30px rgba(0,0,0,0.15);  /* deep */
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1px 0 1px;
  height: 50px;
  z-index: 1000;
  transition: box-shadow 0.3s, top 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 6px 40px rgba(0,0,0,0.18);
  top: 8px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.3in;
  
}

.logo-video{
  width: 80px;
  height: auto;

  display: block;
  object-fit: contain;
}


/* .logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-left: 2px;
} */

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  display: inline-block; /* important for scale */
  color: #2e3f2f;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.nav-links a:hover {
  color: var(--green-btn);          /* color change */
  transform: scale(1.12);  /* boom effect */
}

.nav-links a.active {
  color: #013813;              /* dark green */
  transform: scale(1.12);      /* same as hover */
}
.mobile-book{
  display: none;

}
.btn-book {
  padding: 7px 15px;
  background: var(--green-btn);
  color: var(--white);
  font-family:'Poppins', sans-serif;
  font-size: 0.88em;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid var(--green-btn);
  cursor: pointer;
  border-radius: 12px;
  white-space: nowrap;
  transition: all 0.25s ease;
  margin-right: 0.3in;
}
/* HOVER */
.btn-book:hover {
  background:transparent ; 
  color: #000;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--green-dark);
  transition: all 0.3s;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 180px;

  display: flex;
  flex-direction: column;
  overflow: hidden;

  border-radius: 12px 0 0 12px;
  z-index: 9999;

  opacity: 1;              /* 🔥 always visible */
  pointer-events: auto;    /* 🔥 clickable */
}

/* show after hero */
.floating-contact.show {
  opacity: 1;
  pointer-events: auto;
}

/* buttons */
.floating-contact a {
  width: 60px;
  height: 60px;
  background: #0f3b22;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
}

/* make both icons same size */
.floating-contact a i {
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* reduce whatsapp size */
.fa-whatsapp {
  transform: scale(1.2);
}

/* divider */
.floating-contact a + a {
  border-top: 1px solid rgba(255,255,255,0.2);
}
/* Pmembership HERO */

.contact-hero {
  text-align: center;
  padding: 150px 20px 40px;

}

.section-label {
  font-family: 'Poppins', sans-serif;
  /* font-family:'Nuosu SIL', sans-serif; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #102E16;
  margin-bottom: 20px;
}

.section-label .line {
  width: 8px;
  height: 22px;
  background: #6e7f72;
  display: inline-block;
}

.contact-hero h1 {
     font-family: 'Nuosu SIL', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--green-dark);
  line-height: 1.3;
  text-align: center;
}

.contact-hero p {
 font-family: 'Nuosu SIL', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px;
  line-height: 1.75;
  color: #6b7a6b;
}

/* contact  HERO */
.contact-hero {
  text-align: center;
  padding: 150px 20px 40px;
}
/* CONTACT SECTION */
.contact-section {
  /* background: #f3f3f3; */
  padding: 26px 20px 60px;
}

.contact-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 56px;
  border: 2px solid #b9c3b8;
  padding: 38px 44px 40px;
  /* background: #f3f3f3; */
}

.contact-form-side,
.contact-info-side {
  min-width: 0;
}

.head1,
.contact-heading {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 28px;
  font-weight: 500;
  color: #173923;
  margin-bottom: 36px;
  text-align: left;
}

.contact-heading {
  text-align: center;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-group label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #173923;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 2px solid #274a30;
  border-radius: 14px;
  background: transparent;
  padding: 0 18px;
  font-size: 16px;
  color: #173923;
  outline: none;
  box-shadow: none;
}

.form-group input {
  height: 48px;
}

.form-group textarea {
  resize: none;
  height: 140px;
  padding-top: 16px;
  font-size: 16px;
}

/* BUTTON */
.send-btn {
  margin-top: 16px;
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(90deg, #022f15 0%, #033b16 100%);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.send-btn:hover {

 background: #fdfdfd;
  color: #102E16;
  border: 1px solid #102E16;
  box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}
/* RIGHT SIDE */
.contact-info-side {
  padding-top: 0;
}

.info-block {
  text-align: center;
  /* margin-bottom: 42px; */
  margin-top: 70px;
}

.info-block:last-child {
  margin-bottom: 0;
}

.info-block h1 {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 38px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #173923;
}

.info-block p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #647564;
  line-height: 1.45;
  max-width: 420px;
  margin: 0 auto;
}


.visit-spa-section {
  width: 100%;
  /* background: #f3f3f3; */
  padding: 40px 20px 30px;
}

.visit-spa-wrapper {
 max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

/* LEFT */
.visit-left h2 {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 40px;
  font-weight: 500;
  color: #173923;
  margin-bottom: 18px;
  line-height: 1.1;
}

.visit-left p {
  max-width: 360px;
  font-size: 18px;
  line-height: 1.65;
  color: #7a8578;
  margin-bottom: 34px;
  font-family: 'Nuosu SIL',sans-serif;
  text-align: justify;
}

.visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 40px;
  background: #022f15;
  color: #ffffff;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.16);
}

.visit-btn:hover {
  background: #fdfdfd;
  color: #102E16;
  border: 1px solid #102E16;
  box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}

.visit-right {
  display: flex;
  justify-content: center;
  align-items: center;
}


.visit-right iframe {
  width: 530px;
  height: 330px;
  border: none;
  border-radius: 14px;
  display: block;
}
/* BOTTOM BUTTON */
.visit-bottom-btn-wrap {
  text-align: center;
  margin-top: 26px;
}

.all-location-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 245px;
  height: 44px;
  padding: 0 24px;
  border: 2px solid #8b9a88;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: #173923;
  text-decoration: none;
  background: transparent;
  font-family: 'Poppins', sans-serif;
}
.all-location-btn:hover{
background:#102E16;
  color:#fdfdfd ;
  border: 1px solid #fdfdfd;
  box-shadow: 0 6px 15px rgba(0,0,0,0.18);
}

.newsletter-section {
  width: 100%;
  padding: 80px 44px 150px;
  /* background: #f3f3f3; */
  border-bottom: 2px solid #0b3d1d;
}

.newsletter-row {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.newsletter-title {
  font-family:'Nuosu SIL', sans-serif; 
  font-size: 26px;
  font-weight: 500;
  color: #173923;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  flex: 1;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 2px solid #8ea08e;
  border-radius: 12px;
  outline: none;
  background: transparent;
  padding: 0 18px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: #18361f;
}

.newsletter-form input::placeholder {
  color: #a7afa7;
}
.subscribe-popup {
  position: fixed;
  top: 25px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #102E16;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
}

.subscribe-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.newsletter-form button {
  min-width: 120px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: #063d17;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
  padding: 0 22px;
}



 /* ===== FOOTER ===== */
.site-footer {
  background: #102E16;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* Grid */
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.95fr 1.15fr;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
  border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-brand,
.footer-col {
  min-height: 380px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  /*box-sizing: border-box;*/
}

.footer-col:last-child {
  border-right: none;
}

/* Brand */
/*.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
*/

.footer-brand-top {
  padding: 28px;
}


.footer-logo {
  font-size: 60px;
  font-family: 'Nuosu SIL', sans-serif;
  /* margin: 0; */
  
  text-align: center;
  /* align-items: center; */
}


.footer-logo-sub {
  font-size: 20px;
  letter-spacing: 10px;
  margin-left: 15px;
  text-align: center;
  font-family: 'Nuosu SIL', sans-serif;
  /* align-items: center; */
  /* margin-top: 50px; */
}

/*.footer-col h3 {
  font-size: 18px;
  margin: 0 0 18px;
  color: #ffffff;
  font-weight: 400;
  font-family: 'Nuosu SIL', sans-serif;
  letter-spacing: 0.5px;
}*/

.footer-desc {
font-size: 17px;
  color:#ffff;
  /* max-width: 265px; */
  text-align: justify;
  margin-top: 20px;
  align-items: center;
}

/* Social area */
.footer-social-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 28px;
}

.footer-social-title {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Nuosu SIL', sans-serif;
  text-align:center;
  margin-bottom: 35px;
}

.footer-socials {
 display: flex;
  gap: 30px;
  margin-left: 40px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff; /* 🔥 important */
  font-size: 18px;
}

.footer-socials a:hover {
  background: #ffffff;
  color: #173923;
}

/* Columns */
.footer-col {
    padding: 28px;
  align-items: center;
}

.footer-col h3 {
  font-family: 'Nuosu SIL', sans-serif;
  margin-bottom: 18px;
   margin-left: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
   margin-bottom: 10px;
   font-family: 'Poppins', sans-serif;
   margin-left: 20px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Contact */
.footer-contact ul {
  margin-top: 0;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.82);
  font-family: 'Poppins', sans-serif;
  
}

.footer-contact i {
  color: #ffffff;
  font-size: 13px;
  margin-top: 4px;
  min-width: 14px;
}
.smdate{
  font-size: 15px;
}

/* Bottom */
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
}

.footer-bottom-links {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}