/* @link https://utopia.fyi/type/calculator?c=320,12,1.2,1280,18,1.25,7,2,768&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */

:root {
  --step--2: clamp(0.5208rem, 0.4544rem + 0.3319vw, 0.72rem);
  --step--1: clamp(0.625rem, 0.5333rem + 0.4583vw, 0.9rem);
  --step-0: clamp(0.75rem, 0.625rem + 0.625vw, 1.125rem);
  --step-1: clamp(0.9rem, 0.7313rem + 0.8438vw, 1.4063rem);
  --step-2: clamp(1.08rem, 0.8541rem + 1.1297vw, 1.7578rem);
  --step-3: clamp(1.296rem, 0.9956rem + 1.5021vw, 2.1973rem);
  --step-4: clamp(1.5552rem, 1.1581rem + 1.9856vw, 2.7466rem);
  --step-5: clamp(1.8662rem, 1.3439rem + 2.6116vw, 3.4332rem);
  --step-6: clamp(2.2395rem, 1.5555rem + 3.4201vw, 4.2915rem);
  --step-7: clamp(2.6874rem, 1.795rem + 4.4617vw, 5.3644rem);
}

body {
  font-family: Nokora, sans-serif;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: var(--step-0);
}

.japanese {
  font-family: "BIZ UDGothic";
  font-weight: 900;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "League Gothic", sans-serif;
}

h1,
h2 {
  margin-top: 0;
  text-transform: uppercase;
}

h1 {
  font-size: var(--step-7);
}

h2 {
  font-size: var(--step-6);
}

label {
  font-style: italic;
}

section,
footer {
  position: relative;
  overflow: hidden;
  /* border-bottom-width: 5px;
  border-bottom-color: red;
  border-bottom-style: solid; */
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

footer::before {
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 4px;
  background-image: linear-gradient(90deg, rgb(155, 0, 170), rgb(220, 189, 39), rgb(155, 0, 170));
}

footer {
  position: relative;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: rgb(10, 10, 5);
  color: rgb(240, 240, 240);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  padding-inline: 3rem;
}

main {
  flex: 1;
}

.container {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.button {
  display: block;
  padding-inline: 2rem;
  padding-block: 1rem;
  margin-top: 2.5rem;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-mobile-button {
  display: none;
}

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

#hero {
  height: min(1440px, 100vh);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.8);
}

.logo {
  color: white;
  font-size: var(--step-7);
  text-align: center;
  font-weight: 900;
  font-family: Moul, serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
  bottom: -0.4em;
}

header .logo {
  position: static;
}

#hero .top-navbar {
  margin: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  padding-inline: 3rem;
}

.top-navbar {
  display: flex;
  gap: clamp(1rem, 2.2rem, 3.5rem);
}

.nav-link {
  color: white;
  font-family: Nokora;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  opacity: 0.55;
  padding-bottom: 1rem;
  padding-top: 1rem;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}

.nav-link:hover {
  opacity: 1;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: .8rem;
  height: 2px;
  width: 0%;
  background-color: white;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}

.nav-link:hover::before {
  opacity: 1;
  width: 100%;
}

.reg-link {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: .4rem;
  color: red;
  text-transform: uppercase;
  font-size: 0.8rem;
  position: relative;
  padding-bottom: 10px;
  opacity: 0.6;
  transition-property: opacity;
  transition-duration: 300ms;
  transition-timing-function: ease-out;
}

.reg-link:hover {
  opacity: 1;
}

.reg-link::before {
  content: "";
  height: 1px;
  background-color: red;
  width: 100%;
  opacity: 0;
  position: absolute;
  bottom: 3px;
  transition: 300ms;
}

.reg-link:hover::before {
  opacity: 1;
  bottom: 6px;
}

#new-release {
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: black;
  background-color: black;
  z-index: 1;
}

#new-release .button {
  background-color: black;
  border: 2px solid white;
  border-radius: 9999px;
  color: white;
  width: fit-content;
  transition-duration: 150ms;
  transition-property: color, background-color;
  transition-timing-function: ease-out;
  margin-inline: auto;
  z-index: 2;
}

#new-release .button:hover {
  background-color: white;
  color: black;
}

#new-release iframe {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  display: block;
  margin-inline: auto;
  margin-top: 5rem;
}

.tag-reel {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.15;
  color: white;
  font-family: "League Gothic", sans-serif;
}

.tag-reel-row {
  display: flex;
  text-align: center;
  white-space: nowrap;
  position: relative;
  margin-block: -4.5em;
}

.tag-reel-item {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13.4em;
  padding-inline: 1rem;
}

#quick-bio {
  min-height: 80vh;
  padding-inline: 3em;
}

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

#quick-bio .hero {
  opacity: 0.25;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -2;
}

.page-title {
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  bottom: 0rem;
  left: 0;
  height: 3px;
  width: 50%;
  background-color: black;
}

#quick-bio .section-title {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  position: relative;
  right: 6.25em;
}

.card-outer {
  max-width: 45ch;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  padding-left: 6rem;
  padding-right: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  position: relative;
  left: -1rem;
}

.card-title {
  font-size: 3em;
}

.bg-card-title {
  position: absolute;
  top: 2rem;
  left: -3rem;
  font-size: 5em;
  color: #50505010;
  writing-mode: vertical-lr;
  z-index: -1;
}

.portrait {
  height: 850px;
}

.album-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  z-index: 2;
}

.album-cover img {
  object-fit: cover;
  z-index: -1;
  width: 100%;
}

.card {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  padding: 4rem;
}

.card h2 {
  text-align: center;
}

.event-item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 1.5rem;
  border-top: 1px solid black;
}

.event-item:first-of-type {
  border-top: none;
  font-weight: 600;
  font-size: 1.3rem;
}

.event-item > div:nth-child(3) {
  justify-self: end;
}

#press-kit .button {
  border: 2px solid black;
  display: inline-block;
  color: black;
  border-radius: 9999px;
  transition-duration: 150ms;
  transition-property: color, background-color;
  transition-timing-function: ease-in;
}

#press-kit .button:hover {
  background-color: black;
  color: white;
}

#press-kit {
  border-top: 2px solid black;

}

#new-release .grid-2 {
  display: flex;
  justify-content: center;
}

#press-kit .grid-2 {
  gap: 1rem;
}

#press-kit .grid-2 img {
  width: 100%;
}

.bottom-navbar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding-left: 0;
}

.bottom-navbar a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  font-size: 1.5rem;
  border-radius: 9999px;
  background-color: rgb(220, 220, 224);
  color: rgb(40, 40, 67);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

#contact {
  --s: 100px; /* control the size*/
  --c1: #041a3e;
  --c2: #aa009b;

  --_g:
  var(--c1) 0%  5% ,var(--c2) 6%  15%,var(--c1) 16% 25%,var(--c2) 26% 35%,var(--c1) 36% 45%,
  var(--c2) 46% 55%,var(--c1) 56% 65%,var(--c2) 66% 75%,var(--c1) 76% 85%,var(--c2) 86% 95%,
  #0000 96%;
  background:
  radial-gradient(50% 50% at 100% 0,var(--_g)),
  radial-gradient(50% 50% at 0 100%,var(--_g)),
  radial-gradient(50% 50%,var(--_g)),
  radial-gradient(50% 50%,var(--_g)) calc(var(--s)/2) calc(var(--s)/2)
  var(--c1);
  background-size: var(--s) var(--s);
  color: white;
}

#contact .section-title {
  color: white;
  text-shadow: 8px 8px 0px #101010;
  letter-spacing: 3px;
}

#contact .grid-2 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 2rem;
}

#contact img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.contact-card {
  padding-left: 0;
  padding-top: 0;
}

form {
  padding: 3rem;
  background-image: linear-gradient(240deg, rgb(185, 0, 270), rgb(190, 20, 170));
  backdrop-filter: blur(5px);
}

form > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: Nokora;
}

form button {
  border: none;
  padding-inline: 2.5em;
  padding-block: 1em;
  text-transform: uppercase;
  font-family: Nokora;
  margin-top: 1rem;
  font-size: var(--step-0);
  transition-property: background-color, color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

form button:hover {
  background-color: rgb(210, 5, 50);
  color: white;
}

textarea,
input {
  font-family: Nokora, sans-serif;
  font-size: var(--step-0);
  padding: 0.5em;
}

textarea {
  line-height: 1.15;
}

.bottom-navbar {
  display: flex;
  justify-content: center;
}

.bottom-navbar a {
  transition-duration: 150ms;
  transition-timing-function: ease-in-out;
  transition-property: color;
}

.bottom-navbar a:hover {
  color: rgb(155, 0, 170);
}

.copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copyright div {
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.music-page.button {
  border: 2px solid black;
  color: black;
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 9999px;
  transition-duration: 150ms;
  transition-timing-function: ease-in;
}

.music-page.button:hover {
  background-color: black;
  color: white;
}

.spotify-row {
  margin-top: 8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.form-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.form-area img {
  width: 100%;
  object-fit: cover;
}

.form-area form {
  color: white;
  background-image: unset;
  background-color: black;
}

.form-area form textarea {
  height: 450px;
}

form .info {
  font-size: var(--step-2);
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  .modal-open {
    overflow: hidden;
  }

  #hero {
    height: 100vh;
  }

  header nav {
    position: fixed;
    top: 6em;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 2;
    padding-left: 3em;
  }

  .top-navbar {
    display: block;
  }

  .bg-card-title {
    font-size: 5em;
    bottom: 2em;
    right: 1em;
  }
  .hidden {
    display: none;
  }

  .navbar-mobile-button {
    display: block;
    color: white;
    font-size: var(--step-3);
  }

  #contact .grid-2,
  .grid-2,
  .form-area,
  .spotify-row,
  .video-grid {
    grid-template-columns: 100%;
    gap: 1rem;
  }

  form {
    padding: 1.5rem;
  }

  #quick-bio .section-title {
    right: 2em;
  }

  #quick-bio .content {
    display: block;
  }

  #quick-bio .card-outer {
    left: 0;
    margin-top: 1rem;
    padding: 2em;
  }

  #quick-bio .portrait {
    width: 100%;
    height: 40%;
    object-fit: cover;
  }

  #new-release .grid-2 {
    display: block;
  }

  .album-cover {
    width: 100%;
  }

  .card {
    padding-block: 3rem;
    padding-inline: 1.5rem;
  }

  .card h2 {
    font-size: var(--step-4);
  }

  .copyright {
    display: block;
  }

  .copyright div:first-child {
    text-align: center;
    border-right: none;
  }

  .mizuki-bio-picture {
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 540px) {
  .logo {
    font-size: var(--step-4);
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
