/* ========================= */
/* Music Page Styles         */
/* ========================= */

/* Hero */
.music-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    padding-bottom: 4rem;
}
/* .music-hero .hero-content {
    padding: 3rem;
    border-radius: 2px;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
} */
.music-hero h1 { margin-bottom: 1rem; }
.music-hero .subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-style: italic;
}

/* Band Sections */
.band-section {
    padding: 6rem 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}
.band-section h2 { margin-bottom: 1rem; }
.band-description {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Album Grid */
.album-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.album-card {
    background: #111;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}
.album-card-wide {
    grid-column: span 2;
}
.album-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}
.album-card-wide .album-card-image {
    aspect-ratio: 2 / 1;
}
.album-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.9);
}
.album-card:hover .album-card-image img {
    transform: scale(1.05);
    filter: brightness(1);
}
.album-card-info {
    padding: 1.25rem;
}
.album-card-info h4 {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

/* Platform Links */
.platform-links {
    display: flex;
    gap: 0.6rem;
}
.platform-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}
.platform-links a:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}
.platform-links svg {
    width: 16px;
    height: 16px;
}

/* Responsive */
@media (max-width: 900px) {
    .album-grid { grid-template-columns: repeat(2, 1fr); }
    .album-card-wide { grid-column: span 1; }
    .album-card-wide .album-card-image { aspect-ratio: 1; }
}
@media (max-width: 600px) {
    .album-grid { grid-template-columns: 1fr; }
    .band-section { padding: 4rem 0; }
}
