/* Custom Animations & Utilities */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@keyframes float-delayed {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

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

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

/* Blob Backgrounds */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.6;
}

.blob-1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: #d1fae5; /* emerald-100 */
  animation: float 10s ease-in-out infinite;
}

.blob-2 {
  bottom: 10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: #fef3c7; /* amber-100 */
  animation: float 12s ease-in-out infinite reverse;
}

/* Smooth Scroll Behavior */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #FDFBF7;
}
::-webkit-scrollbar-thumb {
  background: #059669;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #064e3b;
}

/* Mobile Menu Transitions */
#mobile-menu {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu.open {
  transform: translate-x(0);
}

#mobile-menu.closed {
  transform: translate-x(100%);
}
