/* Custom styles on top of Tailwind */

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-bounce-slow {
  animation: bounce 3s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(-5%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
  50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

.glass {
  @apply bg-white/80 backdrop-blur-md border border-white/20;
}

.glass50 {
  @apply bg-white/50 backdrop-blur-md border border-white/20;
}
.section-padding {
  @apply py-20 px-6 md:px-12 lg:px-24;
}

.fade-in-left {
  animation: fadeInLeft 0.6s ease-out;
}
.fade-in-right {
  animation: fadeInRight 0.6s ease-out;
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Ensure fonts */
body {
  font-family: 'Inter', sans-serif;
}
.font-display {
  font-family: 'Outfit', sans-serif;
}