/* ------------- carousel sizing ------------- */
#heroCarousel {
  width: 80%;
  height: auto;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ------------- copy + video panel ------------ */
.hero-panel {
  width: 1083.72px;
  /* align with carousel width   */
  margin: 2rem auto 0;
  /* centred                     */
  display: flex;
  gap: 2rem;
}

.hero-text,
.hero-video {
  flex: 1 1 50%;
}

.hero-video {
  position: relative;
  height: 300px;
}

.hero-video video {
  width: 100%;
  height: 100%;

}

.video-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem;
  cursor: pointer;
  z-index: 10;

  /* Flex center icon */
  display: flex;
  align-items: center;
  justify-content: center;

  width: 48px;
  /* Fixed width for uniformity */
  height: 48px;
  /* Fixed height for center alignment */
  border-radius: 50%;
  /* Optional: make button circular */
}

.video-nav.left {
  left: 10px;
}

.video-nav.right {
  right: 10px;
}

.video-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}


/* title & description */
.hero-title {
  font-family: 'Alice', serif;
  /* changed from Beau Rivage to Alice */
  font-size: 45px;
  /* updated size */
  line-height: 1.2;
  text-align: left;
  font: normal normal normal 45px/45px Alice;
  letter-spacing: 2.25px;
  color: #E7BF71;
  text-transform: uppercase;
  opacity: 1;
}

.hero-desc {
  font-family: 'Alice', serif;
  font-size: 20px;
  /* updated size */
  line-height: 1.4;
  margin-top: 0.75rem;
  color: #fff;
}


/* dashed gold placeholder */
:root {
  --aqi-gold: #E7BF71;
}

.hero-video {
  border: 2px solid var(--aqi-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alice', serif;
  font-size: 1.25rem;
  color: var(--aqi-gold);
  min-height: 220px;
}

/* ------------- responsive fallback ------------ */
@media(max-width: 992px) {

  #heroCarousel,
  .hero-panel {
    width: 100%;
  }

  .hero-panel {
    flex-direction: column;
  }

  .hero-video {
    width: 100%;
  }
}

.swiper {
  width: 100%;
  padding: 10px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

.swiper-slide img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 6px;
  margin: 0;
}

.event-gallery-swiper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  color: #FFC400;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 0 6px #000, 0 0 6px #000;
  transition: transform 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.2);
  /* Zoom in */
}

@media (max-width: 576px) {
  .swiper-slide {
    justify-content: center;
    text-align: center;
  }

  .event-gallery-swiper img {
    max-width: 90%;
    /* or fixed width like 280px */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .contact-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    justify-content: center;
  }

  .contact-item {
    width: 100%;
    text-align: center !important;
  }

  .hero-title {
    text-align: center;
  }
}