/* Home page — luxury hero & section overrides */

.lux-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

.lux-hero .carousel,
.lux-hero .carousel-inner,
.lux-hero .carousel-item {
  min-height: 100vh;
  min-height: 100dvh;
}

.lux-hero .carousel-item img {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.75);
  transition: transform 8s ease-out;
}

.lux-hero .carousel-item.active img {
  transform: scale(1.04);
}

.lux-hero .carousel.slide .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

.lux-hero .carousel-item {
  position: relative;
}

.lux-hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 28, 28, 0.85) 0%,
    rgba(28, 28, 28, 0.45) 45%,
    rgba(28, 28, 28, 0.25) 100%
  );
  z-index: 1;
}

.lux-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.lux-hero-overlay .container {
  pointer-events: auto;
}

.lux-eyebrow-hero {
  letter-spacing: 0.35em;
  font-size: 0.65rem;
}

.lux-hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: none;
}

.lux-hero-line {
  display: block;
}

.lux-hero-line-accent {
  color: var(--lux-accent);
  font-weight: 500;
}

.lux-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--lux-text-muted);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.lux-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.lux-hero .carousel-indicators {
  z-index: 3;
  margin-bottom: 2rem;
}

.lux-hero .carousel-indicators [data-bs-target] {
  width: 40px;
  height: 2px;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.35);
  border: none;
  opacity: 1;
}

.lux-hero .carousel-indicators .active {
  background-color: var(--lux-accent);
}

.lux-hero .carousel-control-prev,
.lux-hero .carousel-control-next {
  z-index: 3;
}

@media (max-width: 767.98px) {
  .lux-hero-actions {
    flex-direction: column;
  }

  .lux-hero-actions .lux-btn-primary,
  .lux-hero-actions .lux-btn-outline {
    text-align: center;
    width: 100%;
  }
}
