/* ── GLOBAL TOKENS & RESET ──────────────────────────────
   Applies site-wide. Import in every page.
───────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; font-family: 'Urbanist', sans-serif; overflow-x: hidden; }

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #00BFB3;
  color: var(--body-text);
  transition: background-color 4s ease, color 2s ease;
}

:root {
  --logo-body: #020203;
  --logo-dot:  #ffffff;
  --carousel-color: rgba(255,255,255,1);
  --body-text: #020203;
  --link-color: #020203;
  --border-color: rgba(0,0,0,0.12);
  --header-name-color: #020203;
}
