.carousel-img {
  height: 92vh;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0.45)
  );
  z-index: 1;
}

.carousel-global-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 90%;
  max-width: 900px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.carousel-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.carousel-title span {
  color: #f5c46b;
}

.carousel-text {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-img {
    height: 75vh;
  }

  .carousel-title {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }

  .carousel-text {
    font-size: 1rem;
  }
}
