/* =========================
   FONT IMPORTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* =========================
   CSS RESET / NORMALIZE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #FAF9F6;
  color: var(--dark);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
   DESIGN TOKENS
========================= */
:root {
  --green: #00C896;
  --dark: #252432;
  --muted: #8987A1;
  --black: #2B2B2B;
  --accent: #FFB912;
}

/* =========================
   TYPOGRAPHY DEFAULTS
========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

p {
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   LINKS
========================= */
a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   FORM ELEMENTS
========================= */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Remove number input arrows (clean UI) */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type='number'] {
  -moz-appearance: textfield;
}

/* =========================
   MEDIA
========================= */
img,
picture,
video {
  max-width: 100%;
  display: block;
}
