@import url('https://fonts.googleapis.com/css?family=Inter:400,700&display=swap');

body {
  font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}
@keyframes slide-up {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.animate-fade-in {
  animation: fade-in 1s ease both;
}
.animate-slide-up {
  animation: slide-up 1s 0.2s ease both;
}

/* Scroll-based animation (will be toggled by JS) */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s, transform 0.8s;
}
.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hide scrollbars for background canvas */
#bg-canvas {
  display: block;
  pointer-events: none;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  #navbar .md\\:flex { display: none !important; }
  #navbar .md\\:hidden { display: block !important; }
}
