/* ============================================================
   PAGE-SPECIFIC CSS — MUSIC PAGE ONLY
   Everything shared (curtains, nav, game, signup form) lives in
   site-chrome.css instead — this is just what this one page adds.
   ============================================================ */
#page-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: max(min(calc((0.75*831px - 59px) / 3), calc(25vw + 50px)), 125px);
  padding-bottom: 40vh;
}

#music-page-heading {
  font-family: "zedou", sans-serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #1a1a1a;
  text-align: center;
  margin: 0 0 50px;
}

.album-section-heading {
  font-family: "zedou", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1a1a1a;
  text-align: center;
  margin: 60px 0 30px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
  width: 84vw;
  max-width: 1200px;
  margin: 0 auto;
}

.album-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.25s ease;
}

.album-card:hover {
  transform: translateY(-6px);
}

.album-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.album-card .album-title {
  font-family: "zedou", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

@media (max-width: 600px) {
  #page-content {
    padding-top: 140px;
  }

  #music-page-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .album-section-heading {
    font-size: 20px;
    margin: 40px 0 20px;
  }

  .album-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
  }

  .album-card .album-title {
    font-size: 13px;
  }
}
