/* ==========================================================================
   reset.css — lata 2000/2010 underground metal web design
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: auto; /* Wyłączone płynne przewijanie na rzecz tradycyjnego skoku */
}

body {
  min-height: 100vh;
  line-height: 1.4;
  -webkit-font-smoothing: none; /* Wyłączenie wygładzania dla surowego, retro klimatu czcionek */
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  border-radius: 0px !important; /* Ostrości lat 2000 – zero zaokrągleń na zdjęciach */
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

fieldset {
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

hr {
  height: 1px;
  border: 1px solid var(--color-line);
}