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

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

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

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

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

::-webkit-scrollbar-thumb {
  background: #2A2D35;
  border-radius: 5px;
}

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

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

/* Mobile Menu Transition */
#mobile-menu {
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

/* Loader for button states */
.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
