/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/*.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.62));
  z-index: 1;
}*/

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

/* ─── SLIDE CONTENT ─── */
.slide-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
  padding: 0 40px;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  /*background: rgba(201, 168, 76, 0.15);*/
  background: rgba(201, 168, 76, 0.58);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--gold2);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 92px);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow:
        0 0 5px rgba(255, 215, 0, 0.6),
        0 0 10px rgba(255, 215, 0, 0.4),
        0 0 20px rgba(255, 215, 0, 0.2);
}



.slide-subtitle {
  font-size: 19px;
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 40px;
  opacity: 0.95;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: #111;
  padding: 14px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.4);
  border-radius: 50px;
}

.slide-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 168, 76, 0.5);
}

/* ─── ARROWS ─── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 54px;
  height: 54px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  user-select: none;
}

.slider-arrow:hover {
  background: rgba(201, 168, 76, 0.85);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-50%) scale(1.1);
  opacity: 1;
}

.slider-arrow.left  { left: 40px; }
.slider-arrow.right { right: 40px; }

/* ─── DOTS ─── */
.slider-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
