/* ══════════════════════════════════════════
   styles/hero.css — Hero Section Styles
   STARKOPIAN DOMAIN
══════════════════════════════════════════ */

#hero {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0000 0%, #000 40%, #0d0000 100%);
  filter: brightness(1) saturate(1.5);
  transform: scale(1.05);
  animation: heroBgFloat 8s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139,0,0,0.3) 0%,
    rgba(0,0,0,0.75) 60%,
    #000 100%
  );
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #000 0%, transparent 35%, transparent 65%, #000 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

/* ── Logo ── */
.hero-logo-wrap {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

.hero-logo-inner {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,0,0.5) 0%, #000 100%);
  border: 2px solid rgba(220,20,60,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--crimson);
  letter-spacing: 0.05em;
  animation: logoPulse 3s ease-in-out infinite;
  text-shadow: 0 0 20px var(--glow);
}

.hero-logo-ring {
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(177,18,38,0.3);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.hero-logo-ring::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--glow);
}

/* ── Text ── */
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 40px rgba(220,20,60,0.6), 0 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s ease forwards;
}

.hero-alias {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  color: var(--crimson);
  letter-spacing: 0.3em;
  text-shadow: 0 0 30px rgba(220,20,60,1), 0 0 60px rgba(177,18,38,0.6);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 1.0s ease forwards, energyFlicker 6s 2s infinite;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s ease forwards;
}

.hero-tagline span              { color: var(--text); font-weight: 600; }
.hero-tagline span + span::before { content: ' · '; color: var(--red); }

/* ── Buttons ── */
.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.8s 1.3s ease forwards;
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s 1.6s ease forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--crimson));
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.4em;
  color: var(--muted);
}
