/* Custom styles for Abu Jr Vandi's portfolio */

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

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

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Custom hover effects for project cards */
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom styling for skill bars */
.skill-bar {
  transition: width 1s ease-in-out;
}

/* Custom styling for form inputs */
input:focus, textarea:focus {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Custom styling for the hero section */
.hero-gradient {
  background-image: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

/* Pulse animation for CTA buttons */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
  100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

.pulse-button:hover {
  animation: pulse 1.5s infinite;
}

/* Custom styling for section transitions */
section {
  transition: background-color 0.5s ease;
}

/* Additional responsive adjustments */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
