/* Custom styles for Tema Bagus */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', ui-sans-serif, system-ui;
}
/* Intersection Observer animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Hover glow effect for buttons */
button, a {
  transition: all 0.3s ease;
}
/* Mobile menu smooth open/close */
#mobile-menu {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}
#mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}