/* animations.css */

/* Page load fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  animation: fadeIn 0.5s ease-out;
}

/* Add smooth transitions to various elements */
a,
button,
.btn,
.media-card,
.trending-item,
.featured-item,
.server-button,
.nav-links a,
.logo,
.hamburger-menu {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
