/* Custom styles for NEXT Stage Management Landing Page */

.font-serif {
  font-family: 'Noto Serif JP', serif;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Mobile menu: .hidden toggled by script.js */
#mobileMenu {
  transition: all 0.25s ease-in-out;
}

#mobileMenu.hidden {
  display: none;
}

/* Nice selection */
::selection {
  background: rgba(19, 91, 236, 0.35);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}


/* Hero background image
   Put your image file named hero-bg.jpg in the same folder, or change the url here. */
.hero-bg {
  background-image: url('images/hero-bg.jpg');
}