/* Custom overrides and adjustments for the theme */

/* Ensures the contact form success message pulses naturally */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Ensure smooth scrolling when clicking anchor links */
html {
    scroll-behavior: smooth;
}

/* Make sure the navbar doesn't block anchor targets */
:target {
    scroll-margin-top: 5rem; /* 80px */
}
