/* Custom styles that can't be handled by Tailwind */
html {
  scroll-behavior: smooth;
}

/* Scrolling animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-image {
    height: 300px;
  }
}
