/* ==========================================================================
   Base & Resets - SUCURLE
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: initial;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Custom Selection */
::selection {
  background-color: var(--clr-blue);
  color: var(--clr-bg);
}

/* Scrollbar - Clean */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--clr-bg-alt);
}
::-webkit-scrollbar-thumb {
  background: var(--clr-silver);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--clr-text-muted);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
  color: var(--clr-text);
}

h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }

p {
  margin-bottom: var(--space-md);
  font-size: var(--text-base);
  color: var(--clr-text-muted);
  max-width: 60ch;
}

a {
  color: inherit;
  text-decoration: none;
}

img, video {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
