/* ============================================
   LA EVA — Hero Slider
   ============================================ */

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--color-bg);
}

.hero-slider__track {
  display: flex;
  transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.hero-slide__image {
  position: relative;
  overflow: hidden;
}

.hero-slide__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide__image img {
  transform: scale(1.05);
}

.hero-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl) var(--space-4xl);
  background-color: var(--color-bg);
}

.hero-slide__label {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent-pink);
  margin-bottom: var(--space-xl);
}

.hero-slide__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-regular);
  font-style: normal;
  color: var(--color-accent-pink);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-xl);
  max-width: 550px;
}

.hero-slide__desc {
  font-size: var(--fs-base);
  color: var(--color-text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 450px;
}

.hero-slide__cta {
  align-self: flex-start;
}

/* ---- Slider Navigation ---- */
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border: none;
  cursor: pointer;
  z-index: var(--z-base);
  transition: all var(--transition-normal);
  border-radius: 0;
  box-shadow: var(--shadow-md);
}

.hero-slider__nav:hover {
  background: var(--color-text-primary);
  color: var(--color-text-white);
}

.hero-slider__nav svg {
  width: 20px;
  height: 20px;
}

.hero-slider__nav--prev {
  left: 0;
}

.hero-slider__nav--next {
  right: 0;
}

/* ---- Slider Dots ---- */
.hero-slider__dots {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-sm);
}

.hero-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.hero-slider__dot.is-active {
  background: var(--color-text-primary);
  width: 24px;
}
