:root {
  --primary-green: #006837;
  --accent-orange: #e67e22;
  --dark-grey: #2c3e50;
  --light-grey: #f4f7f6;
}

/* --- HERO SECTION --- */
.hero-premium {
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/jars-row.jpg"); /* Add a nice high-res background */
  background-size: cover;
  background-position: center;
  padding: 160px 5% 100px; /* Large top padding for fixed header */
  text-align: center;
  color: white;
}

.hero-premium h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.text-purple {
  color: #d4a017; /* Changing 'purple' to a nice Gold for Kenya/Honey theme */
}

.badge-new {
  background: var(--accent-orange);
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 2px;
}

/* --- INTRO SECTION --- */
.about-intro {
  padding: 80px 10%;
  text-align: center;
  background: white;
}

.intro-content p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--dark-grey);
  max-width: 900px;
  margin: 0 auto;
}

/* --- VMG GRID (Vision, Mission, Goal) --- */
.vmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 5%;
  background: var(--light-grey);
}

.vmg-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}

.vmg-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid var(--primary-green);
}

.vmg-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.vmg-item h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-grey);
}

.vmg-item p {
  color: #666;
  line-height: 1.6;
}

/* --- COMMITMENT SECTION --- */
.commitment-section {
  padding: 80px 5%;
  background-color: #ffffff;
}

.commitment-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px; /* Space between image and text */
}

/* Image Wrapper with Accent Box */
.commitment-img-wrapper {
  flex: 1;
  position: relative;
  z-index: 1;
}

.commitment-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: block;
  position: relative;
  z-index: 2;
}

.img-accent-box {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-color: var(--primary-green);
  border-radius: 15px;
  z-index: 1;
  opacity: 0.2;
}

/* Text Styling */
.commitment-text {
  flex: 1;
}

.commitment-text h2 {
  font-size: 2.2rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.subtitle-green {
  color: var(--primary-green);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.commitment-text p:not(.subtitle-green) {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
  .commitment-section {
    padding: 50px 5%;
  }

  .commitment-content {
    flex-direction: column; /* Stacks image on top of text */
    text-align: center;
  }

  .commitment-img-wrapper {
    margin-bottom: 40px;
    width: 100%;
    max-width: 500px;
  }

  .img-accent-box {
    display: none; /* Cleaner look on mobile */
  }

  .commitment-text h2 {
    font-size: 1.8rem;
  }
}
/* --- CTA BANNER --- */
.cta-footer-banner {
  background:
    linear-gradient(rgba(0, 104, 55, 0.9), rgba(0, 104, 55, 0.9)),
    url("images/jars-row.jpg");
  padding: 100px 5%;
  text-align: center;
  color: white;
}

.overlay-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.btn-brand {
  display: inline-block;
  margin-top: 25px;
  padding: 15px 40px;
  background: var(--accent-orange);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: 0.3s;
}

.btn-brand:hover {
  background: #cf6e1d;
  transform: scale(1.05);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
  .vmg-grid {
    grid-template-columns: 1fr; /* Stack on tablet/mobile */
  }
  .hero-premium h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 120px 5% 60px;
  }
  .intro-content p {
    font-size: 1.1rem;
  }
}
