/* 
 * Get Ready to Learn LLC - Custom Styles & Parallax Animations
 */

:root {
  --brand-navy: #18446B;
  --brand-blue: #1D5E9B;
  --brand-sky: #BAE6FD;
  --brand-gold: #F59E0B;
  --brand-green: #10B981;
  --brand-red: #EF4444;
  --canvas-bg: #FCFDFE;
}

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
}

/* Floating Animations for Parallax Accents */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(4deg);
  }
}

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

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.05);
  }
}

.float-slow {
  animation: floatSlow 7s ease-in-out infinite;
}

.float-reverse {
  animation: floatReverse 8s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 6s ease-in-out infinite;
}

/* Glassmorphism Card Style */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Wave Dividers */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* Rainbow Dot Sequence Motif */
.rainbow-dots-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.rainbow-dots-badge span {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Parallax element transitions */
.parallax-layer {
  transition: transform 0.1s cubic-bezier(0, 0, 0.2, 1);
  will-change: transform;
}

/* Accessibility: respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .parallax-layer {
    transform: none !important;
  }
}
