@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
html {
  scroll-behavior: smooth;
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

.bg-black {
  background-color: #000;
}

.text-black {
  color: #000;
}

.bg-white {
  background-color: #fff;
}

.text-white {
  color: #fff;
}

:root {
  --clr-black: #000;
  --clr-white: #fff;
}

.text-xs {
  font-size: 0.875rem;
}
.text-sm {
  font-size: 0.9375rem;
}
.text-md {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.5rem;
}
.text-xl {
  font-size: 2rem;
}
.text-2xl {
  font-size: 3rem;
}
.text-3xl {
  font-size: 4rem;
}

body {
  margin: auto;
  min-width: 280px;
  background-color: var(--clr-black);
  color: var(--clr-white);
  overflow-x: hidden;
  max-width: 100vw;
}
@media (min-width: 1536px) {
  body {
    max-width: 1920px;
  }
}

.container {
  margin: auto;
  width: calc(100% - 2rem);
}
@media (min-width: 640px) {
  .container {
    width: calc(640px - 2rem);
  }
}
@media (min-width: 768px) {
  .container {
    width: calc(768px - 2rem);
  }
}
@media (min-width: 1024px) {
  .container {
    width: calc(1024px - 2rem);
  }
}
@media (min-width: 1280px) {
  .container {
    width: calc(1280px - 2rem);
  }
}
@media (min-width: 1536px) {
  .container {
    width: calc(1536px - 2rem);
  }
}

.header {
  width: 100%;
  position: relative;
}
.header-logo {
  width: 200px;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .header-logo {
    display: none;
  }
}

.button-header-nav {
  position: fixed;
  z-index: 11;
  user-select: none;
  inset: 1rem 1rem auto auto;
  color: var(--clr-black);
  font-weight: 900;
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: transparent;
  z-index: 21;
}
.button-header-nav:active {
  transform: scale(0.9);
}
.button-header-nav.nav-hidden {
  color: var(--clr-white);
  font-size: 3rem;
}
@media (min-width: 640px) {
  .button-header-nav {
    display: none;
  }
}

.header-nav {
  transition: 250ms;
  background-color: var(--clr-white);
  box-sizing: border-box;
  padding: 2rem;
  display: flex;
  justify-content: center;
  max-width: 100%;
  width: 400px;
  height: 100vh;
  position: fixed;
  z-index: 20;
  right: 0;
}
@media (min-width: 640px) {
  .header-nav {
    transition: none;
    position: relative;
    padding: 3rem 2rem 2rem 2rem;
    height: auto;
    width: 100vw;
  }
  .header-nav::after {
    content: url("img/header-wave.svg");
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    width: 100%;
  }
}
.header-nav.hidden {
  transform: translateX(100%);
}
@media (min-width: 640px) {
  .header-nav.hidden {
    transform: none;
  }
}
.header-nav-list {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 640px) {
  .header-nav-list {
    flex-direction: row;
  }
}
.header-nav-list li {
  display: contents;
}
.header-nav-list li a {
  text-decoration: none;
  text-transform: uppercase;
  color: var(--clr-black);
  font-weight: 900;
  font-size: 2rem;
  line-height: 0.6;
}
@media (hover: hover) {
  .header-nav-list li a:hover {
    color: #212121;
    transform: scale(1.05);
    transform-origin: center;
  }
}

.btn {
  display: block;
  max-width: 100%;
  transition: cubic-bezier(0.39, 0.575, 0.565, 1) 100ms, transform cubic-bezier(0.175, 0.885, 0.32, 1.275) 100ms;
  cursor: pointer;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  border: none;
  border: 5px solid var(--clr-white);
  outline: none;
  font-weight: 900;
  background-color: transparent;
  color: var(--clr-white);
  box-shadow: inset 0 0 10px 20px rgba(0, 0, 0, 0.4);
}
@media (min-width: 640px) {
  .btn {
    padding: 0.75rem 6rem;
  }
}
@media (hover: hover) {
  .btn:hover {
    transform: scale(1.1);
    box-shadow: none;
    color: var(--clr-black);
    background-color: var(--clr-white);
  }
}

.logo-wrapper {
  width: 400px;
  max-width: 80vw;
}

.hero-box {
  position: relative;
  z-index: 13;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 640px) {
  .hero-box {
    margin: 0;
    margin-left: auto;
    margin-top: calc(4rem + 11.3vw);
    margin-right: 0;
    transform: none;
  }
}
@media (min-width: 1024px) {
  .hero-box {
    margin-right: 8rem;
  }
}

.parallax {
  position: relative;
  width: 100%;
  padding-top: 600px;
  user-select: none;
  margin: 0 auto;
  height: 300px;
}

.bg-wrap {
  clip: rect(0, auto, auto, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bg {
  position: fixed;
  display: block;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1920px;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: translateZ(0) translateX(-50%);
}

.py-10 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

#main {
  height: 100vh;
}

.bg-img {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
}
.wrapper img {
  max-width: 60%;
}
@media (min-width: 768px) {
  .wrapper {
    width: 400px;
    height: 400px;
    top: unset;
    left: unset;
    font-size: 2rem;
    transform: unset;
    bottom: 5%;
    right: 5%;
  }
}
.wrapper span {
  margin-top: 1rem;
}
