/* ========================= */
/* FULL WIDTH HERO SLIDER */
/* ========================= */

.hero-slider {
  width: 100vw;
  height: 600px;
  position: relative;
  overflow: hidden;
  margin: 0;
}

.hero-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
}

/* Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.5);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dots .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  cursor: pointer;
}

.hero-dots .dot.active {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 280px;
  }
}
