/* =======================
   CSS Reset / Basis
======================= */

/* Box sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Margin & padding reset */
body, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
dl, dd, ol, ul, figure, hr, fieldset, legend {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol */
ul, ol {
  list-style: none;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* Images and media */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* Forms */
input, button, textarea, select {
  font: inherit;
}

/* Remove default border on buttons and inputs */
button, input {
  border: none;
  background: none;
  padding: 0;
}

/* Horizontal rule */
hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1rem 0;
}

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