
/* ================================= LAYOUT ================================= */

/* Variables */
:root {
  /* Colors */
  --neon-pink: #EE088C;
  --neon-blue: #00b2ff;
  --neon-green: #00ffce;
}

/* Root */
html,
body {
  background-color: black;
  margin: 0;
  padding: 0;
  padding-top: 30px;
  overflow-x: hidden;
}

/* Typography */
h1 {
  font-family: "Acumin-BlackItalic", "Impact", sans-serif;
  font-size: 60px;
  margin: 0;
  padding: 0;
  color: #051d37;
}
h2 {
  font-family: "Acumin-Bold", "Impact", sans-serif;
  font-size: 48px;
  margin: 0;
  margin-bottom: 10px;
  padding: 0;
  color: white;
  text-transform: uppercase;
}
h3 {
  font-family: "Acumin-Bold", "Impact", sans-serif;
  font-size: 36px;
  margin: 0;
  padding: 0;
  color: white;
  text-transform: uppercase;
}
p {
  font-family: "Acumin-Black", "Impact", sans-serif;
  font-size: 32px;
  color: white;
  text-shadow: 3px 3px 3px #614051;
  margin: 0;
}
.button, button {
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Pixel", sans-serif;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  padding: 0 10px;
  font-size: 20px;
}
.button--pink {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
}
.button--blue {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
}
.button--green {
  border-color: var(--neon-green);
  color: var(--neon-green);
}
.button--big {
  padding: 10px 40px;
  font-size: 30px;
  border-width: 4px;
}
.button--solid-pink {
  background-color: var(--neon-pink);
  color: white;
}
.button--solid-blue {
  background-color: var(--neon-blue);
  color: white;
}
.button--solid-green {
  background-color: var(--neon-green);
  color: white;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 35px;
  }
  p {
    font-size: 28px;
  }
}

/* Video */
@media screen and (max-width: 600px) {
  video {
    width: 300px!important;
    height: 168px!important;
  }
}

/* Banner */
.banner {
  text-align: center;
  padding: 5px 10px;
  transform: rotate(-2deg);
}
.banner h1 {
  position: relative;
  z-index: 1;
}
.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: -100px;
  height: 300px;
  width: 300px;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  z-index: 0;
}
.banner::after {
  content: "";
  position: absolute;
  right: 0;
  top: -100px;
  height: 300px;
  width: 300px;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  z-index: 0;
}
.banner--pink {
  background-color: var(--neon-pink);
}
.banner--pink::before {
  background-image: url(splatter-left-pink.png);
}
.banner--pink::after {
  background-image: url(splatter-right-pink.png);
}
.banner--blue {
  background-color: var(--neon-blue);
}
.banner--blue::before {
  background-image: url(splatter-left-blue.png);
}
.banner--blue::after {
  background-image: url(splatter-right-blue.png);
}
.banner--green {
  background-color: var(--neon-green);
}
.banner--green::before {
  background-image: url(splatter-left-green.png);
}
.banner--green::after {
  background-image: url(splatter-right-green.png);
}

/* ================================= HEADER ================================= */

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 60px);
  background-color: black;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  z-index: 10;
}
.header__logo img {
  max-width: 200px;
}
.header__book-button {
  margin-left: auto;
}
.header__hamburger {
  margin-left: 20px;
  cursor: pointer;
}
.header__hamburger svg {
  fill: white;
}
@media screen and (max-width: 600px) {
  .header {
    padding: 20px 10px;
    width: calc(100vw - 20px);
  }
  .header__logo img {
    max-width: 150px;
  }
}

/* Modal */
.header__modal {
  position: fixed;
  height: 100vh;
  width: calc(100vw - 40px);
  max-width: 500px;
  background: black;
  top: 0;
  right: 0;
  transform: translateX(550px);
  transition: transform 0.5s ease-out;
  padding: 20px;
}
@media screen and (max-width: 600px) {
  .header__modal {
    transform: translateX(100vw + 10px);
  }
}
.header__modal h2 {
  margin-top: 10px;
  margin-bottom: 25px;
}
.header__modal a {
  margin-bottom: 10px;
  text-decoration: none;
}
.header__modal--open {
  transform: translateX(0);
}
.header__modal--close-button {
  display: flex;
  justify-content: flex-end;
}
.header__modal--close-button svg {
  fill: white;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.header__modal__social-links {
  display: flex;
  justify-content: flex-end;
  margin-top: 25px;
}
.social-icon {
  height: 25px;
  width: 25px;
  margin-left: 10px;
}


/* ================================== PAGE ================================== */

/* Content */
.content {
  padding: 50px 10px 50px 10px;
  position: relative;
  z-index: 1;
}

/* Game Details */
.game-details {
  text-align: center;
}

/* Paint Blast */
.paint-blast {
  text-align: center;
}
.paint-blast__videos-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.paint-blast__video {
  margin: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.paint-blast__video video {
  margin-bottom: 20px;
}
.paint-blast__photos-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.paint-blast__photo {
  max-width: 400px;
  width: 100%;
  margin: 10px;
}
.paint-blast__photo img {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

/* Dance Party */
.dance-party {
  display: flex;
  justify-content: center;
}
.dance-party__video {
  margin: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.dance-party__video video {
  margin-bottom: 20px;
}


/* ================================= FOOTER ================================= */

/* Footer */
.footer {
  width: 100vw;
  text-align: center;
  margin-top: 50px;
}
.footer__text-wrapper {
  background-color: white;
  padding: 10px 30px;
}
.footer__text-wrapper p {
  color: black;
  text-shadow: none;
}
.footer__button-wrapper {
  background-image: url("laser-maze.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 10px;
}
