/* ============================
   Adorable Brat — Custom Animations
   ============================ */

/* Fade-In Animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glow Pulse Animation for Neon Text */
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 5px var(--neon-purple), 0 0 15px var(--neon-purple);
  }
  50% {
    text-shadow: 0 0 15px var(--neon-purple), 0 0 30px var(--neon-purple);
  }
}

/* Soft Fade-In on Load */
.fade-in {
  animation: fadeIn 1.2s ease-out both;
}

/* Delay variations for staggered effects */
.fade-in-delay-1 { animation-delay: 0.3s; }
.fade-in-delay-2 { animation-delay: 0.6s; }
.fade-in-delay-3 { animation-delay: 0.9s; }

/* Neon Accent Glow */
.neon-glow {
  text-shadow: 0 0 8px #C77DFF, 0 0 16px #C77DFF, 0 0 32px #C77DFF;
}

.glass {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 0, 255, 0.15); /* magenta tint */
  border-radius: 1rem;
  border: 2px solid magenta;
}

/* Glass Hover Lift */
.glass:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(199, 125, 255, 0.2);
}

/* Smooth Page Transitions for Links */
a, button {
  transition: all 0.25s ease-in-out;
}

/* Add subtle glowing border hover */
a:hover, button:hover {
  filter: brightness(1.2);
}

/* ============================
   Optional Fade Animations for Sections
   ============================ */
section {
 /* opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease; */
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* ============================
   Neon + Glow Animations
   ============================ */

/* Subtle glow for header logo */
.neon-glow {
  text-shadow:
    0 0 5px #C77DFF,
    0 0 10px #C77DFF,
    0 0 20px #C77DFF;
}

/* Flicker animation for Hero title */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
    text-shadow:
      0 0 4px #C77DFF,
      0 0 10px #C77DFF,
      0 0 20px #C77DFF,
      0 0 40px #C77DFF;
  }
  20%, 24%, 55% {
    opacity: 0.4;
    text-shadow: none;
  }
}

.neon-flicker {
  animation: flicker 3s infinite;
}

/* Gentle teal blinking for "Coming Soon" */
@keyframes neonBlink {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 8px #00F5D4, 0 0 16px #00F5D4;
  }
  50% {
    opacity: 0.5;
    text-shadow: none;
  }
}

.neon-blink {
  animation: neonBlink 1.5s infinite alternate;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0B0B0F;
  color: #e0e0e0;
}
