/* ROOT VARIABLES */
:root {
  --primary: #0c4833;
  --secondary: #f6ffec;
  --accent: #0c4833;
  --background: #f6ffec;
  --text: #0c4833;
  --font-title: "League Spartan", "Playfair Display", Arial, sans-serif;
  --font-main: "Public Sans", "Inter", sans-serif;
}

/* GLOBAL RESET */
*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  background: var(--background);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* === NAVBAR === */
.v-sticky-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 100px;
  display: flex;
  align-items: center;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
    box-shadow 0.4s ease;
}

.v-sticky-navbar-transparent {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.v-sticky-navbar-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(12, 72, 51, 0.1);
}

.v-navbar-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 100%;
}

.v-navbar-left {
  display: flex;
  align-items: center;
}

.v-navbar-logo {
  height: 256px;
  margin: 32px 32px 0 0;
  padding: 32px;
  margin-right: 2rem;
  transition: 0.3s ease;
}
.logo-green {
  display: none;
}
.logo-white {
  display: block;
}

/* Logo visibility on scroll */
.v-sticky-navbar-scrolled .logo-white {
  display: none;
}
.v-sticky-navbar-scrolled .logo-green {
  display: block;
}

.v-navbar-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.v-navbar-link {
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  position: relative;
}
.v-navbar-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: white;
  left: 0;
  bottom: -4px;
  transition: width 0.3s ease;
}
.v-navbar-link:hover::after {
  width: 100%;
}

.v-sticky-navbar-scrolled .v-navbar-link {
  color: var(--primary);
}
.v-sticky-navbar-scrolled .v-navbar-link::after {
  background: var(--primary);
}

/* ENQUIRE button */
.v-btn.v-navbar-enquire {
  border: 2px solid white;
  color: white;
  background: transparent;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none; /* ✅ Fix underline */
}
.v-btn.v-navbar-enquire:hover {
  background: white;
  color: var(--primary);
}
.v-sticky-navbar-scrolled .v-btn.v-navbar-enquire {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: white;
}

@media (max-width: 1024px) {
  .v-navbar-right .v-btn.v-navbar-enquire {
    display: none !important;
  }
}

/* === ABOUT HERO SECTION === */
/* .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(12, 72, 51, 0.6); /* dark green overlay */
/* z-index: 1;
} */

.about-hero {
  position: relative;
  width: 100%;
  min-height: 75vh;
  background-image: url("images/ABOUT 1 BACKGROUND NEW.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 6rem 2rem 4rem 2rem;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
  z-index: 100;
}

.about-content h1 {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-content p {
  font-family: var(--font-main);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* === HAMBURGER MENU === */
.v-navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;
}
.v-navbar-hamburger span {
  height: 3px;
  width: 24px;
  background: var(--primary);
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .v-navbar-menu {
    display: none !important;
  }
  .v-navbar-hamburger {
    display: flex !important;
  }
  .v-navbar-right .v-btn.v-navbar-enquire {
    display: none !important;
  }
}

/* === MOBILE MENU === */
.v-navbar-mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--secondary);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  padding: 5rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1100;
}
.v-navbar-mobile-menu.active {
  transform: translateX(0%);
  display: flex;
}

.v-navbar-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.v-navbar-mobile-menu .v-navbar-link {
  font-size: 1.2rem;
  font-family: var(--font-title);
  color: var(--primary);
  text-decoration: none;
}

.v-navbar-mobile-menu .v-navbar-link:hover {
  color: #176b4c;
}

.v-navbar-mobile-menu .v-btn.v-navbar-enquire {
  margin-top: 1rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 6px;
  text-align: center;
  text-decoration: none; /* ✅ Fix underline */
}

/* Responsive width on small screens */
@media (max-width: 480px) {
  .v-navbar-mobile-menu {
    width: 100%;
    padding: 4rem 1rem;
  }

  .v-navbar-mobile-menu .v-navbar-link {
    font-size: 1.1rem;
  }

  .about-content h1 {
    font-size: 1.8rem; /* Pick ONE consistent size */
  }

  .about-content p {
    font-size: 0.95rem;
  }
}

/* 768px and below */
@media (max-width: 768px) {
  .about-content h1 {
    margin-bottom: 0.3rem;
    line-height: 1.1;
  }

  .about-content h1 + h1 {
    margin-top: 0;
  }
  .about-content h1 {
    font-size: 2.2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .v-navbar-mobile-menu {
    width: 100%;
    padding: 5rem 1.5rem;
  }
}

/* 1024px and below */
@media (max-width: 1024px) {
  .v-navbar-inner {
    padding: 0 1rem;
  }

  .about-content {
    padding: 2rem 1rem;
  }

  .about-content h1 {
    font-size: 2.8rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }
}
/* about-hero.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Public Sans", sans-serif;
  background-color: #f6ffec;
  color: #fff;
}

.about-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("images/ABOUT 1 BACKGROUND NEW.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.about-content {
  max-width: 800px;
  color: #f6ffec;
}

.about-content h1 {
  font-family: var(--font-title);
  font-size: 5rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-family: "Public Sans", sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
/* Our Values Section */
.our-values {
  padding: 5rem 2rem;
  background-color: #f6ffec;
  font-family: "Public Sans", sans-serif;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.value-box img {
  height: 96px; /* Increased icon size (1.6x of 60px) */
  margin-bottom: 1.2rem;
}

.value-box h4 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.3rem;
  color: #0c4833;
  margin-bottom: 0.5rem;
}

.value-box p {
  font-family: "Public Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0c4833;
}

/* OUR STORY SECTION */

.our-story {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  /* background-image: url("images/ABOUT 2 BACKGROUND.jpg"); your custom background */
  /* background-size: cover;
  background-repeat: no-repeat;
  background-position: center; */
  padding: 4rem 2rem;
  border-radius: 12px;
}

.story-image {
  flex: 1 1 45%;
  min-width: 280px;
}

.story-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.story-content {
  flex: 1 1 50%;
  color: #0c4833;
}

.story-content h2 {
  font-family: "League Spartan", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0c4833;
}

.story-content p {
  font-family: "Public Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #0c4833;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .our-story {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .story-content h2 {
    font-size: 2rem;
  }
}

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

  .story-content p {
    font-size: 1rem;
  }
}
.membership-section {
  padding: 1rem 0.7rem;
  background-color: var(--color-pista);
  font-family: var(--font-body);
  text-align: center;
  overflow-x: hidden; /* prevent horizontal scroll bar */
}

.membership-heading {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--accent); /* deep green color */
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}

.membership-carousel {
  overflow: hidden;
  position: relative;
}

.membership-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
}

.membership-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.membership-card {
  flex: 0 0 100%;
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  scroll-snap-align: center;
}

.membership-card img {
  max-height: 140px;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.membership-card p {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0;
  font-family: var(--font-body);
}

@media (min-width: 768px) {
  .membership-track {
    gap: 3rem;
  }

  .membership-card {
    flex: 0 0 80%;
  }
}

/* Vision and Mission Section */
.vision-mission {
  background-color: #f6ffec;
  padding: 5rem 2rem;
  position: relative;
  font-family: "Public Sans", sans-serif;
  overflow: hidden;
}

.vm-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

.vm-item {
  flex: 1 1 45%;
}

.vm-item h3 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.8rem;
  color: #0c4833;
  margin-bottom: 1rem;
}

.vm-item p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #0c4833;
  margin-bottom: 1rem;
}

/* Decorative image (e.g. coffee mug) */
.vm-decoration {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 0;
  opacity: 0.95;
}

.vm-decoration img {
  height: 140px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 992px) {
  .vm-container {
    flex-direction: column;
    gap: 2.5rem;
  }

  .vm-item h3 {
    font-size: 1.6rem;
  }

  .vm-item p {
    font-size: 1rem;
  }

  .vm-decoration img {
    height: 100px;
  }
}

@media (max-width: 576px) {
  .vm-item h3 {
    font-size: 1.4rem;
  }

  .vm-item p {
    font-size: 0.95rem;
  }

  .vm-decoration {
    display: none; /* hide decoration on small screens if overlapping */
  }
}

/* footer */
.v-footer {
  background-image: url("images/footerBackground.jpg");
  background-size: cover;
  background-position: center;
  color: #f6ffec;
  font-family: "Public Sans", sans-serif;
  padding: 4rem 2rem 2rem 2rem;
}

.v-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.v-footer-column {
  flex: 1 1 300px;
  color: #f6ffec;
}

.v-footer-column h4 {
  font-family: "League Spartan", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.v-footer-column p,
.v-footer-column a {
  font-size: 1rem;
  line-height: 1.6;
  color: #f6ffec;
  text-decoration: none;
}

.v-footer-column a:hover {
  text-decoration: underline;
}

.v-footer-logo img {
  max-height: 200px; /* Increased from 100px */
  margin: 0 auto;
  display: block;
  transition: transform 0.3s ease;
}

.v-footer-logo img:hover {
  transform: scale(1.05);
}

.v-footer-social {
  margin-top: 2rem;
  text-align: center;
}

.v-footer-social a {
  color: #f6ffec;
  margin: 0 12px;
  font-size: 1.3rem;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.v-footer-social a:hover {
  transform: translateY(-3px) scale(1.1);
  color: #e4f3db;
}

.v-footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-family: "Playfair Display", cursive;
  font-size: 1.05rem;
  color: #f6ffec;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .v-footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .v-footer-column {
    flex: 1 1 100%;
  }

  .v-footer-logo img {
    max-height: 90px;
  }
}
/* Fonts */
body {
  font-family: 'Public Sans', sans-serif;
}
/* General footer styling */
footer {
  background-image: url('images/END\ BACKGROUND.jpg');
  color: #eee;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 30px;
  min-width: 200px;
}

.footer-column h2 {
  font-family: 'League Spartan', sans-serif;
  color: #fff;
  font-size: 20px;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column a {
  color: #dfdfdf;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  font-family: 'Public Sans', sans-serif;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.products-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.products-grid ul {
  flex: 1 1 150px;
}
.product-card img {
  border-radius: 3%;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background-color: #ffffff;
  border-radius: 50%;
  padding: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 20px;
  font-size: 20px;
  color: #0c4833;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #689f38;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
  border-top: 1px solid #444;
  margin-top: 20px;
}
.team-section {
  position: relative;
  text-align: center;
  padding: 60px 20px 40px;
  background-color: #f6ffec;
  color: #003322;
  font-family: League Spartan, sans-serif;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 120px; /* adjust based on where you want green to start */
  left: 0;
  width: 100%;
  height: 130px; /* how tall the green part is */
  background-color: #0c4833;
  z-index: 0;
}

.team-section h1 {
  font-size: 40px;
  color: #0c4833;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.team-container {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  z-index: 2;
}

.team-member {
  text-align: center;
  padding: 20px;
  background: transparent;
  box-shadow: none;
}

.team-member img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  background-color: #f5fdf6;
  padding: 3px;
  border: 5px solid white;
}

.team-member h3 {
  margin: 7px 0 5px;
  color: #0c4833c5;
  font-weight: bold;
}

.team-member p {
  font-family: public-sans, sans-serif;
  color: #2c2c2c;
}
