/* ============================================
   SELAH ARTISTRY — Animations & Transitions
   ============================================ */

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lineGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}


/* ── HERO ENTRANCE ANIMATIONS ── */
.hero-eyebrow {
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards var(--ease-out);
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-title {
  opacity: 0;
  animation: fadeUp 1s 0.55s forwards var(--ease-out);
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 92px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; font-weight: 300; }

.hero-desc {
  opacity: 0;
  animation: fadeUp 1s 0.8s forwards var(--ease-out);
  font-size: var(--text-base);
  line-height: 1.9;
  color: var(--charcoal-light);
  max-width: 380px;
  margin-bottom: 52px;
}

.hero-actions {
  opacity: 0;
  animation: fadeUp 1s 1s forwards var(--ease-out);
  display: flex;
  gap: 24px;
  align-items: center;
}


/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* Fade-only variant (no upward movement) */
.reveal-fade {
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out);
}
.reveal-fade.visible { opacity: 1; }
