/* =========================================================
   TRIGGERED
   ========================================================= */
.bebas-neue-regular {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
}

/* ---------------------------------------------------------
   RESET
   --------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
}


/* ---------------------------------------------------------
   BODY
   --------------------------------------------------------- */

body {
  background-color: #111111;
  color: #c2b19a;

  font-family: Montserrat, sans-serif;

  overflow-x: hidden;
}


/* ---------------------------------------------------------
   MAIN PAGE
   --------------------------------------------------------- */

.page {
  width: 100%;
  min-height: 100vh;

  margin: 0;
  padding: 40px 20px 60px;

  display: flex;
  flex-direction: column;
  align-items: center;
}


/* ---------------------------------------------------------
   HERO / BANER
   --------------------------------------------------------- */

.hero {
  width: 100%;
  max-width: 1200px;

  margin: 0 auto;
  padding: 0;

  display: block;

  text-align: center;
}


.hero-image {
  display: block;

  width: 100%;
  max-width: 1200px;

  height: auto;

  margin: 0 auto;
  padding: 0;

  border: 0;
}


/* ---------------------------------------------------------
   SOCIAL MEDIA
   --------------------------------------------------------- */

.socials {
  width: 100%;

  margin: 28px auto 0;
  padding: 0;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 12px;
}


.social-link {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 9px;

  color: #c2b19a;

  text-decoration: none;

  font-size: 17px;
  line-height: 1.3;

  font-weight: 500;
}


.social-link:hover {
  text-decoration: underline;
}


.social-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  font-size: 19px;
  font-weight: 700;

  line-height: 1;
}


/* ---------------------------------------------------------
   COMING SOON
   --------------------------------------------------------- */

.coming-soon {
  width: 100%;

  margin: 32px auto 0;
  padding: 0;

  text-align: center;
}


.coming-soon p {
  margin: 0;
  padding: 0;

  font-size: 18px;
  line-height: 1.5;
}


.coming-soon p + p {
  margin-top: 4px;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

  .page {
    padding: 20px 12px 40px;
  }


  .hero {
    width: 100%;
    max-width: 1200px;
  }


  .hero-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
  }


  .socials {
    margin-top: 22px;
    gap: 10px;
  }


  .social-link {
    font-size: 16px;
  }


  .coming-soon {
    margin-top: 26px;
  }


  .coming-soon p {
    font-size: 16px;
  }

}