
/* Smooth transitions for all elements */
* {
  transition: all 0.3s ease;
}

/* Custom hover effects */
.nav-link:hover {
  transform: translateY(-1px);
}

/* Mobile menu animation */
#mobile-menu {
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-glow {
  text-shadow: 
    0 0 2px rgba(255, 255, 255, 0.4);
}

.pattern-dots {
  background-image: radial-gradient(currentColor 1px, transparent 1px);
  background-size: 40px 40px;
}