@font-face {
  font-family: "Bangers";
  src: url("./Bangers-Regular.ttf") format("truetype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6,
.button {
  font-family: "Bangers", sans-serif;
  color: #ff5f1f;
  text-shadow:
    2px 0 #000000,
    -2px 0 #000000,
    0 2px #000000,
    0 -2px #000000,
    1px 1px #000000,
    -1px -1px #000000,
    1px -1px #000000,
    -1px 1px #000000;
  letter-spacing: 2px;
  text-align: center;
}
h1 {
  transform: rotate(-2deg);
}
h2 {
  padding-top: 20px;
  transform: rotate(-1deg);
}
ul {
  padding-left: 20px;
}
:root {
  --accent: #ff5f1f;
  --dark: #0a0f1a;
  --light: #f6f4ef;
  --muted: #6b7280;
  --max: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2rem;
}
body {
  background-color: #0d1a31;
  background-image: url("images/background-day.svg");
  background-size: cover;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  margin: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  @media (min-width: 600px) {
    background-attachment: fixed;
  }
}
.hero {
  position: relative;
  height: 30vh;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  @media (min-width: 600px) {
    height: 74vh;
  }
}
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  width: 30vh;
  margin: 0 calc(50vw - 15vh);
  @media (min-width: 600px) {
    width: 80vmin;
    margin: 0 auto;
  }
}

.content {
  background-color: #0d1a31;
  border-radius: 15px;
  padding: 30px;
  width: 100vw;
  color: white;
  text-align: left;
  position: absolute;
  top: 27vh;
  left: 50%;
  transform: translateX(-50%);
  @media (min-width: 600px) {
    width: 70vw;
    top: 86vh;
  }
}
.content-inner {
  position: relative;
  z-index: 1;
}
.button {
  background-color: #ff5f1f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  border-radius: 10px;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  box-shadow: 6px 6px 0 rgba(10, 15, 26, 0.55);
  transition:
    transform 0.1s,
    box-shadow 0.1s;
}
.button:hover {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 rgba(10, 15, 26, 0.55);
}

.button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 14px solid #ff5f1f;
  border-radius: 20px;
}
.button:hover {
  background-color: black;
  color: white;
}
.button:hover:after {
  border-color: black;
}
.button:hover:before {
  border-color: black;
}

/* Navigatie */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 10px 0 20px 0;
  margin: 0 -23px;
}
.site-nav .button {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* Tabellen (wedstrijdschema) */
.schema-table {
  margin: 10px auto;
  border-collapse: collapse;
  background-color: #f38b04;
  border-radius: 15px;
  width: 100%;
  max-width: 640px;
}
.schema-table td {
  padding: 4px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  text-align: left;
  vertical-align: top;
  color: #10131c;
}
.schema-table td.ronde {
  font-family: "Bangers", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding-top: 14px;
  border-bottom: 2px solid black;
}
.schema-table a {
  color: black;
  font-weight: bold;
  text-decoration: none;
}
.schema-table a:hover {
  color: var(--accent);
}
select.team-select {
  font-size: 1rem;
  padding: 8px 12px;
  border: 3px solid black;
  border-radius: 10px;
  background-color: white;
  cursor: pointer;
  max-width: 90%;
}

/* Spelregels */
.sport-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
.sport-links .button {
  font-size: 1rem;
  margin-bottom: 0;
}
.spelregels h3 {
  font-family: inherit;
  color: white;
  text-shadow: none;
  letter-spacing: normal;
  text-align: left;
  padding-top: 12px;
}
.spelregels section {
  scroll-margin-top: 20px;
}

/* Plattegrond */
.plattegrond text {
  font-family: "Bangers", sans-serif;
}
.plattegrond img {
  display: block;
  width: 100%;
}
.plattegrond .kaart-mobiel {
  display: none;
}
@media (max-width: 599px) {
  .plattegrond .kaart-desktop {
    display: none;
  }
  .plattegrond .kaart-mobiel {
    display: block;
  }
}
