/* [project]/src/app/animations.css [app-client] (css) */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0)translateX(0)scale(1);
  }

  25% {
    transform: translateY(-30px)translateX(10px)scale(1.05);
  }

  50% {
    transform: translateY(-20px)translateX(-10px)scale(1.02);
  }

  75% {
    transform: translateY(-40px)translateX(5px)scale(1.08);
  }
}

.animate-float {
  animation: 20s ease-in-out infinite float;
}

.animate-float-delayed {
  animation: 25s ease-in-out 5s infinite float;
}

.animate-float-slow {
  animation: 30s ease-in-out 10s infinite float;
}

@keyframes gradient-x {
  0%, 100% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }
}

.animate-gradient-x {
  background-size: 200% 200%;
  animation: 4s infinite gradient-x;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: .8s cubic-bezier(.16, 1, .3, 1) forwards fadeInUp;
}

.animate-fade-in {
  opacity: 0;
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards fadeIn;
}

.animate-fade-in-left {
  opacity: 0;
  animation: .8s cubic-bezier(.16, 1, .3, 1) .3s forwards fadeInLeft;
}

.animate-fade-in-up-delayed {
  opacity: 0;
  animation: .8s cubic-bezier(.16, 1, .3, 1) 1s forwards fadeInUp;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-down {
  animation: .6s cubic-bezier(.16, 1, .3, 1) forwards slideDown;
}

@keyframes textReveal {
  from {
    opacity: 0;
    transform-origin: bottom;
    transform: translateY(20px)rotateX(-90deg);
  }

  to {
    opacity: 1;
    transform: translateY(0)rotateX(0);
  }
}

.animate-text-reveal {
  opacity: 0;
  animation: .8s cubic-bezier(.34, 1.56, .64, 1) .2s forwards textReveal;
}

.animate-text-reveal-delayed {
  opacity: 0;
  animation: .8s cubic-bezier(.34, 1.56, .64, 1) .4s forwards textReveal;
}

@keyframes buttonAppear {
  from {
    opacity: 0;
    transform: scale(.8)translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.animate-button-appear {
  opacity: 0;
  animation: .5s cubic-bezier(.34, 1.56, .64, 1) .8s forwards buttonAppear;
}

.animate-button-appear-delayed {
  opacity: 0;
  animation: .5s cubic-bezier(.34, 1.56, .64, 1) .9s forwards buttonAppear;
}

.animate-button-appear-more-delayed {
  opacity: 0;
  animation: .5s cubic-bezier(.34, 1.56, .64, 1) 1s forwards buttonAppear;
}

@keyframes logoSpin {
  from {
    opacity: 0;
    transform: rotate(0)scale(0);
  }

  50% {
    transform: rotate(180deg)scale(1.1);
  }

  to {
    opacity: 1;
    transform: rotate(360deg)scale(1);
  }
}

.animate-logo-spin {
  opacity: 0;
  animation: 1s cubic-bezier(.34, 1.56, .64, 1) .5s forwards logoSpin;
}

@keyframes glow {
  0%, 100% {
    opacity: .4;
    box-shadow: 0 0 5px;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 20px, 0 0 40px;
  }
}

.animate-glow {
  animation: 2s ease-in-out infinite glow;
}

.animate-glow-delayed {
  animation: 2s ease-in-out .5s infinite glow;
}

.animate-glow-more-delayed {
  animation: 2s ease-in-out 1s infinite glow;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: .8s cubic-bezier(.4, 0, .6, 1) infinite spin;
}

@keyframes shimmer {
  to {
    transform: translateX(100%);
  }
}

.hover-lift {
  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .2);
}

button, a, input, textarea, select {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.page-transition-enter {
  opacity: 0;
  transform: translateY(20px);
}

.page-transition-enter-active {
  opacity: 1;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  transform: translateY(0);
}

.page-transition-exit {
  opacity: 1;
  transform: translateY(0);
}

.page-transition-exit-active {
  opacity: 0;
  transition: all .3s cubic-bezier(.4, 0, 1, 1);
  transform: translateY(-20px);
}

.interactive-scale {
  transition: transform .2s cubic-bezier(.34, 1.56, .64, 1);
}

.interactive-scale:active {
  transform: scale(.95);
}

:focus-visible {
  outline-offset: 2px;
  outline: 2px solid rgba(147, 51, 234, .5);
  transition: outline-offset .2s cubic-bezier(.4, 0, .2, 1);
}

:focus-visible:hover {
  outline-offset: 4px;
}

/*# sourceMappingURL=src_app_animations_aa59c054.css.map*/