/* Custom Animations and 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 6s ease-in-out infinite;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f9f8f3;
}

::-webkit-scrollbar-thumb {
  background: #065f46;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #047857;
}

/* Typography Tweaks */
h1, h2, h3, h4 {
  letter-spacing: -0.02em;
}

/* Form Focus Styles */
input:focus, textarea:focus {
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}
