body {
  padding-top: 160px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 45px;
  z-index: 1;
  background-color: white;
}

nav .header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  width: 80px;
  height: 60px;
  z-index: 10;
}

nav .logo img {
  width: 100%;
  height: 100%;
}

nav .controls {
  background-color: transparent;
  width: 50px;
  padding: 0;
  height: 43px;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 10;
}

nav .controls div {
  width: 50px;
  height: 1px;
  background-color: black;
  margin-top: 10px;
  margin-bottom: 10px;
}

#links {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: -100%;
  left: 0;
  background-color: #fff6;
  backdrop-filter: blur(7px);
  transition: top 0.1s ease-in-out;
  padding-top: 160px;
  padding-left: 50px;
  padding-right: 50px;
}

#links a {
  width: min-content;
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
  cursor: pointer;
  white-space: nowrap;
}

#links a .underline {
  border-bottom: 1px solid black;
  width: 0%;
  height: 1px;
  transition: width 0.1s ease-in-out;
}

#links a:hover .underline {
  width: 100%;
}

#links hr {
  border-top: none;
}

#links .languages {
  display: flex;
  gap: 4px;
}

#links .languages a {
  font-weight: 400;
}

#links .languages .active {
  font-weight: 500;
}

#role-list {
  padding-left: 16px;
  display: none;
}

#role-list .role {
  font-weight: 400;
}

#role-list .artist {
  font-weight: 500;
}

#role-list .artist .underline {
  width: 100%;
}

@media screen and (min-width: 1000px) {
  body {
    padding-top: 0px;
    padding-left: 260px;
  }

  nav {
    height: 100vh;
    width: fit-content;
    display: flex;
    flex-direction: column;
  }

  nav .controls {
    display: none;
  }

  #links {
    width: fit-content;
    height: auto;
    flex-grow: 1;
    position: static;
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
  }

  #links hr {
    border: none;
    flex-grow: 1;
  }
}
