/* -------------------------------------------------
   music.css – music‑list page
   ------------------------------------------------- */

section#music {
  padding: 2rem 1rem;
}
section#music h2 {
  margin-bottom: 1rem;
  color: var(--c-primary);
}

/* Audio list */
#track-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
#track-list li {
  background: var(--c-bg-mid);
  padding: .6rem 1rem;
  border-radius: .4rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
#track-list audio {
  width: 100%;
}


/* ------------------------------------------------------------------------------------------- */

/* --------------------------------------------------------------
   HOME PAGE – centered title, bold sans‑serif, simple nav tabs
   -------------------------------------------------------------- */

/* 1️⃣ Title */
.site-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* sans‑serif */
  font-size: clamp(3rem, 10vw, 6rem);   /* responsive scaling */
  font-weight: 900;                     /* ultra‑bold */
  color: var(--accent);
  text-align: center;
  margin: 0.5rem 0;
}

/* 2️⃣ Navigation tabs */
.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0.5rem 0;
}

.main-nav a {
  color: var(--txt-primary);
  text-decoration: none;
  font-family: inherit;
  font-size: 1.1rem;
  padding: .3rem .6rem;
  border-radius: .3rem;
  transition: background .2s, color .2s;
}

/* Highlight the current page */
.main-nav a.active,
.main-nav a:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* 3️⃣ Hero / tagline (optional) */
.hero {
  text-align: center;
  margin-top: 2rem;
  padding: 0 1rem;
}

.tagline {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--txt-muted);
}

/* 4️⃣ Footer – keep it tiny and centered */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: var(--bg-secondary);
  color: var(--txt-muted);
  margin-top: 3rem;
}

/* 5️⃣ Ensure the whole page uses the same background */
body {
  background: var(--bg-primary);
  color: var(--txt-primary);
}

/* 6️⃣ Smooth transition when toggling dark mode */
html {
  transition: background-color .3s ease, color .3s ease;
}