/* =============================================================
   banner.css — Hero Carousel
   ============================================================= */

.hero {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ── Navigation Buttons ─────────────────────────────────────── */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #0d3d20;
  font-size: 1.5rem;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  line-height: 1;
  transition: background 0.3s ease;
}

.carousel-btn:hover { background: #ffffff; }
.carousel-btn.prev  { left: 12px; }
.carousel-btn.next  { right: 12px; }

/* ── Dot Indicators ─────────────────────────────────────────── */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid #04e160;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: #04e160;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 767px) {
  .carousel-btn { display: none; }
  .carousel-slide img { max-height: 240px; object-fit: cover; }
}