/* =========================
   HERO SLIDER (CLEAN)
========================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

/* TRACK */
.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

/* SLIDE */
.hero-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  background-size: cover;
  background-position: center;
  position: relative;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.6)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  color: #fff;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
}

.hero-content h2 {
  font-size: 2rem;
  margin: 1rem 0;
}

.hero-content p {
  max-width: 800px;
  font-size: 1.2rem;
}

/* CTA */
.cta {
  margin-top: 1.6rem;
  padding: 1rem 2.6rem;

  background: #3E7B27;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  border-radius: 10px;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #85A947;
  color: #123524;
  transform: translateY(-4px);
}

/* =========================
   NAVIGATION BUTTON
========================= */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.45);
  border: none;
  cursor: pointer;
}

.hero-nav.prev {
  left: 24px;
}

.hero-nav.next {
  right: 24px;
}

.hero-nav svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================
   DOT INDICATOR
========================= */
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.hero-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;

  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots span.active {
  background: #85A947;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-nav {
    width: 44px;
    height: 44px;
  }

  .hero-nav svg {
    width: 20px;
    height: 20px;
  }

  .hero-nav.prev {
    left: 14px;
  }

  .hero-nav.next {
    right: 14px;
  }
}
