/* Animations */
@keyframes swoop-in-down {
  from {
    height: -50vh;
  }
  to {
    height: 0vh;
  }
}
@keyframes swoop-in-up {
  from {
    height: 50vh;
  }
  to {
    height: 0;
  }
}
@keyframes animate-paralax-layer {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: -64px 0px;
  }
}
@keyframes ease-player-animation {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-4px);
  }
}
@keyframes animate-player {
  from {
    background-position: 0px 0px;
  }
  to {
    background-position: 896px 0px;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes card-float {
  from {
    transform: translateY(10px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes bounce-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
/* Resources */
@font-face {
  font-family: "Avenue Pixel";
  src: url("./assets/AvenuePixel-Regular.ttf");
}
/* Boilerplate */
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: rgb(140, 63, 93);
}
body * {
  box-sizing: border-box;
}

#header-container {
  background-color: rgb(25, 230, 245);
  height: 100vh;
  width: 100%;
  margin-bottom: 50px;
}
@media (min-width: 640px) {
  #header-container {
    padding-top: 100px;
  }
}
@media (max-width: 640px) {
  #header-container {
    padding-top: 60px;
  }
}
#header-container #splash-logo {
  display: block;
  margin: auto;
  image-rendering: pixelated;
  aspect-ratio: 74/23;
  height: auto;
  animation: fade-in 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (min-width: 640px) {
  #header-container #splash-logo {
    width: 500px;
    margin-bottom: 100px;
  }
}
@media (max-width: 640px) {
  #header-container #splash-logo {
    width: 350px;
    margin-bottom: 60px;
  }
}
#header-container #cta-platform-section {
  display: flex;
  position: relative;
  z-index: 50;
  justify-content: center;
}
@media (min-width: 900px) {
  #header-container #cta-platform-section {
    column-gap: 100px;
  }
}
@media (max-width: 1000px) {
  #header-container #cta-platform-section {
    flex-wrap: wrap;
    row-gap: 60px;
  }
}
@media (max-width: 640px) and (min-aspect-ratio: 375/667) {
  #header-container #cta-platform-section {
    row-gap: 10px;
  }
}
#header-container #cta-platform-section .cta-button {
  display: block;
  width: 130px;
  height: 40px;
  zoom: 2;
  animation: fade-in 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
  opacity: 0;
}
#header-container #cta-platform-section .cta-button.one {
  animation-delay: 0.2s;
}
#header-container #cta-platform-section .cta-button.two {
  animation-delay: 0.3s;
}
#header-container #paralax-layers * {
  image-rendering: pixelated;
}
#header-container #tiles {
  display: block;
  position: absolute;
  width: 100%;
  height: 16px;
  z-index: 5;
  animation: animate-paralax-layer 1.5s linear infinite;
  background: url("/assets/tile-repeat.png");
  top: calc(25vh - 16px - 0px);
  zoom: 4;
}
#header-container #hillside-overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 64px;
  z-index: 0;
  animation: animate-paralax-layer 2.5s linear infinite;
  background: url("/assets/hills.png");
  top: calc(50vh - 64px - 16px);
  zoom: 2;
}
#header-container #trees-front {
  display: block;
  position: absolute;
  width: 100%;
  height: 35px;
  z-index: 5;
  animation: animate-paralax-layer 2.5s linear infinite;
  background: url("/assets/repeating-trees.png");
  top: calc(50vh - 35px - 77px);
  zoom: 2;
}
#header-container #hills-back {
  display: block;
  position: absolute;
  width: 100%;
  height: 48px;
  z-index: 0;
  animation: animate-paralax-layer 6s linear infinite;
  background: url("/assets/repeating-mountains.png");
  top: calc(50vh - 48px - 85px);
  zoom: 2;
}
@media (max-width: 640px) and (min-aspect-ratio: 1/1.2) {
  #header-container #hills-back {
    display: none;
  }
}
#header-container #milo-running {
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  z-index: 250;
  animation: animate-player 1.5s steps(7) infinite, ease-player-animation 0.27s cubic-bezier(0.19, 0.3, 0.22, 0.3) infinite alternate;
  background: url("/assets/base-male.png");
  top: -48px;
  zoom: 1;
}

#trailer-section {
  width: 100%;
  min-height: 80vh;
  background-color: rgb(140, 63, 93);
  display: flex;
}
#trailer-section img {
  image-rendering: pixelated;
  zoom: 1;
  display: block;
  position: absolute;
}
@media (min-width: 640px) {
  #trailer-section img {
    transform: translateY(128px) translateX(-20px);
  }
}
@media (max-width: 640px) {
  #trailer-section img {
    transform: translateY(64px) translateX(-20px);
  }
}
@media (min-width: 640px) {
  #trailer-section iframe {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    height: 720px;
  }
}
@media (max-width: 640px) {
  #trailer-section iframe {
    display: block;
    width: 100%;
  }
}
#trailer-section #trailer-info {
  zoom: 1;
  font-family: "Montserrat";
  display: flex;
  flex-direction: column;
  place-content: center;
  margin: auto;
  text-align: center;
  padding-bottom: 30px;
}
@media (min-width: 640px) {
  #trailer-section #trailer-info {
    max-width: 600px;
    min-height: 80vh;
  }
}
@media (max-width: 640px) {
  #trailer-section #trailer-info {
    max-width: 90vw;
    min-height: 70vh;
    text-align: left;
  }
}
#trailer-section #trailer-info h1 {
  color: whitesmoke;
  margin: unset;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 40px;
}
#trailer-section #trailer-info p {
  line-height: 23px;
  font-family: "Montserrat";
  font-size: 18px;
  color: rgb(248, 248, 241);
  color: pink;
  margin-bottom: 50px;
}
#trailer-section #contact-donate-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
}
#trailer-section #contact-donate-wrapper button {
  background-image: url("/assets/button-collection.png");
  image-rendering: pixelated;
  background-size: cover;
  background-repeat: no-repeat no-repeat;
  aspect-ratio: 2/1;
  border: none;
  background-color: transparent;
  text-transform: uppercase;
  width: 120px;
  border: none;
  padding: 12px;
  border-radius: 10px;
  height: min-content;
  color: black !important;
  font-family: "Montserrat";
  font-size: 18px;
  color: rgb(248, 248, 241);
  cursor: pointer;
}

#game-info-wrapper {
  min-height: 100vh;
  width: 100%;
  display: block;
  border-top: 64px solid transparent;
  /* Defines the slicing regions */
  border-image-source: url("/assets/hud-two.png");
  /* Your 9-patch image */
  border-image-slice: 16;
  /* Defines the 9 slicing areas */
  image-rendering: pixelated;
  /* Ensures background starts inside */
  border-image-repeat: round;
  background-color: #2d2d4b;
}
#game-info-wrapper #game-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: auto;
  place-content: center;
  padding: 20px;
  gap: 50px;
}
#game-info-wrapper #game-info-grid .game-info-header * {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
  color: rgb(25, 230, 245);
}
#game-info-wrapper #game-info-grid p {
  font-family: "Montserrat";
  font-size: 18px;
  color: rgb(248, 248, 241);
}

#sub-trailer {
  border-top: 64px solid transparent;
  /* Defines the slicing regions */
  border-image-source: url("/assets/hud-three.png");
  /* Your 9-patch image */
  border-image-slice: 16;
  /* Defines the 9 slicing areas */
  image-rendering: pixelated;
  /* Ensures background starts inside */
  border-image-repeat: round;
  background-color: #272736;
  min-height: 100vh;
  align-content: center;
}
@media (min-width: 640px) {
  #sub-trailer {
    display: flex;
    flex-wrap: wrap;
    padding: 120px;
    width: 100%;
    gap: 50px;
  }
}
@media (min-width: 640px) {
  #sub-trailer iframe {
    flex: 1 1 360px;
  }
}
@media (max-width: 640px) {
  #sub-trailer iframe {
    max-width: 90vw;
    max-height: 45vw;
    margin: auto;
    display: block;
    margin-top: 50px;
  }
}
#sub-trailer #sub-trailer-text {
  font-family: "Montserrat";
  font-size: 18px;
  color: rgb(248, 248, 241);
}
@media (min-width: 640px) {
  #sub-trailer #sub-trailer-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1 1 200px;
    padding: 50px;
  }
}
@media (max-width: 640px) {
  #sub-trailer #sub-trailer-text {
    text-align: left;
    padding: 25px;
  }
}
#sub-trailer #sub-trailer-text h1 {
  font-weight: 500;
  color: white;
}
#sub-trailer #sub-trailer-text p {
  color: #c2c9d1;
}

.swiper {
  width: 640px;
  height: 361px;
  max-width: 100vw;
  display: block;
}

.swiper-slide.one {
  background: url("/assets/ss_1.png");
  background-size: cover;
}
.swiper-slide.two {
  background: url("/assets/ss_2.png");
  background-size: cover;
}
.swiper-slide.three {
  background: url("/assets/ss_3.png");
  background-size: cover;
}

#ludi-logo {
  width: 250px;
  padding-top: 50px;
  padding-bottom: 50px;
  display: block;
  margin: auto;
}

#gallery {
  background-color: #000000;
  min-height: 100vh;
  align-content: center;
}
@media (min-width: 640px) {
  #gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 120px;
    width: 100%;
    gap: 50px;
  }
}
@media (min-width: 640px) {
  #gallery .swiper {
    flex: 1 1 360px;
  }
}
@media (max-width: 640px) {
  #gallery .swiper {
    max-width: 90vw;
    max-height: 45vw;
    margin: auto;
    display: block;
    margin-top: 50px;
  }
}
#gallery #gallery-text {
  font-family: "Montserrat";
  font-size: 18px;
  color: rgb(248, 248, 241);
}
@media (min-width: 640px) {
  #gallery #gallery-text {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    flex: 1 1 200px;
    padding: 50px;
  }
}
@media (max-width: 640px) {
  #gallery #gallery-text {
    text-align: left;
    padding: 25px;
  }
}
#gallery #gallery-text h1 {
  font-weight: 500;
  color: white;
}
#gallery #gallery-text p {
  color: #c2c9d1;
}

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