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

html,
body {
  min-height: 100%;
}

body {
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #000;

  font-family:
    "Trajan Pro",
    "Trajanus Roman",
    "Times New Roman",
    serif;

  text-transform: uppercase;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  padding-top: 14vh;
  padding-bottom: 6vh;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1000px;

  text-align: center;

  display: flex;
  flex-direction: column;
}

.logo-link {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 0.95;

  margin-top: 6rem;
  margin-bottom: 7rem;
}

.release {
  margin-bottom: 5rem;
}

.release h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-bottom: 0.75rem;
}

.release p {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: 0.2em;
}

.nav-section {
  margin-bottom: 2.5rem;
}

.nav-section h3 {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.inline-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 0.5rem;
}

.inline-links a,
.inline-links span {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.12em;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.25s ease;
}

a:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  body {
    padding-top: 4vh;
    padding-left: 1rem;
    padding-right: 1rem;

    background-position: center top;
  }

  h1 {
    margin-top: 2rem;
    margin-bottom: 3rem;

    font-size: clamp(4rem, 18vw, 6rem);
    letter-spacing: 0.18em;
  }

  .release {
    margin-bottom: 3rem;
  }

  .release h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .release p {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
  }
}

.album-page {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.album-title {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  letter-spacing: 0.25em;
  margin-bottom: 1rem;
}

.track-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.track-list a {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.18em;
}
