/* ======================================================
   home.css
   01.13.2026 — 08:34 PM CST (America/Chicago)
   The Bee Place 3.0 — Homepage Styling (LOCKED v1.0)

   Scope:
   - Homepage only
   - No global selectors
   - No menu, footer, or cart impact
   ====================================================== */

/* -------------------------------
   HERO
-------------------------------- */

.tbp-home-hero {
  margin-bottom: 28px;
}

.tbp-hero-rotator {
  box-shadow: 0 8px 28px rgba(0,0,0,0.45);
  border-radius: 8px;
}

/* -------------------------------
   IDENTITY LINE
-------------------------------- */

.tbp-home-identity {
  text-align: center;
  padding-top: 6px;
  padding-bottom: 10px;
}

.tbp-home-identity .tbp-home-h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.tbp-home-identity .tbp-home-sub {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  opacity: 0.9;
  max-width: 760px;
  margin: 0 auto;
}

/* -------------------------------
   MAIN CONTENT FLOW
-------------------------------- */

.tbp-home-main {
  margin-top: 18px;
}

/* Section rhythm */
.tbp-home-main .tbp-home-h2 {
  font-size: clamp(1.35rem, 4vw, 1.8rem);
  font-weight: 600;
  margin-top: 34px;
  margin-bottom: 6px;
  position: relative;
}

/* Subtle divider line */
.tbp-home-main .tbp-home-h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 6px;
  background: linear-gradient(
    to right,
    rgba(212,175,55,0.9),
    rgba(212,175,55,0)
  );
}

/* Supporting text */
.tbp-home-sub {
  font-size: 1.02rem;
  line-height: 1.55;
  opacity: 0.92;
  max-width: 900px;
}

/* -------------------------------
   INFORMATIONAL SECTIONS
-------------------------------- */

/* Ag + Help should feel quieter */
.tbp-home-main .tbp-home-h2:nth-of-type(4),
.tbp-home-main .tbp-home-h2:nth-of-type(5) {
  font-size: clamp(1.2rem, 3.5vw, 1.55rem);
  opacity: 0.95;
}

.tbp-home-main .tbp-home-h2:nth-of-type(4)::after,
.tbp-home-main .tbp-home-h2:nth-of-type(5)::after {
  width: 40px;
  opacity: 0.6;
}

/* -------------------------------
   MOBILE TUNING
-------------------------------- */

@media (max-width: 600px) {

  .tbp-home-identity {
    padding-top: 4px;
  }

  .tbp-home-main {
    margin-top: 10px;
  }

  .tbp-home-main .tbp-home-h2 {
    margin-top: 26px;
  }
}
