/* App Theme Colors */

:root {
  --primary: #de0021;
  --secondaryDark: #000000;
  --secondaryLight: #b9b8b8;
  scroll-behavior: smooth;
  scroll-padding: 100px;
}

/* Font Faces */

@font-face {
  font-family: body;
  src: url("/assets/fonts/ModelStandardVariableTrial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: header;
  src: url("/assets/fonts/ITCFranklinGothicStd-DmCp.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* Reset CSS */

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default padding and margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend,
button,
input,
textarea,
select {
  margin: 0;
  padding: 0;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove default fieldset border */
fieldset {
  border: 0;
}

/* Remove default link styling */
a {
  text-decoration: none;
  color: inherit;
}

/* Set a consistent border and background on inputs and buttons */
button,
input,
select,
textarea {
  background: none;
  border: none;
  box-shadow: none;
  font: inherit;
  line-height: inherit;
  color: inherit;
}

/* Remove default table spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default quotes */
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

/* Remove default appearance for some elements in certain browsers */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Make sure that hidden elements don't show up in accessibility APIs */
[hidden] {
  display: none;
}

/* Ensure media elements fit their container */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Set a more readable default font family */
body {
  font-family: body;
  text-transform: uppercase;
  background-color: var(--primary);
  text-wrap: balance;
  min-height: 100vh;
  min-height: 100dvh;
}

body.static {
  background-color: var(--secondaryLight);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.no-scroll {
  overflow: hidden;
}

/* buttons */

button,
.button {
  position: relative;
  padding: 6px 20px;
  border: 1px solid var(--secondaryDark);
  background-color: var(--secondaryDark);
  color: var(--primary);
  font-family: header;
  font-size: 18px;
  line-height: 21px;
  height: 30px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
}

button.outline,
.button.outline {
  background-color: transparent;
  color: var(--secondaryDark);
}

.form-submit .loader {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  inset: 0;
  border: 1px solid var(--secondaryDark);
  background-color: var(--primary);
  display: flex;
  place-content: center;
  transition: opacity linear 180ms;
}

.form-submit.loading {
  pointer-events: none;
  cursor: default;
}

.form-submit.loading .loader {
  pointer-events: all;
  opacity: 1;
}

.form-submit .loader .storm-player {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  z-index: 10;
  animation: loading infinite linear 1s;
}

@keyframes loading {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Inputs */

input {
  padding: 4px 16px;
  border: 1px solid var(--secondaryDark);
  background-color: var(--secondaryDark);
  color: var(--primary);
  font-family: header;
  font-size: 18px;
  line-height: 23px;
  height: 36px;
  border-radius: 4px;
  text-transform: uppercase;
}

/* Header Styles */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 40px;
  transition: all linear 500ms;
}

header.scrolled {
  background-color: var(--secondaryDark);
}

header.scrolled .logo-wrapper .logo,
header.scrolled nav.desktop-nav a,
header.scrolled .social-links svg {
  color: var(--secondaryLight);
  fill: var(--secondaryLight);
}

header.scrolled nav.desktop-nav a.active {
  border-bottom-color: var(--secondaryLight);
}

.logo-wrapper {
  position: relative;
  min-width: 100px;
  max-width: 240px;
  width: 100%;
}

.menu-storm-player {
  display: none;
}

header .logo {
  min-width: 100px;
  max-width: 240px;
  height: auto;
  fill: var(--secondaryDark);
  margin-bottom: -5px;
  transition: all linear 180ms;
}

.desktop-nav {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: -7px;
}

.desktop-nav a {
  color: var(--secondaryDark);
  font-size: 18px;
  font-family: header;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid transparent;
  transition: all linear 180ms;
}

.desktop-nav a.active {
  border-bottom-color: var(--secondaryDark);
}

.social-links {
  width: 240px;
  display: flex;
  justify-content: end;
  gap: 10px;
}

.social-links li {
  width: 30px;
  height: 30px;
}

.social-links a {
  display: block;
  width: 30px;
  height: 30px;
}

.social-links svg {
  transition: all linear 180ms;
}

.social-links .discord,
.social-links .discord a {
  height: 30px;
  width: 38px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 200;
  overflow: hidden;
  padding: 17px 20px;
  display: none;
  opacity: 0;
  background-color: var(--secondaryLight);
  transition: height linear 240ms;
}

.mobile-menu-header a {
  display: block;
  width: 100%;
  min-width: 100px;
  max-width: 240px;
  height: auto;
}

.mob-menu-logo {
  min-width: 100px;
  max-width: 240px;
  height: auto;
  margin-bottom: -9px;
  fill: var(--secondaryDark);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.mobile-menu-items-wrapper {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 2rem;
}

.mobile-menu-social {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.mobile-menu-items-wrapper a.mobile-menu-item {
  text-align: center;
  font-size: 50px;
  line-height: 50px;
  font-family: header;
  width: fit-content;
  border-bottom: 6px solid transparent;
}

.mobile-menu-items-wrapper a.mobile-menu-item.active {
  border-bottom-color: var(--secondaryDark);
}

.mobile-menu-social li,
.mobile-menu-social li a,
.mobile-menu-social li a svg {
  height: 50px;
  width: 50px;
}

.mobile-menu-social li.discord,
.mobile-menu-social li.discord a,
.mobile-menu-social li.discord a svg {
  height: 50px;
  width: 69px;
}

@media (min-width: 1024px) and (max-width: 1200px) {
}

@media (min-width: 769px) and (max-width: 1024px) {
  .social-links {
    display: none;
  }
}

@media (min-width: 200px) and (max-width: 768px) {
  .social-links {
    display: none;
  }

  header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
  }

  .desktop-nav {
    justify-content: center;
  }

  .logo-wrapper {
    position: relative;
    min-width: 100px;
    max-width: 100%;
    width: 100%;
  }

  .menu-storm-player {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center center;
    z-index: 10;
    cursor: pointer;
    animation: rotateonly infinite linear 10s;
  }

  .mobile-menu {
    display: grid;
    grid-template-rows: auto 1fr;
    pointer-events: none;
  }

  .mobile-menu.show {
    height: 100vh;
    pointer-events: all;
    opacity: 1;
  }
}

@keyframes rotateonly {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

/* Hero Section */

.hero {
  min-height: 50vh;
  padding: 40px;
  position: relative;
  display: grid;
  grid-template-areas: "discover download" "mission contact";
  row-gap: 70px;
  column-gap: 29vw;
}

.hero .title {
  font-size: 3.8vw;
  line-height: 3vw;
  color: var(--secondaryDark);
  font-family: header;
  font-weight: 800;
  transition: all linear 180ms;
}

.hero .details {
  font-size: 13px;
  line-height: 15px;
  font-weight: 600;
}

.hero .actions {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.discover {
  grid-area: discover;
  min-width: 420px;
  max-width: 580px;
}

.download {
  grid-area: download;
  max-width: 580px;
  margin-left: auto;
  width: 100%;
}

.mission {
  grid-area: mission;
  min-width: 420px;
  max-width: 580px;
}

.contact {
  grid-area: contact;
  max-width: 580px;
  margin-left: auto;
  width: 100%;
}

.download-actions {
  display: flex;
  gap: 3rem;
  padding-top: 1.5rem;
}

.qr-code {
  width: 76px;
  height: 76px;
}

.left-actions {
  display: grid;
  gap: 10px;
  width: 132px;
}

.left-actions img {
  width: 100%;
}

.contact form {
  padding-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.contact form button {
  margin-top: 5px;
  width: 120px;
}

.storm-player {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  transform-origin: center center;
  z-index: 10;
  animation: rotate infinite linear 10s;
}

.contact h3 {
  padding-top: 10px;
  font-size: 30px;
  line-height: 30px;
  color: var(--secondaryDark);
  font-family: header;
  font-weight: 800;
}

.form-success {
  display: none;
}

.form-success.show {
  display: block;
}

.form-success.show + form,
.form-success.show + #contact-us-form-new {
  display: none;
}

.bold {
  font-weight: bold;
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .discover,
  .mission {
    min-width: 360px;
    max-width: 410px;
  }
  .hero {
    column-gap: 24vw;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .discover,
  .mission,
  .download,
  .contact {
    min-width: 300px;
  }

  .hero {
    row-gap: 70px;
    column-gap: 70px;
  }

  .storm-player {
    display: none;
  }

  .hero .title {
    font-size: 5vw;
    line-height: 4vw;
  }
}

@media (min-width: 200px) and (max-width: 768px) {
  .storm-player {
    display: none;
  }

  .hero {
    grid-template-areas: "discover" "mission" "download" "contact";
    row-gap: 50px;
    padding: 20px;
  }

  .hero .title {
    font-size: 10vw;
    line-height: 8vw;
  }

  .discover,
  .mission,
  .download,
  .contact {
    min-width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: 0;
  }
}

@media (min-width: 200px) and (max-width: 500px) {
  .contact form {
    grid-template-columns: 1fr;
  }

  .contact form button {
    width: 100%;
  }
}

/* Community Section */

.community {
  background-color: var(--secondaryDark);
  padding: 40px;
  position: relative;
}

.community h1 {
  font-family: header;
  text-align: center;
  font-size: 20vw;
  line-height: 18vw;
  color: var(--secondaryLight);
  z-index: 2;
}

.posters {
  max-width: 1440px;
  margin-inline: auto;
  margin-top: -30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding-bottom: 5rem;
  z-index: 2;
}

.community h2 {
  font-family: header;
  text-align: center;
  font-size: 6vw;
  line-height: 6vw;
  color: var(--secondaryLight);
  z-index: 2;
  position: relative;
  text-wrap: balance;
}

@media (min-width: 1024px) and (max-width: 1200px) {
}

@media (min-width: 769px) and (max-width: 1024px) {
}

@media (min-width: 200px) and (max-width: 768px) {
  .community {
    padding: 40px 20px;
  }

  .posters {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0px;
    padding-bottom: 2rem;
  }

  .community h2 {
    font-size: 8vw;
    line-height: 8vw;
  }
}

/* Teams Section */
.team {
  background-color: var(--secondaryLight);
  padding: 30px 40px;
}

.team .team-header {
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}

.team-header .logo {
  min-width: 100px;
  max-width: 240px;
  height: auto;
  fill: var(--secondaryDark);
}

.team-header h3 {
  font-family: header;
  text-align: center;
  font-size: 72px;
  line-height: 55px;
  margin-bottom: -21px;
  color: var(--secondaryDark);
}

.team-header .logo-invisible {
  min-width: 100px;
  max-width: 240px;
  height: auto;
  fill: var(--secondaryLight);
}

.team-people {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 15px;
  row-gap: 50px;
}

.team-people-card img {
  width: 100%;
  filter: grayscale(1) brightness(1.2);
}

.team-people-card h4 {
  font-family: header;
  text-align: left;
  font-size: 2vw;
  line-height: 2vw;
  color: var(--secondaryDark);
  padding-top: 10px;
}

.team-people-card .designation {
  font-size: 12px;
  line-height: 14px;
  color: var(--secondaryDark);
  opacity: 55%;
  font-weight: 600;
}

.team-people-card .info {
  padding-right: 10px;
  padding-top: 10px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 600;
  color: var(--secondaryDark);
}

@media (min-width: 1024px) and (max-width: 1442px) {
  .team-people {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 1024px) {
  .team-people {
    grid-template-columns: repeat(3, 1fr);
  }

  .team .team-header {
    justify-content: center;
  }

  .team-header .logo,
  .logo-invisible {
    display: none;
  }

  .team-people-card h4 {
    font-size: 4vw;
    line-height: 4vw;
  }
}

@media (min-width: 200px) and (max-width: 600px) {
  .team {
    padding: 30px 20px;
  }

  .team-people {
    grid-template-columns: 1fr;
  }

  .team .team-header {
    justify-content: center;
  }

  .team-header .logo,
  .logo-invisible {
    display: none;
  }

  .team-people-card h4 {
    font-size: 8vw;
    line-height: 8vw;
  }

  .team-people-card .info {
    font-size: 14px;
    line-height: 18px;
  }
}

/* Footer */

footer {
  background-color: var(--secondaryDark);
  padding: 40px;
}

footer .links {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

footer .social-links {
  display: flex;
  justify-content: start;
  gap: 15px;
}

footer .social-links li {
  width: 40px;
  height: 40px;
}

footer .social-links a {
  display: block;
  width: 40px;
  height: 40px;
}

footer .social-links .discord,
footer .social-links .discord a {
  height: 40px;
  width: 49px;
}

footer .social-links svg {
  fill: var(--secondaryLight);
}

footer .legal {
  text-align: right;
  font-size: 16px;
  line-height: 16px;
  color: var(--secondaryLight);
}

footer .logo {
  width: 432px;
  height: auto;
  margin: auto;
}

footer .logo svg {
  fill: var(--secondaryLight);
}

@media (min-width: 1024px) and (max-width: 1200px) {
}

@media (min-width: 769px) and (max-width: 1024px) {
  footer .links {
    padding-bottom: 2rem;
  }
}

@media (min-width: 200px) and (max-width: 768px) {
  footer {
    padding: 20px;
  }

  footer .links {
    padding-bottom: 3rem;
    flex-direction: column;
    align-items: center;
  }

  footer .social-links {
    width: auto;
  }

  footer .legal {
    width: 100%;
    padding-top: 1.4rem;
    margin-top: 1.4rem;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    border-top: 1px solid var(--secondaryLight);
  }

  footer .legal > div {
    padding-bottom: 10px;
  }

  footer .legal > div:last-child {
    padding-bottom: 0px;
  }

  footer .logo {
    width: 70vw;
  }
}

/* FAQs */

.content-wrapper {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding: 60px 40px;
}

.content-wrapper h2 {
  font-size: 3.8vw;
  line-height: 3vw;
  color: var(--secondaryDark);
  font-family: header;
  font-weight: 800;
  padding-bottom: 30px;
  transition: all linear 180ms;
}

.content-wrapper h4 {
  font-size: 1.5vw;
  line-height: 2vw;
  color: var(--secondaryDark);
  font-family: header;
  font-weight: 800;
  transition: all linear 180ms;
}

.content-wrapper p {
  padding-bottom: 30px;
  width: 100%;
  text-wrap: initial;
}

.content-wrapper p a {
  font-weight: 600;
  text-decoration: underline;
}

.content-wrapper article p:not(:last-child) {
  padding-bottom: 16px;
}

.content-wrapper ol {
  list-style: number;
  padding-left: 3.2rem;
}

.content-wrapper ol li {
  padding-bottom: 10px;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .content-wrapper h2 {
    font-size: 5vw;
    line-height: 4vw;
  }

  .content-wrapper h4 {
    font-size: 2.5vw;
    line-height: 3vw;
  }
}

@media (min-width: 200px) and (max-width: 768px) {
  .content-wrapper {
    padding: 30px 20px;
  }

  .content-wrapper h2 {
    font-size: 10vw;
    line-height: 9vw;
  }

  .content-wrapper h4 {
    font-size: 4.5vw;
    line-height: 5vw;
  }

  .content-wrapper p {
    font-size: 14px;
  }

  .content-wrapper li {
    font-size: 14px;
  }

  .content-wrapper ol {
    padding-left: 2rem;
  }
}

/* Conatct Us Page */

#contact-us-form-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 500px;
}

@media (min-width: 200px) and (max-width: 768px) {
  #contact-us-form-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
  }
}

/* Tab Switcher */

.tab-switcher {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1px solid var(--secondaryDark);
  border-radius: 4px;
  height: 40px;
  max-width: 300px;
  margin-bottom: 30px;
  overflow: hidden;
}

.tab-switcher div {
  width: 1px;
  height: 100%;
  background-color: var(--secondaryDark);
}

.tab-switcher button {
  background-color: transparent;
  height: 100%;
  border: 0px;
  line-height: 30px;
  padding: 0px;
  padding-top: 6px;
  color: var(--secondaryDark);
  border-radius: 0;
}

.tab-switcher button.active {
  background-color: var(--secondaryDark);
  color: var(--secondaryLight);
}

.artist-terms,
.fan-terms {
  display: none;
}

.artist-terms.active,
.fan-terms.active {
  display: block;
}

.selected {
  border-bottom-color: var(--secondaryDark);
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

.language-switcher {
  padding: 4px 0px;
}
