/* ===========================================
   HERO - PREMIUM LIGHT VERSION (FINAL)
   =========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;

  background:
    radial-gradient(circle at 20% 20%, rgba(212,168,71,0.10) 0%, transparent 30%),
    radial-gradient(circle at 80% 30%, rgba(212,168,71,0.06) 0%, transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f9f6ef 40%, #fffaf0 70%, #ffffff 100%);
}

/* GOLD GLOW */
.hero::before {
  content: '';
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 60%, rgba(212,168,71,0.08) 0%, transparent 25%),
    radial-gradient(circle at 70% 30%, rgba(212,168,71,0.06) 0%, transparent 25%);
  filter: blur(40px);
  opacity: 0.8;
  pointer-events: none;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(212,168,71,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

/* TITLE */
.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;

  background: linear-gradient(135deg, #e6c36a 0%, #c99724 50%, #f4d27a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  line-height: 1.1;
  margin-bottom: 15px;
}

/* SUBTITLE */
.hero-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-cta .btn-primary {
  background: linear-gradient(135deg, #e2bd63, #c99724);
  color: #111;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(212,168,71,0.25);
}

.hero-cta .btn-secondary {
  background: rgba(0,0,0,0.05);
  color: #333;
  border: 1px solid rgba(0,0,0,0.1);
}

/* STATS */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stat {
  min-width: 120px;
  padding: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(212,168,71,0.25);
  border-radius: 14px;
  backdrop-filter: blur(8px);
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #c99724;
}

.stat-label {
  font-size: 0.8rem;
  color: #666;
}

/* BREADCRUMB FIX */
.breadcrumb a {
  color: #666 !important;
}

.breadcrumb span {
  color: #aaa !important;
}

.breadcrumb span:last-child {
  color: #c99724 !important;
  font-weight: 600;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    min-height: 90vh;
    padding-top: 70px;
  }

  .hero-content {
    padding: 20px 12px;
  }

  .hero-title-main {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat {
    width: 100%;
    max-width: 220px;
  }
}
