/* Scroll Reveal Animations (replaces Framer Motion whileInView) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Menu Animations (replaces Framer Motion AnimatePresence) */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to { transform: translateX(100%); }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

.animate-fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.3s ease-out forwards;
}

.animate-slide-out-right {
  animation: slideOutRight 0.3s ease-out forwards;
}

/* Button hover effects */
.btn,
button,
a[class*="btn"],
a[class*="inline-block"] {
  transition: all 0.2s ease;
}

/* Smooth hover transitions */
.hover\:bg-black:hover,
.hover\:bg-gray-100:hover,
.hover\:text-white:hover,
.hover\:text-primary:hover,
.hover\:underline:hover,
.hover\:border-b-2:hover {
  transition: all 0.2s ease;
}
