/* Import Inter Font (self-hosted) */
@import url('assets/fonts/inter-fonts.css');

/* Font Family - Inter */
* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  scroll-behavior: inherit;
}

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

/* Smooth scroll for anchor links */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

