
/* ✅ HERO SLIDER (behind header & dropdown) */
.hero-slider {
  position: relative;
  z-index: var(--z-slider);
  width: 100%;
  height: 60vh; /* or 700px if you prefer fixed height */
  overflow: hidden;
  background: #000;
}

.swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  height: 100%;
  width: 100%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Center content absolutely */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 2rem;
  max-width: 1200px;
  width: 90%; /* better responsiveness */
}

  .hero-content h2 {
    font-size: 4.5rem;
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .hero-content .subtitle {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 1.1rem;
     margin-bottom: 30px;
     font-weight: normal;
  }


@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  .hero-content .subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .hero-content p {
    font-size: 1rem;
    line-height: 1.6;

  }
}

.hero-content .button {
  background: #00000000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0px;
  font-weight: bold;
  border: 1px solid white;
  margin-top: 30px;
}

.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay-light { background: rgba(255, 255, 255, 0.4); }
.overlay-dark  { background: rgba(0, 0, 0, 0.5); }

/* Fix fade effect */
.swiper-fade .swiper-slide {
  transition-property: opacity !important;
  opacity: 0;
}
.swiper-fade .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
.swiper-button-prev,
.swiper-button-next {
  color: #d1d1d1 !important;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #fff !important;

}

/* Optional: position tweak */
.swiper-button-prev {
  left: 30px;
}
.swiper-button-next {
  right: 30px;
}
/* ✅ Pagination bullets (matching accent color, with 2x scale on active) */
.swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* ⬅️ space between bullets */
  bottom: 20px !important; /* adjust vertical placement if needed */
}

.swiper-pagination-bullet {
  background: black !important;
  opacity: 1;
  transition: all 0.3s ease;
  transform: scale(2);
}

.swiper-pagination-bullet-active {
  background: var(--exhibitio-accent) !important; /* accent color */
  transform: scale(2);
  box-shadow: 0 0 10px var(--exhibitio-accent); /* subtle glow effect */
}
