body {
  font-family: 'Poppins', sans-serif;
  background: #faf7f2;
  color: #2f3e2e;
}

body {/* GENERAL BODY STYLES */
body {
  font-family: 'Poppins', sans-serif;
  background: #faf7f2;
  color: #2f3e2e;
  position: relative;
  min-height: 100vh;
}

/* Full website background image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/coconut_leaf.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.08;
  z-index: -1;
}

/* HEADER & NAVBAR */
.main-header {
  padding: 0; /* Remove padding to let navbar handle it */
}

.navbar-brand {
  margin-right: 0; /* Reset margin */
}

.main-logo {
  width: 100px; /* Slightly smaller logo */
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #2f5d3a;
  margin-top: 5px;
  margin-bottom: 0;
}

.brand-tagline {
  color: #7a6a3d;
  font-size: 14px;
}

/* NAV LINKS */
.navbar-nav .nav-link {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  color: #2f5d3a;
  font-size: 1.1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c9a227;
}

/* Hamburger Icon Color */
.navbar-toggler {
  border-color: #2f5d3a;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(47, 93, 58, 0.7 )' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* CAROUSEL */
.hero-carousel img {
  height: 80vh;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0,0,0,0.4);
  padding: 10px 25px;
  border-radius: 30px;
}

.carousel-caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #f5c542; /* premium gold */
}

/* WELCOME SECTION */
.welcome-section {
  padding: 50px 0;
  text-align: justify;
}

.welcome-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

/* EXPLORE SECTION */
.explore-section {
  background: linear-gradient(135deg, #C9A227, #E8C547);
  padding: 40px 20px;
  border-radius: 0; /* Full width on mobile */
  width: 100%; 
}

.btn-gold {
  background: #5A3E2B;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
  transition: background 0.3s;
}
.btn-gold:hover {
  background: #422d20;
  color: #fff;
}

/* OIL BENEFITS SECTION */
.oil-benefits {
  padding: 70px 20px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.benefit-card:hover {
  background: #2f5d3a;
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #2f5d3a;
}

.benefit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

.benefit-card:hover h3,
.benefit-card:hover p {
  color: #ffffff;
}

/* FLOATING WHATSAPP */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 1000;
}
.wa-float:hover {
  background: #20b358;
  color: white;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 15px;
  }
  .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .welcome-section {
    text-align: center;
  }
  .welcome-img {
    float: none;
    margin-top: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .brand-title {
    font-size: 32px;
  }
  .carousel-caption h2 {
    font-size: 28px;
    padding: 8px 20px;
  }
  .hero-carousel img {
    height: 60vh;
  }
  .explore-section {
    width: 100%;
    border-radius: 0;
    padding: 30px 15px;
  }
  .benefit-grid {
    gap: 20px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .carousel-caption h2 {
    font-size: 22px;
  }
  .welcome-section h2 {
    font-size: 28px;
  }
  .explore-section h2 {
    font-size: 26px;
  }
}

  position: relative;
  min-height: 100vh;
}

/* Full website background image */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("../images/coconut_leaf.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  opacity: 0.08;
  z-index: -1;
}
/* HEADER */
.main-header {
  /* background: #fff8ec; */
  padding: 10px 10px;
}

.main-logo {
  width: 110px;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: #2f5d3a;
}

.brand-tagline {
  color: #7a6a3d;
}

/* NAV */
.center-nav {
  margin-top: 15px;

}

.center-nav a {
  margin: 0 15px;
  text-decoration: none;
  font-weight: 500;
  color: #2f5d3a;
}

.center-nav a:hover {
  color: #c9a227;
}

/* CAROUSEL */
.hero-carousel img {
  height: 80vh;
  object-fit: cover;
}

.carousel-caption h2 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  background: rgba(0,0,0,0.4);
  padding: 10px 25px;
  border-radius: 30px;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #f5c542; /* premium gold */
}

/* .carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility:visible;
    transition: transform .6s ease-in-out;
} */
/* WELCOME */
.welcome-section {
  padding: 30px 0;
  text-align: justify;
}

.welcome-img {
  max-width: 90%;
  max-height: 400px;          /* reduce image height */
  object-fit: contain;        /* keep image proportion */
  border-radius: 20px;
  float: right;               /* push image to right */
}

/* EXPLORE */
.explore-section {
  /* background: linear-gradient(135deg, #f3ecd3, #fff8e1); */
  /* background: #b3f46e; */
  background: linear-gradient(135deg, #C9A227, #E8C547);
  padding: 30px 10px;
  border-radius: 40px;
  width: 60%; 
  margin: auto;
}

.btn-gold {
  background: #5A3E2B;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

/* ===== OIL BENEFITS SECTION ===== */
.oil-benefits {
  padding: 70px 20px;
  /* background: #faf7f2; */
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.benefit-card:hover {
  background: #2f5d3a;
  color: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 60px;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 15px;
  color: #2f5d3a;
}

.benefit-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* Text color change on hover */
.benefit-card:hover h3,
.benefit-card:hover p {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

/* PRODUCTS */
.products-highlight img {
  width: 70%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.sizes {
  text-align: center;
  margin-top: 20px;
  font-weight: 500;
}
/* floating wats app */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 26px;
  padding: 14px 18px;
  border-radius: 50%;
  text-decoration: none;
}
.wa-float:hover {
  background: #20b358;
  color: white;
}

/* FOOTER - Styles moved to css/footer.css for unified footer across all pages */
