/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Custom Animation classes */
.animate-fade-in {
  animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Base resets handled by Tailwind, adding specific overrides if needed */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom utility for the background pattern opacity */
.bg-pattern {
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
}

/* Text Shadow for Hero Section */
.text-shadow-black {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}
