@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* 
#f4e5c9; */

/* CSS Root Variables - All Colors */
:root {
  --primary-green: #81b03f;
  --secondary-green: #a8d5ba;
  --dark-green: #81b03f;
  /* --light-green: #e6eae9; */
  --light-green: #f4e5c9;
  --light-white-background: #f5f5f5;

  --dark-green-background: #0f3d2e;
  --dark-text-color: #2c2c2c;
  --light-grey-background: #f5f5f5;
  --light-grey-border: #e0e0e03f;
  --strikethrough-price-color: #999999;
  --white-color: #ffffff;
  --star-rating-color: #ffd700;
  --hot-tag-color: #ff6b35;
  --black-color: #000000;
  /* Section headings – change in one place */
  --section-title-size: 36px;
  --section-title-size-mobile: 28px;
  --section-subheading-size: 1.25rem;
  --section-description-size: 1rem;
}

p {
  font-family: "Poppins", serif !important;
}

.sub-heading,
h1,
h2,
h3,
h4,
h5,
li,
a,
button {
  font-family: "Josefin Sans", sans-serif !important;
}

input,
textarea {
  font-family: "Poppins", serif !important;
}

li {
  font-family: "Poppins", serif !important;
}

/* div.sub-heading {
  display: none !important;
} */

button {
  border-radius: 1px !important;
}

button span {
  text-transform: capitalize !important;
}

.contact-us-btn-icon {
  font-size: 10px;
  height: 16px;
  width: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #ffffffce !important;
  border-radius: 50% !important;
  padding: 0rem !important;
  color: var(--primary-green) !important;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu,
    Cantarell, sans-serif;
  background-color: var(--white-color);
  color: var(--dark-text-color);
  line-height: 1.6;
  position: relative !important;
  min-height: 100vh;
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

.container {
  position: relative;
  z-index: 100;
}

/* Shared section heading – use .section-title everywhere for same look */
.section-title {
  text-align: center;
  font-size: var(--section-title-size);
  font-weight: 700;
  color: var(--dark-text-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-family: "Josefin Sans", sans-serif !important;
  line-height: 1.2;
}

.sub-heading {
  gap: 0.5rem;
  width: auto;
  height: auto;
  font-size: var(--section-subheading-size);
  position: relative;
  color: #000000;
  font-family: "Josefin Sans", sans-serif !important;
  font-size: 2.5rem;
  line-height: 1.2 !important;
  text-transform: capitalize;
}

.sub-heading span {
  color: var(--primary-green);
}

@media (max-width: 768px) {
  .sub-heading {
    font-size: 1.8rem !important;
  }
}

.sub-heading-image {
  position: absolute;
  height: 50px;
  width: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-heading-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.1;
  display: block;
  margin: 0 auto;
}

.title-underline {
  width: 150px;
  height: 3px;
  background-color: var(--primary-green);
  margin: 0 auto 20px;
  border-radius: 2px;
  position: relative;
  overflow: visible;
}

/* Section description – same class everywhere */
.section-description {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
  font-family: "Playfair Display", serif !important;
  font-size: var(--section-description-size);
  line-height: 1.6;
  color: var(--dark-text-color);
}

.primary-button {
  background-color: var(--primary-green);
  color: var(--white-color);
  padding-top: 18px;
  padding-bottom: 13px;
  padding-left: 13px;
  padding-right: 13px;
  border: 1px solid var(--primary-green);
  border-radius: 1px;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
  text-align: center;
  text-decoration: none;
  line-height: 1 !important;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem !important;
  font-weight: 500 !important;
}


.primary-button:hover {
  background-color: var(--dark-green-background);
}

.secondary-button {
  background-color: var(--dark-green-background);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding-top: 18px;
  padding-bottom: 13px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 1px;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
  text-align: center;
  text-decoration: none;
  line-height: 1 !important;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem !important;
  font-weight: 500 !important;
}


.secondary-button:hover {
  background-color: var(--primary-green);
  color: var(--white-color);
  border: 1px solid var(--primary-green);
}



.contact-us-btn {
  text-decoration: none !important;
  line-height: 1 !important;
  border-radius: 0 !important;
}

@media (max-width: 768px) {
  .section-title {
    font-size: var(--section-title-size-mobile);
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

@keyframes hero-text-zoom-out {
  0% {
    transform: scale(1.7);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes hero-text-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2.5);
  }
}

@keyframes hero-text-slide-up {
  0% {
    transform: translateY(300px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes hero-slide-two-content-before {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slide-left-to-right {
  0% {
    transform: translateX(-150%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-left-to-right-slider-3 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-right-to-left-slider-3 {
  0% {
    transform: translateX(180%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-left-to-right-slider-3-description {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slide-right-to-left-slider-3-description {
  0% {
    transform: translateX(-180%);
  }
  100% {
    transform: translateX(0);
  }
}

/* =====================================NAVBAR===================================================================== */

/* Layout helpers (global) */
.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-topbar {
  background: color-mix(in srgb, var(--dark-green-background) 88%, #000 12%);
  color: #ffffff;
}

.site-topbar__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  column-gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: auto;
  height: 60px;
  margin: 1rem 0;
  object-fit: contain;
}

.brand__mark {
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
  color: #ffffff;
}

.topbar-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
}

.topbar-center__link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.92;
  transition: opacity 160ms ease;
}

.topbar-center__link:hover {
  opacity: 1;
}

.topbar-center__divider {
  width: 1px;
  height: 16px;
  background: color-mix(in srgb, var(--light-green) 45%, transparent);
}

.topbar-right {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.icon-link {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  opacity: 0.9;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
  background: color-mix(in srgb, var(--primary-green) 20%, transparent);
}

.icon-link:hover {
  opacity: 1;
  background: color-mix(in srgb, var(--primary-green) 12%, transparent);
}

.icon-link i {
  font-size: 15px;
  color: #81b03f;
  transition: all 0.4s ease;
}

.icon-link:hover i {
  color: #ffffff;
}

.site-nav {
  background: color-mix(in srgb, var(--dark-green-background) 95%, transparent);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid
    color-mix(in srgb, var(--light-green) 30%, transparent);
}

.site-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
}

.brand--nav {
  display: none;
}

.nav-links {
  list-style: none;
  display: inline-flex;
  gap: 34px;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 4px;
  opacity: 0.92;
  transition: all 360ms ease;
}

.nav-link:hover {
  color: var(--primary-green);
}

.nav-link.active {
  color: var(--primary-green);
}

.nav-link:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid color-mix(in srgb, var(--light-green) 18%, transparent);
  background: color-mix(in srgb, var(--dark-green-background) 55%, transparent);
  color: #ffffff;
  width: 44px;
  height: 38px;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 70%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  margin: 3px auto;
}

.nav-backdrop {
  display: none;
}

.nav-secondary-button {
  background-color: var(--dark-green-background);
  border: 1px solid var(--primary-green);
  color: var(--primary-green);
  padding-top: 18px;
  padding-bottom: 13px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 1px;
  text-transform: capitalize !important;
  letter-spacing: normal !important;
  text-align: center;
  text-decoration: none;
  line-height: 1 !important;
  cursor: pointer;
  transition: all 0.4s ease;
  font-size: 1rem !important;
  font-weight: 500 !important;
}


.nav-secondary-button:hover {
  background-color: var(--primary-green);
  color: var(--white-color);
  border: 1px solid var(--primary-green);
}

@media (max-width: 880px) {
  .site-topbar {
    display: flex !important;
  }

  .site-topbar__inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav__inner {
    grid-template-columns:1fr 1fr;
  }

  .topbar-center {
    letter-spacing: 0.14em;
    font-size: 11px;
    gap: 10px;
  }

  .topbar-right {
    display: none !important;
  }

  .brand__logo {
    height: 60px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    padding: 96px 22px 22px;
    margin: 0;
    list-style: none;

    position: fixed;
    inset: 0;
    height: 100dvh;
    width: 100vw;

    background: color-mix(in srgb, var(--dark-green-background) 92%, #000 8%);
    border-left: 1px solid color-mix(in srgb, var(--light-green) 18%, transparent);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35);

    transform: translateX(110%) translateY(-110%) scale(0.4);
    transition: transform 0.5s ease;
    z-index: 1200;

    overflow: hidden;
    overscroll-behavior: none;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 10px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--light-green) 6%, transparent);
  }

  .nav-link:hover {
    background: color-mix(in srgb, var(--light-green) 12%, transparent);
  }

  body.nav-open .nav-links {
    transform: translate(0) translateY(0) scale(1);
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
    z-index: 1100;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .brand--nav {
    display: inline-flex;
  }

  .brand__mark {
    font-size: 22px;
  }

  .nav-toggle {
    display: flex !important;
    flex-direction: column !important;
    z-index: 1300;
    margin-left: auto;
    margin-right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links,
  .nav-backdrop {
    transition: none !important;
  }
}

/* =====================================NAVBAR END=====================================================================
 */

/* =====================================HERO====================================================================
 
 = */

/* Hero */
.hero {
  position: relative;
  min-height: 80svh;
  height: 600px;
  max-height: 700px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark-green-background);
  margin-top: -80px;
}

.hero__media {
  position: absolute;
  inset: 0;
  background-color: #161515;
  opacity: 0.7;
  transform: scale(1.02);
  z-index: 3;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero__content {
  position: relative;
  text-align: center;
  padding-block: 1rem;
  position: relative;
  z-index: 5;

  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
 
.hero__kicker {
  color: #ffffff;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 0px;
}

.hero__title-underline {
  margin: 1rem 0 1.5rem 0 !important;
}

.hero__title {
  color: #ffffff;
  font-size: clamp(3rem, 4.2vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  margin-top: 70px;
}

.hero__title span {
  color: var(--primary-green);
}

.hero__description {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  margin-top: 1rem;
}

/* .home .hero__title {
  margin-top: 70px;
} */

.hero__button {
  margin-top: 1rem;
}

.primary-button-link {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  border: none;
  cursor: pointer;
}

.page-section {
  padding-block: 64px;
  background: var(--white-color);
}

@media (max-width: 560px) {
  .hero {
    position: relative;
    min-height: fit-content;
    height: 550px;
    max-height: none;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--dark-green-background);
    margin-top: -80px;
  }

  .hero__kicker {
    font-size: 1rem;
  }

  .hero__title-underline {
    margin: 1rem 0 1rem 0 !important;
  }
}

/* =====================================FOOTER====================================================================
 
 = */

.site-footer {
  background: var(--dark-green-background);
  color: #ffffff;
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.footer-col-logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.footer-col-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: auto;
  gap: 10px;
}

.footer-logo {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-logo__img {
  width: auto;
  height: 90px;
  margin: 1rem 0;
  object-fit: contain;
}

.footer-text-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}

.footer-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 35ch;
}

.footer-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 0px;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.footer-link-icon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  transition: all 0.4s ease;
}

.footer-link-icon i {
  font-size: 15px;
  color: #81b03f;
  margin-top: 3px;
}

.footer-link-icon span {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}

.footer-link-icon:hover {
  opacity: 1;
}

.footer-link-icon:hover span {
  color: #81b03f;
}

.footer-link:hover {
  opacity: 1;
}

.footer-social {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
}

.footer-social__icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: color-mix(in srgb, var(--light-green) 12%, transparent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s ease;
}

.footer-social__icon i {
  font-size: 15px;
  color: #81b03f;
  margin-top: 3px;
  transition: all 0.4s ease;
}

.footer-social__icon:hover {
  opacity: 1;
  background: #81b03f;
}

.footer-social__icon:hover i {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--light-green) 18%, transparent);
  padding-block: 16px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-copyright {
  opacity: 0.85;
  font-size: 0.9rem;
}

.footer-legal {
  display: inline-flex;
  gap: 18px;
}

.footer-legal__link {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  font-size: 1rem;
}

.footer-legal__link:hover {
  opacity: 1;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding-top: 1rem;
  }

  .container {
    width: 95vw;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 0.5rem 2rem 0.5rem;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0.5rem 0rem 0.5rem;
  }

  .footer-col {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

/* ===================== MEDIA QUERIES FOR MOBILE DEVICES ===================== */
@media (max-width: 560px) {
  p {
    font-size: 1rem !important;
  }

  .hero__title {
    font-size: 2rem !important;
  }

  .footer-logo__img {
    width: 30vw;
    height: auto;
    margin: 1rem 0;
    object-fit: contain;
  }
}


