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

body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;

  padding: 22px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);

  z-index: 999;
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 4px;

  color: white;
  text-decoration: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
}

/* BACK BUTTON */

.back-button {
  display: inline-block;

  margin-top: 120px;
  margin-left: 80px;

  color: white;
  text-decoration: none;

  letter-spacing: 2px;

  transition: 0.3s;
}

.back-button:hover {
  opacity: 0.6;
}

body {
  background: #050505;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.album-page {
  padding: 80px;
}

.album-header {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;

  margin-bottom: 80px;
}

.album-header img {
  width: 100%;
}

.album-meta h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.stream-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stream-links a {
  color: white;
  text-decoration: none;

  border: 1px solid white;
  padding: 12px 24px;
}

.tracklist {
  border-top: 1px solid #333;
}

.track {
  display: flex;
  justify-content: space-between;

  padding: 24px 0;

  border-bottom: 1px solid #222;
}
@media (max-width: 768px) {

  /* NAVBAR */

  .navbar {
    width: 100%;
    padding: 18px 16px;

    flex-direction: column;
    gap: 14px;

    text-align: center;
  }

  .logo {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .nav-links {
    width: 100%;

    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;
  }

  .nav-links a {
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  /* HERO TITLES */

  .hero-overlay h1,
  .discography-hero h1,
  .experience-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 5px;

    text-align: center;
    padding: 0 20px;
  }

  /* CONTROLS */

  .controls-section {
    padding: 40px 20px;
  }

  .controls-container {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  #searchInput,
  #sortSelect {
    width: 100%;
    min-width: unset;
  }

  .layout-buttons {
    width: 100%;
  }

  .layout-buttons button {
    width: 100%;
  }

  /* DISCOVERY GRID */

  .albums-section,
  .events-section {
    padding: 0 20px 80px;
  }

  .albums-container.grid-layout {
    grid-template-columns: 1fr;
  }

  /* ALBUM PAGES */

  .album-page {
    padding: 140px 20px 80px;
  }

  .album-header {
    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    gap: 30px;
  }

  .album-header img {
    width: 100%;
    max-width: 320px;

    height: auto;

    display: block;
    margin: 0 auto;
  }

  .album-meta {
    width: 100%;
    max-width: 600px;
  }

  .album-meta h1 {
    font-size: 2rem;
  }

  .album-meta p {
    line-height: 1.8;
  }

  .stream-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* TRACKLIST */

  .tracklist {
    margin-top: 50px;
  }

  .track {
    padding: 18px 0;

    font-size: 0.9rem;

    gap: 20px;
  }

  /* BACK BUTTON */

  .back-button {
    top: 105px;
    left: 20px;

    font-size: 0.85rem;
  }

}