/* ============================================================
   music.css — Styles for /music section
   Bahn Productions
   ============================================================ */

/* ── COLUMN LAYOUT ── */
.music-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
}

@media (max-width: 768px) {
    .music-columns {
        grid-template-columns: 1fr;
    }
}

.music-column {
    display: flex;
    flex-direction: column;
}

/* ── LOGO AREA — fixed height so both columns align after logos ── */
.music-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    margin-bottom: 1.5rem;
}

/* ── CLIENT/LABEL LOGOS — fixed height so media blocks align ── */
.music-clients {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    min-height: 80px;
    margin-top: -1.0rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.music-clients .anjuna-clients {
    margin-bottom: -0.5rem;
}

/* ── MAIN MEDIA — Spotify embed / album art ── */
.music-media {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ── HERO DESC CENTERING ── */
.music-hero-desc {
    max-width: 640px;
    margin: 0 auto;
}

/* ── COLUMN LOGO IMAGES ── */
.music-logo img {
    max-width: 260px;
    margin: 0 auto;
    display: block;
    opacity: 0.9;
}

.music-logo--small img {
    max-width: 220px;
}

/* ── COLUMN DESCRIPTIONS ── */
.music-desc {
    margin-bottom: 1.5rem;
}

/* ── SPOTIFY EMBED ── */
.music-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
}

.music-embed iframe {
    border-radius: 12px;
}

/* ── CTA WRAPPER ── */
.music-cta {
    text-align: center;
    margin-top: 1rem;
}

.music-cta .btn-outline {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
}

.music-cta .btn-outline svg {
    width: 14px;
    height: 14px;
    margin-right: 0.4rem;
    flex-shrink: 0;
}

/* ── CLIENT LOGO IMAGES ── */
.music-clients img {
    height: 60px;
    filter: brightness(0) invert(1);
}

/* ── THUNDERDOME ALBUM ART ── */
.thunderdome-link {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thunderdome-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.thunderdome-link img {
    width: 100%;
    display: block;
}

/* ── MUSICBED CTA (extra top spacing) ── */
.music-cta--bottom {
    margin-top: 1.5rem;
}

/* ── MOBILE AND TABLET STYLES ── */
@media (max-width: 1024px) {
    .music-clients {
        margin-top: -1.5rem !important;
        margin-bottom: 0.1rem;
    }
    
    .music-clients .mb-clients {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .music-logo .mb-logo {
        margin-bottom: -3rem !important;
    }
}