/* ================= HONEY HERO ================= */
.honey-hero {
  position: relative;
  height: 85vh;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url("../assets/honey.jpg") center / cover no-repeat;
}

.honey-hero-content {
  position: absolute;
  top: 60%;
  right: 8%;
  max-width: 440px;
  text-align: right;
  color: #fff;
}

.honey-hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.honey-hero-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* ================= SECTIONS ================= */
.honey-story,
.honey-process,
.honey-benefits {
  max-width: 1200px;
  margin: 140px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.honey-image img {
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

.honey-text h2 {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.honey-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 14px;
  color: #333;
}

.honey-text ul {
  list-style: none;
  padding: 0;
}

.honey-text li {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

/* ================= CTA ================= */
.honey-cta {
  margin: 160px auto;
  padding: 130px 40px;
  text-align: center;
  background:
    radial-gradient(circle at top, #fff2b8, #ffffff);
  border-radius: 48px;
  max-width: 1100px;
}

.honey-cta h2 {
  font-size: 2.7rem;
  margin-bottom: 16px;
}

.honey-cta p {
  font-size: 1.1rem;
  margin-bottom: 28px;
}

.honey-cta a {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 30px;
  background: #111;
  color: #f6f1ea;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.honey-cta a:hover {
  transform: translateY(-4px);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .honey-story,
  .honey-process,
  .honey-benefits {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .honey-hero {
    height: 70vh;
  }

  .honey-hero-content {
    top: auto;
    bottom: 10%;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .milk-hero,
  .butter-hero,
  .honey-hero,
  .ghee-hero {
    height: 65svh;
    background-position: center top;
  }
}

@media (max-width: 768px) {

  .milk-hero-content h1,
  .butter-hero-content h1,
  .ghee-hero-content h1,
  .honey-hero-content h1 {
    white-space: nowrap;
    font-size: clamp(1.6rem, 4.5vw, 2.1rem);
    text-align: center;
  }

  .milk-hero-content p,
  .butter-hero-content p,
  .ghee-hero-content p,
  .honey-hero-content p {
    white-space: nowrap;
    font-size: 0.95rem;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .milk-hero-content h1,
  .butter-hero-content h1,
  .ghee-hero-content h1,
  .honey-hero-content h1 {
    transform: scale(0.94);
  }
}

