*, *::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: 'Cormorant Garamond', 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;
}

.about-container,
.mission-container,
.why-deliza-grid,
.faq-section {
  width: 100%;
  max-width: clamp(1200px, 90vw, 1900px);
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(42px, 4vw, 100px);
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: 'Nuosu SIL', sans-serif;
  height: 100%;
  font-family: var(--f);
  background: rgba(255,255,255,0.98);
  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;
  text-align: center;
}
/* 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;
}

/* ABOUT HERO */

.about-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;
}

.about-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;
}

.about-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;
}

/* about  HERO */
.about-hero {
  text-align: center;
  padding: 150px 20px 40px;
}
/* ===== ABOUT SECTION ===== */
.about {
  width: 100%;
  padding: 30px 50px 70px;
}

.floating-contact {
  position: fixed;
  right: 0;
  top: 150px;

  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);
}

.about-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 54px;
}

/* IMAGE */
.about-img {
  width: 350px;   
  height: 400px;
  object-fit: cover;
}

/* TEXT */
.about-text {
  flex: 1;
  padding-top: -2px;
  /* gap: 10px; */
}

.about-text p {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 22px;
  line-height: 1.5;
  color: #8d998c;
  /* font-weight: 300; */
  margin: 0 0 40px;
}

.about-text p:last-child {
  margin-bottom: 10;
}


.mission {
  padding: 80px 60px;
}

.mission-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.mission-img {
  width: 350px;
}

.mission-text h2 {
  font-size: 29px;
  margin-bottom: 10px;
  font-weight: 100;
  font-family: 'Nuosu SIL', sans-serif;
}

.mission-text p {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 20px;
  line-height: 1.8;
  color: #5c6f5f;
  margin-bottom: 20px;
}


.why-deliza-section {
  width: 100%;
  /* background: #f3f3f3; */
  padding: 20px 52px 48px;
}

/* TITLE */
.why-title {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 40px;
  font-weight: 100;
  color: #173923;
  margin-bottom: 50px;
  text-align: center;
}

.why-deliza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 58px;
  row-gap: 58px;
  justify-items: center;
  /* align-items: start; */
}

/*bottom row full width */
.bottom-row {
  grid-column: 1 / -1;   /* full width */
  display: flex;
  justify-content: center;
  gap: 58px;
}


.why-card {
  width: 100%;
  max-width: 350px;
  min-height: 200px;
  border: 2px solid #173923;
  background: transparent;
  padding: 25px 30px 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-card h3 {
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.18;
  color: #173923;
  margin-bottom: 14px;
}

.why-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  color: #596d5c;
  margin: 0;
}

/*FQA Section*/
.faq-section {
  width: 100%;
  padding: 80px 20px 50px;
  margin-bottom: 70px;
  
}

.faq-title {
  text-align: center;
  font-family: 'Nuosu SIL', sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: #173923;
  margin-bottom: 70px;
}

.faq-card {
  max-width: 820px;
  margin: 0 auto 14px;
  border-radius: 10px;
  background: #102E16;
  transition: background 0.35s ease, border 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

/* closed state */
.faq-question {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  padding: 16px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.faq-question-text {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  transition: color 0.35s ease;
}

.faq-icon {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: #ffffff;
  transition: color 0.35s ease, transform 0.35s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 42px;
  transition:
    max-height 0.45s ease,
    opacity 0.3s ease,
    padding 0.35s ease;
  
}

.faq-answer p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #2b3a31;
  margin: 0;
  padding: 0 0 22px;
}

/* OPEN FAQ BOX */
.faq-card.active {
  background: linear-gradient(135deg, #f1f7f3, #f8fcf9);
  border: 1.5px solid #cfded4;
  border-radius: 14px;
}

/* question text */
.faq-card.active .faq-question-text {
  color: #183726;
}

.faq-card.active .faq-question-text {
  color: #173923;
}

.faq-card.active .faq-icon {
  color: #173923;
  transform: rotate(90deg);
}

.faq-card.active .faq-answer {
  opacity: 1;
  padding: 0 42px;
}

/* optional hover for closed */
.faq-card:not(.active):hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

 
/* ===== 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: 13px;
  color:#ffff;
  /* max-width: 265px; */
  text-align: justify;
  margin-top: 20px;
  align-items: center;
  letter-spacing: 1px;
}

/* 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;
}


