/* Home page styles — hero, sections spacing.
 *
 * The hero art is very light, so the scrim is brand-tinted and strongest
 * right behind the centered text (radial), fading toward the edges to let
 * the 3D illustration breathe. Text shadows keep the white copy crisp, and
 * a bottom fade melts the hero into the first section.
 */

.home-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-image: url("/static/images/hero.b326d2693f61.png");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 95% at 50% 58%, rgba(9, 41, 23, 0.62) 0%, rgba(9, 41, 23, 0.3) 55%, rgba(9, 41, 23, 0) 100%),
    linear-gradient(180deg, rgba(9, 41, 23, 0.35) 0%, rgba(9, 41, 23, 0.18) 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 100%);
  pointer-events: none;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.home-hero h1 {
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.home-hero p.lead {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.home-hero .btn-brand {
  background-color: #fff;
  color: var(--mzki-brand-dark);
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(6, 32, 18, 0.35);
}

.home-hero .btn-brand:hover {
  background-color: var(--mzki-brand-soft);
  box-shadow: 0 10px 26px rgba(6, 32, 18, 0.4);
}

.home-section {
  padding: 3.5rem 0;
}

.home-section--alt {
  background-color: var(--mzki-bg-soft);
}