/*
----------------------------------------------------------------
Module: base.css
Description: Includes CSS resets and fundamental base styles for the entire website.
             This covers box-sizing, margin/padding resets, smooth scrolling,
             and default body typography and background.
Section: 2. RESET & BASE STYLES
----------------------------------------------------------------
*/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
  scroll-padding-top: 7rem;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
}

body.menu-open {
  overflow: hidden;
}

a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible {
  outline: var(--focus-ring);
  outline-offset: 4px;
}
