/* Solirfy Custom Styles */

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* Subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Apply animations to key sections */
#tools .group {
  animation: fadeInUp 0.6s ease-out both;
}

#tools .group:nth-child(1) { animation-delay: 0.1s; }
#tools .group:nth-child(2) { animation-delay: 0.2s; }
#tools .group:nth-child(3) { animation-delay: 0.3s; }

/* Form input focus glow */
input:focus {
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Button hover effect */
button[type="submit"]:not(:disabled):hover {
  transform: translateY(-1px);
}

button[type="submit"]:not(:disabled):active {
  transform: translateY(0);
}

/* Card hover lift */
#tools .group:hover {
  transform: translateY(-4px);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .hero-gradient {
    background-size: 200% 200%;
  }
}

/* Selection color */
::selection {
  background-color: rgba(245, 158, 11, 0.2);
  color: inherit;
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
