/* ================================================
   Sofía Abud — Music Stylesheet
   ================================================ */

/* --- Music Page Title (mobile only, same pattern as photo/cine) --- */
.music-page-title {
  display: none;
  font-family: 'Gambetta', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: none;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--accent-color-secondary);
}


/* --- Audio Track List --- */
.music-tracks {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.track-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #eeeeee;
}

.track-item:first-child {
  border-top: 1px solid #eeeeee;
}

.track-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: none;
  color: #1a1a1a;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Custom Audio Player Styling --- */
.track-item audio {
  flex: 1;
  max-width: 500px;
  height: 36px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.track-item audio:hover,
.track-item audio:focus {
  opacity: 1;
}

/* --- Responsive — Mobile --- */
@media (max-width: 768px) {
  .music-page-title {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
  }

  .track-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 0;
  }

  .track-item audio {
    width: 100%;
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .page-text {
    font-size: 1.1rem;
    font-weight: 500;
  }
}