/* CAROUSEL */
.hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(320px, 75vh, 720px);
  overflow: hidden;
}

/* CONTAINER */
.carousel-container {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
}

/* SLIDE */
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

/* 🔥 IMAGE (NO TINT) */
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  object-position: center 30%;
  display: block;

  /* 🔥 EXTRA CRISP */
  filter: contrast(1.05) brightness(1.05);
}

/* ❌ REMOVE DARK OVERLAY COMPLETELY */
.carousel-slide::after {
  content: none;
}

/* CONTENT */
.carousel-content {
  position: absolute;
  bottom: 15%;
  left: 5%;
  z-index: 2;

  color: white;
  max-width: 500px;

  /* 🔥 TEXT VISIBILITY WITHOUT DARK OVERLAY */
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.8),
    0 0 20px rgba(0, 0, 0, 0.6);
}

.carousel-content h2 {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 10px;
}

.carousel-content p {
  margin-bottom: 15px;
  font-size: clamp(14px, 2vw, 18px);
}

/* 🔥 READ MORE */
.read-more {
  display: inline-block;
  padding: 10px 18px;
  background: #00ff9c;
  color: #003322;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;

  transition: 0.3s;
}

.read-more:hover {
  transform: scale(1.05);
}

/* 🔥 ARROWS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  background: rgba(0, 0, 0, 0.4);
  color: white;

  border: none;
  font-size: 30px;
  padding: 10px 14px;
  cursor: pointer;

  border-radius: 6px;
  z-index: 5;
}

.prev {
  left: 15px;
}
.next {
  right: 15px;
}

/* 🔥 DOTS */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #00ff9c;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-carousel {
    height: clamp(250px, 55vh, 500px);
  }

  .carousel-slide img {
    object-position: center 20%;
  }

  .carousel-content h2 {
    font-size: 20px;
  }
}
