/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(166, 121, 224, 0.25), transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(217, 160, 255, 0.12), transparent 50%),
    var(--bg-primary);
  overflow: hidden;
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 8 C25 0, 12 0, 12 12 C12 22, 30 32, 30 32 C30 32, 48 22, 48 12 C48 0, 35 0, 30 8Z' fill='rgba(217,160,255,0.04)'/%3E%3C/svg%3E");
  animation: bgFloat 20s linear infinite;
}

.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--purple-light);
  opacity: 0;
  transform: translateY(30px);
  animation: slideUp 1s ease 0.5s forwards;
}

.hero-title {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 1rem 0;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-glow), var(--pink-accent), var(--purple-light));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideUp 1s ease 0.8s forwards, shimmer 4s ease-in-out infinite;
  opacity: 0;
  transform: translateY(30px);
}

.hero-name {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--gold-accent);
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: nameReveal 1.2s ease 1.3s forwards;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
}

.hero-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: var(--purple-soft);
  letter-spacing: 4px;
  opacity: 0;
  animation: slideUp 1s ease 1.6s forwards;
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: slideUp 1s ease 2.2s forwards;
}

.scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-light);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--purple-light);
  border-bottom: 2px solid var(--purple-light);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}
