@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff6b6b;
  --secondary-color: #4ecdc4;
  --dark-color: #000;
  --light-color: #fff;
  --spacing: 2rem;
  --gradient-angle: 135deg;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--light-color);
  background-color: var(--dark-color);
}

h1 {
  font-size: 4rem;
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  opacity: 0.9;
  text-align: center;
  width: 90%;
}

h2 {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  font-size: 2.5rem;
  margin-bottom: var(--spacing);
  text-align: center;
}

h3 {
  font-size: 1.3rem;
  margin-top: var(--spacing);
}
h3 span {
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.8;
}

h4 {
  font-size: 1.1rem;
  margin-top: var(--spacing);
  font-weight: 400;
  opacity: 0.8;
}

p {
  margin-bottom: 1rem;
}
p.big {
  font-size: 1.1rem;
  font-weight: 600;
}

a {
  color: var(--light-color);
}

ul {
  margin-bottom: 1rem;
  margin-left: 1rem;
  list-style-type: disc;
}
ul.no-bullet {
  list-style-type: none;
  margin-left: 1.5rem;
}

blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 3rem 0;
  padding: 1rem;
  border-left: 4px solid var(--light-color);
  background-color: rgba(255, 255, 255, 0.1);
}

header {
  position: fixed;
  margin: 0px;
  top: 0;
  color: var(--light-color);
  text-align: center;
  width: 100vw;
  background: transparent;
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  box-sizing: border-box;
  z-index: 10;
  user-select: none;
}

/* Add this new class that will be toggled with JavaScript */
header.scrolled {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.431372549);
}

.blue {
  color: #004ffb;
  font-weight: 600;
}

.red {
  color: #ff0000;
  font-weight: 600;
}

.logo {
  height: 30px;
}

nav a {
  margin: 0 15px;
  color: var(--light-color);
  text-decoration: none;
  font-size: 1em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-bottom: 5px;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.7607843137);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
nav a:hover::after {
  opacity: 1;
  transform: translateY(0);
}

section.intro {
  position: relative;
  height: 100vh;
  background: url(../img/bg-speeels.webp) no-repeat center bottom;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding-top: 0; /* Geen padding voor de intro sectie */
  margin-top: 0;
  flex-direction: column;
}
section.intro.manhunt-x {
  background: url(../img/manhunt-x.webp) no-repeat center bottom;
  background-size: cover;
  height: calc(80vh - 100px);
  min-height: 550px;
}
section.intro.manhunt-x h1 img {
  width: min(86%, 600px);
}
section.intro.manhunt-x-operation-deathmatch {
  height: calc(80vh - 100px);
  min-height: 550px;
}
section.intro.manhunt-x-operation-deathmatch.eindhoven {
  background: url(../img/manhunt-x-operation-deathmatch-eindhoven-header.webp) no-repeat center bottom;
  background-size: cover;
}
section.intro.manhunt-x-operation-deathmatch.amsterdam {
  background: url(../img/manhunt-x-operation-deathmatch-amsterdam-header.webp) no-repeat center bottom;
  background-size: cover;
}
section.intro.manhunt-x-operation-deathmatch h1 img {
  width: min(86%, 600px);
}
section.intro.manhunt-x-operation-spycraft {
  height: calc(80vh - 100px);
  min-height: 550px;
}
section.intro.manhunt-x-operation-spycraft.amsterdam {
  background: url(../img/manhunt-x-operation-spycraft-amsterdam-header2.webp) no-repeat center bottom;
  background-size: cover;
}
section.intro.manhunt-x-operation-spycraft h1 img {
  width: min(86%, 600px);
}
section.intro.animal-mating {
  background: url(../img/wild-animal-mating.webp) no-repeat center bottom;
  background-size: cover;
  height: calc(80vh - 100px);
  min-height: 550px;
}
section.intro.journey {
  background: url(../img/bg-journey.webp) no-repeat center bottom;
  background-size: cover;
  height: calc(80vh - 100px);
  min-height: 550px;
}
section.intro.journey h1 img {
  width: min(86%, 400px);
}
section.intro .btn-register {
  margin-top: 50px;
  width: fit-content;
}
section.intro .warning {
  width: 100px;
  height: 100px;
  position: absolute;
  margin-top: 400px;
  right: 20vw;
  z-index: 10;
  rotate: -10deg;
}
section.intro h3 {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  margin: 0;
  text-align: center;
}

.container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}
.container.small {
  max-width: 650px;
}
.container img.full-width {
  width: 100%;
}

section {
  margin-top: 100px;
  padding-bottom: 100px;
}
section ul {
  margin-left: 3rem;
}

section#events .event-list,
section#past-events .event-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
section#events .event-list .event,
section#past-events .event-list .event {
  display: flex;
  flex-direction: row;
  gap: 25px;
  border: 1px solid var(--light-color);
  align-items: center;
  transition: background-color 0.3s ease;
  text-decoration: none;
}
section#events .event-list .event.past,
section#past-events .event-list .event.past {
  opacity: 0.6;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
section#events .event-list .event.past:hover,
section#past-events .event-list .event.past:hover {
  opacity: 0.8;
}
section#events .event-list .event.past .date,
section#past-events .event-list .event.past .date {
  background-color: rgba(255, 255, 255, 0.5);
}
section#events .event-list .event .date,
section#past-events .event-list .event .date {
  display: flex;
  flex-direction: column;
  width: 85px;
  height: 85px;
  background-color: var(--light-color);
  color: var(--dark-color);
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
section#events .event-list .event .date .day,
section#past-events .event-list .event .date .day {
  font-size: 1.5rem;
  font-weight: 600;
}
section#events .event-list .event .date .month,
section#past-events .event-list .event .date .month {
  font-size: 1.2rem;
  font-weight: 600;
}
section#events .event-list .event .title-location,
section#past-events .event-list .event .title-location {
  flex-grow: 1;
}
section#events .event-list .event .title-location h3,
section#events .event-list .event .title-location h4,
section#past-events .event-list .event .title-location h3,
section#past-events .event-list .event .title-location h4 {
  color: var(--light-color);
  margin: 0;
  transition: color 0.3s ease;
}
section#events .event-list .event svg,
section#past-events .event-list .event svg {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
  justify-self: flex-end;
  margin: 0 30px;
  fill: var(--light-color);
}
section#events .event-list .event:hover,
section#past-events .event-list .event:hover {
  background-color: var(--light-color);
}
section#events .event-list .event:hover .date,
section#past-events .event-list .event:hover .date {
  background-color: var(--dark-color);
  color: var(--light-color);
}
section#events .event-list .event:hover h3,
section#events .event-list .event:hover h4,
section#past-events .event-list .event:hover h3,
section#past-events .event-list .event:hover h4 {
  color: var(--dark-color);
}
section#events .event-list .event:hover svg,
section#past-events .event-list .event:hover svg {
  fill: var(--dark-color);
}

section#past-events {
  margin-top: 0;
  padding-top: 0;
}

section.game-details h3 {
  margin-top: 50px;
}
section.game-details .highlight-orange {
  color: #f96701;
}
section.game-details .split-content {
  position: relative;
  display: flex;
  gap: 2rem;
}
section.game-details .split-content__image {
  flex-basis: 100%;
}
section.game-details .split-content__image.w60 {
  flex-basis: 60%;
}
section.game-details .split-content__image.w30 {
  flex-shrink: 0;
  flex-basis: 30%;
}
section.game-details .split-content__image.w35 {
  flex-shrink: 0;
  flex-basis: 35%;
}
section.game-details .split-content__image.w40 {
  flex-shrink: 0;
  flex-basis: 40%;
}
section.game-details .split-content__image.w80 {
  flex-basis: 80%;
}
section.game-details .split-content__image.w120 {
  flex-basis: 120%;
}
section.game-details .split-content__image img {
  width: 100%;
  height: auto;
}

section.testimonials {
  padding: 0 0 1rem 0;
  margin-top: 0;
}
section.testimonials .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
section.testimonials .testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
section.testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 107, 0.3);
}
section.testimonials .testimonial .testimonial-content p {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}
section.testimonials .testimonial .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}
section.testimonials .testimonial .testimonial-author strong {
  display: block;
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
section.testimonials .testimonial .testimonial-author span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.date-location {
  margin: 0;
  padding: 0;
}
.date-location .container {
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: space-between;
}
.date-location .container .date,
.date-location .container .location {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 400;
}
.date-location .container .date svg,
.date-location .container .location svg {
  margin-right: 10px;
  margin-bottom: 10px;
}
.date-location .container .date span {
  font-size: 0.8rem;
  font-weight: 400;
  margin: 5px 0 0 5px;
}
.date-location .container svg {
  width: 35px;
  height: 35px;
}

details {
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
}
details summary {
  cursor: pointer;
}
details p {
  cursor: default;
  font-weight: 400;
  padding-left: 1rem;
}

button.btn-register {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 2rem;
  text-transform: uppercase;
  appearance: none;
  margin-bottom: 70px;
}
button.btn-register svg {
  width: 18px;
  height: 18px;
  margin-bottom: 2px;
}
button.btn-register:hover {
  background-color: var(--light-color);
  gap: 30px;
}
button.btn-register[disabled] {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.5);
  cursor: not-allowed;
  gap: 10px;
}

footer {
  display: flex;
  flex-direction: column;
  gap: 50px;
  background-color: #192e37;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  text-align: center;
}
footer .copyright {
  font-size: 0.8rem;
  opacity: 0.8;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b].inline-container {
  max-width: 700px;
  width: 100%;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b] .emailoctopus-form {
  --button-colour: #417c86;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b] .mastfoot .inner {
  opacity: 0.4;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b] .mastfoot .inner p {
  font-size: 14px;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b] .mastfoot .inner a {
  padding-left: 19px;
}
footer [data-form=f958313a-0a46-11f0-9034-7199f4127f6b] .mastfoot .inner a::before {
  width: 11px;
  height: 15px;
  top: 2px;
}

.social-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  text-decoration: none;
}
.social-icon.small img {
  margin: 0 7px -4px;
  width: 20px;
  height: 20px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 25px;
  height: 20px;
  position: relative;
  z-index: 20;
  appearance: none;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.hamburger span:first-child {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger span:last-child {
  bottom: 0;
}
.hamburger.active {
  appearance: none;
}
.hamburger.active span:first-child {
  transform: rotate(45deg);
  top: 50%;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:last-child {
  transform: rotate(-45deg);
  bottom: 40%;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 0.9rem;
  }
  header {
    flex-direction: row;
    padding: 20px;
    justify-content: space-between;
  }
  .hamburger {
    display: block;
  }
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.3s ease;
    z-index: 10;
  }
  nav.active {
    right: 0;
  }
  nav a {
    margin: 15px 0;
    font-size: 1.5rem;
  }
  .container {
    padding: 0 15px;
  }
  .container .split-content {
    flex-direction: column;
  }
  section#events .event-list,
  section#past-events .event-list {
    gap: 20px;
  }
  section#events .event-list .event,
  section#past-events .event-list .event {
    gap: 15px;
  }
  section#events .event-list .event .date,
  section#past-events .event-list .event .date {
    width: 65px;
    height: 65px;
  }
  section#events .event-list .event .date .day,
  section#past-events .event-list .event .date .day {
    font-size: 1.2rem;
  }
  section#events .event-list .event .date .month,
  section#past-events .event-list .event .date .month {
    font-size: 0.8rem;
  }
  section#events .event-list .event svg,
  section#past-events .event-list .event svg {
    margin: 10px 15px;
  }
  .date-location .container {
    flex-direction: column;
    gap: 45px;
  }
  .date-location .container .date,
  .date-location .container .location {
    font-size: 1.1rem;
    flex-direction: column;
  }
  button.btn-register {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    appearance: none;
  }
  button.btn-register svg {
    width: 14px;
    height: 14px;
    margin-bottom: 2px;
  }
  section.intro.manhunt-x-operation-spycraft.amsterdam {
    background-position: 70% bottom;
  }
  section.intro .warning {
    width: 75px;
    left: 20vw;
  }
  section:not(.intro):not(#events):not(#past-events) h3 {
    font-size: 1.15rem;
  }
  section:not(.intro):not(#events):not(#past-events) ul {
    margin-left: 2rem;
  }
  section:not(.intro):not(#events):not(#past-events) ul.no-bullet {
    margin-left: 1rem;
  }
  section.testimonials .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }
  section.testimonials .testimonial {
    padding: 1.5rem;
  }
  section.testimonials .testimonial .testimonial-content p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  h1 {
    font-size: 2.1rem;
    max-width: 85%;
  }
  h3 {
    font-size: 0.8rem;
  }
  nav a {
    margin: 10px 0px;
    font-size: 1.5em;
  }
  section#events .event-list .event,
  section#past-events .event-list .event {
    gap: 10px;
  }
  section#events .event-list .event svg,
  section#past-events .event-list .event svg {
    width: 20px;
    height: 20px;
    margin: 10px 10px 10px 5px;
  }
  header {
    padding: 20px;
  }
  .logo {
    height: 25px;
  }
  button.btn-register {
    width: 100%;
    justify-content: center;
  }
}
body .luma-checkout--overlay .luma-checkout--modal,
body .luma-checkout--overlay .zmurl-checkout--modal,
body .zmurl-checkout--overlay .luma-checkout--modal,
body .zmurl-checkout--overlay .zmurl-checkout--modal {
  max-width: 530px;
  max-height: 680px;
}

/*# sourceMappingURL=main.css.map */
