.banner-fade-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.banner-fade-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.banner-fade-slide.active {
  opacity: 1;
}

.banner-fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-text {
  position: absolute;
  bottom: 50px;
  left: 60px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.banner-text h1 {
  font-size: 42px;
  font-weight: bold;
}

.banner-text p {
  font-size: 18px;
  margin-top: 6px;
}

/* Dots */
.banner-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.banner-dots .dot {
  width: 12px;
  height: 12px;
  background: white;
  opacity: 0.6;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.banner-dots .dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* MOBILE */
@media(max-width: 768px) {
  .banner-text {
    bottom: 20px;
    left: 20px;
  }

  .banner-text h1 {
    font-size: 28px;
  }

  .banner-text p {
    font-size: 14px;
  }

  .banner-fade-wrapper {
    height: 260px;
  }
}
