/* ============================
   BAND INTRO / FEATURES WRAPPERS
   ============================ */
.band-intro-full,
.band-features-full {
    width: 100%;
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* ============================
   BAND INTRO SECTION
   ============================ */
.band-intro-inner {
    max-width: 1200px;      /* a bit wider so the paragraph doesn't wrap too early */
    margin: 0 auto;         /* center the whole block on the page */
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Title centered */
.band-intro-title {
    font-size: 2.4rem;
    font-family: 'Algerian';
    color: #c8a763;
    margin-bottom: 1rem;
    text-align: center;
    text-shadow:
        0 2px 4px rgba(0,0,0,0.45),
        0 4px 10px rgba(0,0,0,0.35);
}

/* Wrapper for paragraph + decorative lines */
.band-intro-text-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 0;
    max-width: 900px;          /* keeps the whole unit nicely centered under the title */
}

/* Decorative gold gradient lines */
.band-intro-line {
    flex: 0 0 80px;            /* fixed length so left/right are equal */
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(200,167,99,0),
        rgba(200,167,99,0.8),
        rgba(200,167,99,0)
    );
}

/* Paragraph: left-aligned on desktop, constrained width */
.band-intro-text {
    flex: 1;
    font-size: 1.4rem;
    line-height: 1.7;
    color: #e6e6e6;
    opacity: 0.95;
    font-family: sans-serif;
    text-align: left;
    margin: 0;
    text-shadow:
        0 1px 3px rgba(0,0,0,0.35),
        0 2px 6px rgba(0,0,0,0.25);
}

/* Tablet & down */
@media (max-width: 768px) {
    .band-intro-inner {
        max-width: 100%;
        padding: 0 1.5rem;
    }

    .band-intro-title {
        font-size: 2rem;
        text-align: center;
    }

    .band-intro-text-wrapper {
        display: block;       /* just the paragraph */
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .band-intro-line {
        display: none;        /* hide decorative lines on mobile */
    }

    .band-intro-text {
        font-size: 1.2rem;
        text-align: center;
        margin: 0 auto;
        max-width: 100%;
    }
}