html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
}

/* Navbar scrolled state */
.navbar-scrolled {
  background-color: rgba(24, 24, 27, 0.9); /* bg-zinc-900/90 */
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Simple reveal animation */
.reveal-on-scroll {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

