/* === HERO HEIGHT CONTROL === */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

/* Full screen */
.hero--full {
  --hero-height: 100vh;
}

/* Fixed height */
.hero--fixed {
  height: var(--hero-height);
}

/* === Swiper sizing === */
.hero .swiper,
.hero .swiper-wrapper,
.hero .swiper-slide {
  width: 100%;
  height: 100%;
}

/* === Slide === */
.hero-item {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* === Media === */
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  background-color: #000;
  
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* === Swiper Pagination Styling === */
.hero .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #E4B229;
  border: 2px solid #fff; /* white border */
  border-radius: 0; /* square shape */
  opacity: 1; /* make sure it's visible */
  margin: 0 4px !important; /* optional spacing between bullets */
}

/* Active pagination bullet */
.hero .swiper-pagination-bullet-active {
  background-color: #E4B229;
  border-color: #fff;
}

/* === Swiper Navigation Arrows === */
.hero .swiper-button-next,
.hero .swiper-button-prev {
  color: #E4B229;
  width: 40px; /* optional size */
  height: 40px;
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
  font-size: 20px; /* adjust arrow size */
  color: #E4B229; /* arrow color */
}

/* === Mobile override === */
@media (max-width: 989px) {
  .hero {
    height: auto;
  }

  .hero-media {
    position: relative;
    aspect-ratio: 16 / 9;
  }
}
