/* HERO SOFT ANIMATION SYSTEM
 * Movie-like atmospheric reveals
 */

/* Ambient Floating Particles */
.hero-ambient-particles {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  background: radial-gradient(circle, var(--hot-pink) 0%, transparent 70%);
  animation: orbFloat 20s infinite ease-in-out;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -50px) scale(1.2); }
  66% { transform: translate(-50px, 100px) scale(0.8); }
}

/* Button Luxury Reveal */
.cta-premium-glow {
  padding: 1.2rem 3.5rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--hot-pink);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(255, 46, 147, 0.2);
  
  /* Reveal state */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.cta-premium-glow.cta-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.cta-premium-glow:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 46, 147, 0.3);
  letter-spacing: 0.1em;
}

/* Cinematic Overlay */
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #050505 0%, transparent 50%, rgba(5,5,5,0.4) 100%);
  z-index: 6;
  opacity: 0;
}

/* Video Layout Fix */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7; /* Softly dimmed video */
}
