/* ============================================================
   RESET.CSS — Normalize browser defaults
   Removes inconsistent spacing, sizing, and styling
   so we start from a clean, predictable baseline.
   ============================================================ */

/* Box-sizing: include padding and border in element width/height */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Prevent font size inflation on mobile orientation change */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* Remove default body margin; set base font */
body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list bullets/numbers for semantic nav lists */
ul, ol {
  list-style: none;
}

/* Make images responsive by default */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts in form elements (browsers override by default) */
input,
button,
textarea,
select {
  font: inherit;
}

/* Avoid text overflow in headings */
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Remove default anchor styling — we style links ourselves */
a {
  color: inherit;
  text-decoration: none;
}

/* Remove default button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}
