/**
 * Hero Section Styles
 * @package HairEvolutionFactory
 */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-light), var(--charcoal));
}

.hero .hero-glow-1 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(184,149,69,0.15), transparent 60%);
}

.hero .hero-glow-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(184,149,69,0.08), transparent 50%);
}

.hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
.hero-min .hero-content {
  max-width: 1280px;
}
.hero-min .hero-content .subtitle {
	max-width: inherit;
}

.hero .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9999px;
  padding: 0.375rem 1rem;
  margin-bottom: 2rem;
}

.hero .location-badge svg { color: var(--gold); }

.hero .location-badge span {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero h1 .gold {
  color: var(--gold);
  font-style: italic;
}

@media (min-width: 768px)  { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 6rem; } }

@media (min-width: 768px)  { .hero-min h1 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .hero-min h1 { font-size: 4rem; } }

.hero .subtitle {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

@media (min-width: 768px) { .hero .subtitle { font-size: 1.25rem; } }

.hero .hero-cta {
  background: var(--accent);
  color: var(--accent-foreground);
  padding: 0.875rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: opacity 0.2s;
}

.hero .hero-cta:hover { opacity: 0.9; }

.hero .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
