/* Druk Wide - custom font */
@font-face {
  font-family: 'Druk Wide';
  src: url('./fonts/DrukWideBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Font variables for easy usage */
:root {
  --font-montserrat: 'Montserrat', sans-serif;
  --font-druk-wide: 'Druk Wide', sans-serif;
  --font-kapakana: 'Kapakana', cursive;
  --red-main: #ff0000;
}

@layer {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-montserrat);
    background-color: #000;
    color: #fff;
  }

  h1,
  h2 {
    font-family: var(--font-druk-wide);
    font-weight: 700;
    text-transform: uppercase;
  }

  img {
    max-width: 100%;
    height: auto;
  }
}

h2 {
  font-size: 40px;
}

main {
  padding-bottom: 166px;
  background-image: url('./img/main_bg.png');
  background-position: bottom;
  background-repeat: no-repeat;
}

.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  overflow: hidden;
  position: relative;
}

.hero__image {
  position: relative;
  z-index: 1;
  top: 64px;
  margin-bottom: 100px;
}

.hero__gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 215px;
  background: linear-gradient(180deg, #000 35.7%, rgba(0, 0, 0, 0) 83.56%);
  z-index: 2;
}

.hero__gradient-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 360px;
  background: linear-gradient(0deg, #000 14.47%, rgba(0, 0, 0, 0) 83.56%);
  z-index: 2;
}

.hero__title {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #ff0000;
  z-index: 4;
}

.hero__title h1:first-child {
  font-family: var(--font-druk-wide);
  font-size: 90px;
}

.hero__title h1:last-child {
  font-family: var(--font-kapakana);
  font-size: 180px;
  font-weight: 700;
  text-transform: capitalize;
}

.line {
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
}

.line__track {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #222;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-druk-wide);
  white-space: nowrap;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.info {
  margin-bottom: 100px;
}

.info__content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.info__content-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: #e0e0e0;
}

.info__content-list-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  padding: 21px 20px;
  border-radius: 21px;
  border: 1px solid #c0c0c0;
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(5.8px);
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-bottom: 100px;
}

.about__content {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #e0e0e0;
}

.about__content-text {
  max-width: 620px;
  width: 100%;
  height: 100%;
  display: flex;
  font-size: 24px;
  flex-direction: column;
  gap: 20px;
  padding: 28px 52px;
  border-radius: 22px;
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(5.8px);
  text-align: center;
  text-wrap: balance;
}

.about__content-text span {
  color: #fff;
  font-weight: 700;
}

.format {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-bottom: 100px;
}

.format__content {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #c0c0c0;
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(19px);
  color: #e0e0e0;
}

.format__content-text {
  font-size: 24px;
  max-width: 854px;
  text-align: center;
}

.request-access {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.request-access__content {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #c0c0c0;
  background: rgba(200, 200, 200, 0.1);
  backdrop-filter: blur(19px);
  color: #e0e0e0;
}

.request-access__content-text {
  font-size: 24px;
  max-width: 854px;
  text-align: center;
}

.btn {
  display: inline-block;
  background-color: var(--red-main);
  color: #fff;
  padding: 16px 20px;
  border-radius: 52px;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
}

.request-access-button {
  width: 272px;
}

.info-button {
  max-width: 300px;
  width: 100%;
}

.info__content-description {
  text-align: center;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 27px;
    text-align: center;
  }

  main {
    padding-bottom: 130px;
  }

  .line {
    padding: 18px 10px;
  }

  .line__track {
    font-size: 16px;
  }

  .info__content {
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
  }

  .info__content-image {
    height: 352px;
  }

  .info__content-list {
    gap: 16px;
    font-size: 16px;
  }

  .about {
    margin-bottom: 64px;
  }

  .about__content {
    flex-direction: column-reverse;
    gap: 20px;
    font-size: 16px;
  }

  .about__content-text {
    padding: 20px;
    font-size: 16px;
  }

  .format {
    margin-bottom: 64px;
  }

  .format__content {
    font-size: 16px;
  }

  .info {
    margin-bottom: 64px;
  }

  .format__content-text {
    font-size: 16px;
  }

  .request-access {
    margin-bottom: 64px;
  }

  .request-access__content {
    font-size: 16px;
  }

  .request-access__content-text {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
  }

  .info-button {
    font-size: 16px;
  }

  .info__content-description {
    font-size: 16px;
  }

  .info__content-list-item {
    font-size: 16px;
    padding: 12px;
  }

  .info__content-list-item img {
    height: 16px;
  }

  .about__content-image {
    height: 192px;
  }

  /* hero */
  .hero__image {
    height: 292px;
    max-width: unset;
    margin-bottom: 40px;
    position: absolute;
    right: 50%;
    transform: translateX(50%);
  }

  .hero__gradient-bottom {
    background: linear-gradient(0deg, #000 68.94%, rgba(0, 0, 0, 0) 83.56%);
    height: 460px;
  }

  .hero__title {
    gap: 16px;
    position: relative;
    bottom: 40px;
    text-align: center;
    margin-top: 348px;
  }

  .hero__title h1:first-child {
    font-size: 60px;
    line-height: 0.95;
  }

  .hero__title h1:last-child {
    font-size: 116px;
    line-height: 0.6;
  }
}
