/* =========================================
   Other Bands Page — Supplemental Styles
   Extends ../index.css
   ========================================= */

/* =========================================
   Page Title
   ========================================= */
.page-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-text);
    text-align: center;
    padding: 110px 24px 28px; /* top clears fixed header */
    background-color: #0a0a0a;
    margin: 0;
}

.page-title::after {
    content: '';
    display: block;
    width: 56px;
    height: 2px;
    background: var(--color-accent);
    margin: 14px auto 0;
}

/* =========================================
   Band Section
   ========================================= */
.band-section {
    position: relative;
    height: 65vh;
    min-height: 420px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark gradient overlay — heavier at edges, lighter in center */
.band-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(0,0,0,0.35) 0%,
            rgba(0,0,0,0.05) 35%,
            rgba(0,0,0,0.05) 55%,
            rgba(0,0,0,0.75) 100%);
    pointer-events: none;
}

/* =========================================
   Band Header — name & years on black bg
   ========================================= */
.band-header {
    background-color: #0a0a0a;
    padding: 24px 40px 20px;
}

.band-name {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--color-text);
    line-height: 1.1;
    margin: 0 0 6px;
}

.band-years {
    display: block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--color-accent);
    text-transform: uppercase;
}

/* =========================================
   Band Buttons — lower-centre over image
   ========================================= */
.band-btns {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background-color: #0a0a0a;
    padding: 24px 40px;
}

/* Base button — reuses listen-btn visual language */
.band-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid var(--color-accent);
    border-radius: 3px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition:
        background  var(--transition),
        transform   var(--transition-fast),
        box-shadow  var(--transition);
}

.band-btn:hover {
    background: rgba(201, 168, 76, 0.2);
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.3);
    transform: scale(1.04);
    color: var(--color-text);
}

/* Watch variant — red YouTube accent */
.band-btn--watch {
    border-color: rgba(255, 255, 255, 0.5);
}

.band-btn--watch:hover {
    border-color: #ff4444;
    background: rgba(255, 68, 68, 0.15);
    box-shadow: 0 0 24px rgba(255, 68, 68, 0.25);
}

/* =========================================
   Band Videos
   ========================================= */
.band-videos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #0a0a0a;
    padding: 0 40px 32px;
}

.band-video {
    flex: 1;
    aspect-ratio: 16 / 9;
}

.band-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* =========================================
   Responsive — Mobile (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
    .band-section {
        height: 55vh;
        min-height: 360px;
    }

    .band-header {
        padding: 20px 20px 16px;
    }

    .band-btn {
        padding: 11px 22px;
        font-size: 0.75rem;
    }

}

/* Switch buttons to column and videos to stack on small screens */
@media (max-width: 600px) {
    .band-btns {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
    }

    .band-videos {
        padding: 0 20px 24px;
    }
}

@media (max-width: 480px) {
    .band-section {
        height: 60vw;
        min-height: 340px;
    }

    .band-btn {
        padding: 9px 20px;
    }
}
