/* ============================================
   EL CASTILLO DEL CONDE — Reset & Base
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--blood-dark) var(--void);
}

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--bone);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--blood-dark);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--blood-core);
}

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

button, input, textarea {
  font-family: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--parchment);
}

::selection {
  background: var(--blood-core);
  color: var(--parchment);
}
