/* ==============================================================================
   CRAVE MATCH — ANIMATIONS & SHADERS
   ============================================================================== */

@keyframes floatHero {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

@keyframes shimmerSweep {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.float-animated {
  animation: floatHero 6s ease-in-out infinite;
}

.glow-animated {
  animation: glowPulse 4s ease-in-out infinite;
}

.shimmer-text {
  background: linear-gradient(90deg, var(--ink-primary) 0%, var(--salmon-light) 50%, var(--ink-primary) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 5s linear infinite;
}

/* Glass Card Glare Effect */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}

.glass-card:hover::before {
  left: 100%;
}

/* GSAP Reveal Helper Base */
.reveal-item {
  opacity: 0;
  transform: translateY(30px);
}
