/* ============================================
   MiniCal - Custom CSS (Tailwind CDN handles layout)
   ============================================ */

/* Keyframe Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

@keyframes float-delayed {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-15px) scale(1.02); }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Glassmorphism Header */
.header-scrolled {
  background: rgba(15, 13, 26, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, #06B6D4, #4F46E5, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Animated Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.orb-1 {
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  animation: float-delayed 10s ease-in-out infinite;
  animation-delay: -3s;
}

.orb-3 {
  animation: float 12s ease-in-out infinite;
  animation-delay: -5s;
}

/* Hero gradient animation */
.hero-gradient {
  background: linear-gradient(135deg, #0F0D1A 0%, #1a1040 25%, #0F0D1A 50%, #0d1a2e 75%, #0F0D1A 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Short hero for subpages (pricing, partners) */
.hero-gradient-short {
  background: linear-gradient(135deg, #0F0D1A 0%, #1a1040 25%, #0F0D1A 50%, #0d1a2e 75%, #0F0D1A 100%);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

/* Card hover lift */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Partner logo grayscale */
.logo-grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-grayscale:hover {
  filter: grayscale(0%);
  opacity: 1;
}
