/* ============================================================
   Sinar Beton Sentosa — CSS Reset (reset.css)
   Menggantikan inline <style> reset yang duplikat di tiap HTML.
   ============================================================ */

/* ── Box Model ──────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Links & Interactives ────────────────────────────────── */
a {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* ── Headings ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

/* ── Lists ───────────────────────────────────────────────── */
menu, ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

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

/* ── Body ────────────────────────────────────────────────── */
body {
  font-family: var(--font-family, 'Poppins', sans-serif);
  color: var(--color-text, #222222);
  line-height: 1.5;
}
