/* =============================================================
   reset.css — Minimal CSS Reset
   Siti Fatima Painter Portfolio
   ============================================================= */

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

/* ── Remove Default Margin & Padding ───────────────────────── */
* {
  margin:  0;
  padding: 0;
}

/* ── Base HTML ──────────────────────────────────────────────── */
html {
  font-size:       16px;
  scroll-behavior: smooth;
}

/* ── Antialiased Text Rendering ─────────────────────────────── */
body {
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering:          optimizeLegibility;
}

/* ── Media Defaults ─────────────────────────────────────────── */
img,
video,
canvas,
svg {
  display:   block;
  max-width: 100%;
}

/* ── Form Element Inheritance ───────────────────────────────── */
input,
button,
textarea,
select {
  font: inherit;
}

/* ── Remove List Styles ─────────────────────────────────────── */
ul,
ol {
  list-style: none;
}

/* ── Anchor Defaults ────────────────────────────────────────── */
a {
  color:           inherit;
  text-decoration: none;
}

/* ── Hidden Helper ─────────────────────────────────────────── */
[hidden] {
  display: none !important;
}
