/* ==============================================
   Hero Slideshow
   ============================================== */

.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  background: var(--bg-secondary);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.hero-subtitle {
  color: var(--accent);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.hero-title {
  color: #ffffff;
  font-size: var(--font-size-5xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  max-width: 700px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-xl);
  max-width: 500px;
}

.hero .btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  border-color: var(--accent);
  font-size: var(--font-size-sm);
  padding: 0.9rem 2.5rem;
}
.hero .btn-primary:hover {
  background: #fff;
  border-color: #fff;
  color: #0a0a0a;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}
.hero-dot.active {
  background: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero {
    height: 50vh;
  }
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  .hero-description {
    font-size: var(--font-size-base);
  }
  .hero-dots {
    bottom: 20px;
  }
}
