/* ==========================================================================
   Home Page Styles
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(253,248,240,0.9), rgba(247,231,206,0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-secondary);
  font-size: 1.2rem;
  color: var(--color-warm-gray);
  margin-bottom: 2rem;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.hero-dot.active {
  background: var(--color-gold);
}

/* Featured Services */
.services-grid .premium-card .card-link {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-grid .premium-card .card-link:hover {
  color: var(--color-rose-gold);
}

@media (max-width: 767px) {
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-section { min-height: 80vh; }
}
