@font-face {
  font-family: BlackHanSans;
  src: url("/public/fonts/blackhansans-regular-webfont.woff2") format("woff2");
}
@font-face {
  font-family: FiraSans;
  src: url("/public/fonts/firasansextracondensed-regular-webfont.woff2")
    format("truetype");
}

:root {
  --bg: #171717;
  --text: #dbdbdb;
  --heading: #9d75c9;
  --component: #1e1e1e;
  --breakpoint: 1140px;
}

* {
  margin: 0;
  font-family: FiraSans;
}

body {
  background-color: var(--bg);
  max-width: 100vw;
}
h1 {
  color: var(--text);
  font-family: BlackHanSans;
  font-size: 32px;
}
h2 {
  font-family: BlackHanSans;
  color: var(--heading);
  font-size: 28px;
  font-weight: 300;
}
p {
  line-height: 1.5;
  font-size: 18px;
  font-family: FiraSans;
  color: var(--text);
}

button {
  outline: none;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 16px;
  font-size: 18px;
  background-image: linear-gradient(
    122deg,
    rgb(170, 2, 76) 0%,
    rgb(156, 22, 89) 100%
  );
  box-shadow: rgba(0, 0, 0, 0.3) 0px 9px 32px 0px;
  color: var(--text);
  text-transform: capitalize;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight {
  color: var(--heading);
  font-weight: bold;
}

.container {
  margin: auto;
  max-width: var(--breakpoint);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
}

.header .container {
  padding: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.header h1 {
  flex: 1;
  margin-bottom: -8px;
}

.sticky {
  background-image: linear-gradient(
    135deg,
    rgba(59, 10, 114, 0.9) 0%,
    rgba(178, 4, 88, 0.7) 100%
  );
  box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 23px 0px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--text);
  padding: 0 16px;
  font-size: 18px;
}

a:hover,
.active {
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-decoration-color: #36084f;
}

#menu-trigger {
  display: none;
  position: fixed;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 8px;
  transform: rotate(0deg);
  transition: all ease 0.5s;
  cursor: pointer;
}

#menu-trigger.open {
  transform: rotate(-90deg);
}

section {
  box-sizing: border-box;
  padding: 32px 8px;
}

/* ---------------- */
/*   home section   */
/* ---------------- */
#home {
  height: 90vh;
  height: 90svh;
  background-image: linear-gradient(
    135deg,
    rgba(48, 6, 94, 0.8) 0%,
    rgba(200, 0, 94, 0.8) 100%
  );
  overflow: hidden;
}

#download {
  height: 10vh;
  gap: 32px;
}

/* ---------------- */
/*   start section  */
/* ---------------- */

#start {
  background-color: var(--component);
}
#start .container {
  height: 100%;
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#start .container img {
  width: 40%;
}

#start .step {
  padding: 8px;
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

#start .step-num {
  color: rgb(246, 66, 148);
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--bg);
  color: #f64294;
  padding: 8px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  font-size: 32px;
  text-align: center;
  line-height: 60px;
  font-weight: 300;
  transition: all 0.3s ease;
}
#start .step:hover .step-num {
  color: #dbdbdb;
  background-image: linear-gradient(
    122deg,
    rgb(170, 2, 76) 0%,
    rgb(156, 22, 89) 100%
  );
}

#start .step h2 {
  margin: 8px;
  margin-top: 20px;
}
#start .step p {
  margin: 8px;
  max-width: 500px;
}

/* ---------------- */
/* features section */
/* ---------------- */
.color-br {
  height: 32px;
  display: flex;
  background-image: linear-gradient(
    -75deg,
    rgba(48, 6, 94, 0.8) 0%,
    rgba(200, 0, 94, 0.8) 100%
  );
}

#features .container {
  gap: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#features .container img {
  flex: 2;
}
#features .box-wrapper {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
}
.box {
  background-color: var(--component);
  display: flex;
  border-radius: 4px;
}
.box::before {
  content: " ";
  display: block;
  width: 16px;
  background-image: linear-gradient(
    rgba(48, 6, 94, 0.8) 0%,
    rgba(200, 0, 94, 0.8) 100%
  );
  box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.box .content {
  padding: 16px;
}

/* ---------------- */
/* contact section  */
/* ---------------- */

.footer {
  background-color: var(--component);
  gap: 16px;
  padding: 16px 0px 8px 0px;
  flex-wrap: wrap;
}
.footer h1 {
  margin: 16px;
}

#vws-logo {
  height: 128px;
}

#legal {
  position: fixed;
  z-index: 5;
  top: 0;
  left: -100vw;
  height: 100vh;
  overflow-y: scroll;
  width: 100vw;
  transition: ease 0.5s;
  background: var(--bg);
}
#legal .container {
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 80px 32px 32px 32px;
  flex-wrap: wrap;
}
#legal .container div:first-child {
  flex: 1;
}
#legal .container div:last-child {
  flex: 2;
}
#legal-close {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  text-align: center;
}
#legal a {
  padding: 0px;
  color: var(--heading);
}

/*--------*/
/* moblie */
/*--------*/
@media (max-width: 1140px) {
  #home {
    height: 100vh;
  }
  #start img {
    display: none;
  }
  .navigation {
    display: none;
  }
  .navigation {
    width: 100%;
  }
  #menu-trigger {
    display: block;
  }
  #start .step-num {
    padding: 0px;
  }
  #features img {
    display: none;
  }
  #vws-logo {
    height: 96px;
  }
}
