/* ==========================================================================
   Home hero
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.5rem 4rem;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 200px;
  height: 200px;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 40px var(--color-hotpink-glow));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0.3px;
  font-weight: 400;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 1rem auto 2.25rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: hint-bounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint i { font-size: 1rem; color: var(--color-hotpink); }

@keyframes hint-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================================================
   Sub-page hero
   ========================================================================== */
.page-hero {
  min-height: 55vh;
  padding: 10rem 1.5rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 0.75rem;
}

.page-hero-subtitle {
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
}
