body {
  font-family: "Poppins", sans-serif;
}

/* Remove Bootstrap interference */
.carousel-item {
  min-height: 0 !important;
}

/* =========================
   HERO CAROUSEL — FINAL
   ========================= */

.hero-slide {
  position: relative;
  width: 100%;
  height: 200px;              /* MOBILE */
  overflow: hidden;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .hero-slide {
    height: 280px;            /* TABLET+ */
  }
}

/* IMAGE — THIS IS THE KEY FIX */
.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 🔥 REQUIRED */
  object-position: center;
}

/* TEXT OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;    /* TRUE CENTER */
  color: #111;
  background: linear-gradient(
    90deg,
    rgba(255,193,7,0.95) 0%,
    rgba(255,193,7,0.8) 40%,
    rgba(255,193,7,0.15) 100%
  );
}

.hero-overlay h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.hero-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
} 
