@import url('https://fonts.googleapis.com/css2?family=Lexend+Peta:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

:root {
  --dk-blue: #2b2f52;
  --blue: #3e4b91;
  --dk-grey: #111;
  --grey: #575a7d;
  --lt-grey: #e2e3fb;
  --quarter: 20px;
  --half: 40px;
  --full: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background-color: var(--dk-grey);
  font-family: 'Lexend Deca', sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  color: var(--lt-grey);

  a {
    color: var(--lt-grey);
    text-decoration: none;

    &:hover {
      color: var(--grey);
    }

    &:not(nav a) {
      font-weight: 400;
    }
  }
}

header {
  width: 100%;
  text-align: center;
  padding: var(--half);

  h1 {
    font-family: 'Lexend Peta', sans-serif;
    font-weight: 100;
    font-size: 4rem;
  }
}

nav {
  ul {
    height: var(--full);
    padding: 0;

    display: flex;
    list-style-type: none;
    justify-content: center;
    align-items: center;
    gap: var(--half);
  }
}

.discography-full {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: var(--half);
  background-color: var(--dk-blue);
  box-shadow: inset 0 20px 20px -20px rgba(0, 0, 0, 0.5),
    inset 0 -20px 20px -20px rgba(0, 0, 0, 0.5);

  .discography-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    line-height: 2em;
    gap: var(--half);
    max-width: 1000px;

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

.bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--half);
  padding: var(--half);

  div {
    max-width: 1000px;
  }

  .video-container {
    width: 100%;

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

  .acknowledgements-container {
    line-height: 2em;
    text-align: center;
  }
}

@media (max-width: 800px) {
  header {
    padding: var(--half) var(--half) var(--quarter) var(--half);
    nav {
      ul {
        gap: 4%;
      }
    }
  }

  .discography-full {
    .discography-section {
      grid-template-columns: 1fr;

      .discography-text {
        div {
          text-align: center;
        }
      }
    }
  }
}

@media (max-width: 640px) {
  header {
    padding: var(--quarter);
  }
  nav {
    ul {
      flex-direction: column;
      height: auto;
      line-height: 2em;
      padding: 10px 0 0 0;
    }
  }
}
