/* ═══════════════════════════════════════════════════════════
   BBC Suite — Single Band Template (Redesign)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,900&family=Barlow:wght@300;400;500&display=swap');

:root {
    --band-red:      #FF0000;
    --band-red-dim:  #aa0000;
    --band-black:    #080808;
    --band-dark:     #111111;
    --band-card:     #161616;
    --band-card-h:   #1c1c1c;
    --band-border:   rgba(255,255,255,0.07);
    --band-border-h: rgba(255,0,0,0.3);
    --band-muted:    rgba(255,255,255,0.4);
    --band-font-d:   'Barlow Condensed', sans-serif;
    --band-font-b:   'Barlow', sans-serif;
}

.bbc-band-wrap {
    background: var(--band-black);
    color: #e8e8e8;
    font-family: var(--band-font-b);
    width: 100%;
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.bbc-band-hero {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.bbc-band-hero-bg {
    position: absolute;
    inset: -10px;
    background-image: var(--hero-img, none);
    background-size: cover;
    background-position: center 20%;
    z-index: 0;
    transition: transform 10s ease;
}
.bbc-band-hero:hover .bbc-band-hero-bg {
    transform: scale(1.03);
}

.bbc-band-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-size: 300px;
    mix-blend-mode: overlay;
}

.bbc-band-hero-fade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(to bottom,
            rgba(8,8,8,0.6)   0%,
            rgba(8,8,8,0.45)  15%,
            rgba(8,8,8,0.8)   60%,
            rgba(8,8,8,0.98)  88%,
            #080808           100%
        ),
        linear-gradient(to right,
            rgba(8,8,8,0.85) 0%,
            rgba(8,8,8,0.25) 55%
        );
}

.bbc-band-hero-inner {
    position: relative;
    z-index: 5;
    padding: 120px 52px 56px;
    width: 100%;
    max-width: 1400px;
}

/* Genre tag */
.bbc-band-genre-tag {
    display: inline-block;
    background: var(--band-red);
    color: #fff;
    font-family: var(--band-font-d);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

/* Band name */
.bbc-band-wrap .bbc-band-hero .bbc-band-title {
    font-family: var(--band-font-d);
    font-size: 90px !important;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    text-shadow: 0 4px 60px rgba(0,0,0,0.9);
}

/* Hero meta (origin, formed) */
.bbc-band-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}
.bbc-band-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.04em;
}
.bbc-band-hero-meta-item svg { opacity: 0.6; flex-shrink: 0; }

/* Social icons */
.bbc-band-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.bbc-band-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bbc-band-social:hover {
    background: var(--band-red);
    border-color: var(--band-red);
    color: #fff;
}

/* ══════════════════════════════════════════
   BODY
══════════════════════════════════════════ */
.bbc-band-body {
    background: var(--band-black);
    padding: 52px 0 72px;
}

.bbc-band-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 36px;
}

/* Two-column layout */
.bbc-band-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: start;
    margin-bottom: 60px;
}

.bbc-band-col-main { min-width: 0; }

.bbc-band-col-side {
    position: sticky;
    top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Description */
.bbc-band-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.bbc-band-description p { margin: 0 0 1em; }
.bbc-band-description-soon { color: rgba(255,255,255,0.35); font-style: italic; margin: 0; }
.bbc-band-description p:last-child { margin: 0; }

/* Section header */
.bbc-band-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.bbc-band-section-label {
    font-family: var(--band-font-d);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--band-red);
    white-space: nowrap;
    flex-shrink: 0;
}
.bbc-band-section-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,0,0,0.45), rgba(255,255,255,0.04));
}

/* ── Show cards ── */
.bbc-band-show-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bbc-band-show-card {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    background: var(--band-card);
    border: 1px solid var(--band-border);
    border-radius: 6px;
    overflow: hidden;
    transition: background 0.18s, border-color 0.18s;
    position: relative;
    min-height: 76px;
}
.bbc-band-show-card:hover {
    background: var(--band-card-h);
    border-color: var(--band-border-h);
}
.bbc-band-show-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--band-red);
    opacity: 0;
    transition: opacity 0.18s;
}
.bbc-band-show-card:hover::before { opacity: 1; }

/* Date block */
.bbc-band-show-date {
    flex-shrink: 0;
    width: 58px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    border-right: 1px solid var(--band-border);
}
.bbc-band-show-mon {
    font-family: var(--band-font-d);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--band-red);
    text-transform: uppercase;
    line-height: 1;
}
.bbc-band-show-day {
    font-family: var(--band-font-d);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

/* Thumb */
.bbc-band-show-thumb {
    width: 76px;
    height: 76px;
    flex-shrink: 0;
    background-image: var(--show-img, none);
    background-size: cover;
    background-position: center;
    background-color: #1e1e1e;
}

/* Info */
.bbc-band-show-info {
    flex: 1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.bbc-band-show-title {
    font-family: var(--band-font-d);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
}
.bbc-band-show-meta {
    font-size: 0.75rem;
    color: var(--band-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.bbc-band-show-time {
    font-size: 0.9rem;
    color: var(--band-red);
    font-weight: 600;
    margin-top: 2px;
}
.bbc-band-show-arrow {
    padding: 0 18px 0 8px;
    font-size: 1.2rem;
    color: rgba(255,255,255,0.15);
    transition: color 0.18s, transform 0.18s;
    flex-shrink: 0;
}
.bbc-band-show-card:hover .bbc-band-show-arrow {
    color: var(--band-red);
    transform: translateX(4px);
}
.bbc-band-no-shows {
    color: var(--band-muted);
    font-style: italic;
    font-size: 0.95rem;
    margin: 0;
}

/* ── Side photo ── */
.bbc-band-side-photo {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}
.bbc-band-side-photo img {
    display: block;
    width: 100%;
    height: auto;
}

/* ── Info card ── */
.bbc-band-info-card {
    background: var(--band-card);
    border: 1px solid var(--band-border);
    border-radius: 8px;
    overflow: hidden;
}
.bbc-band-info-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--band-border);
}
.bbc-band-info-row:last-child { border-bottom: none; }
.bbc-band-info-row--col {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.bbc-band-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--band-muted);
    white-space: nowrap;
    flex-shrink: 0;
}
.bbc-band-info-val {
    font-size: 0.9rem;
    color: #e8e8e8;
    text-align: right;
    line-height: 1.5;
}
.bbc-band-info-link {
    color: var(--band-red);
    text-decoration: none;
    word-break: break-all;
}
.bbc-band-info-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.bbc-band-gallery-section { margin-top: 8px; }

.bbc-band-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
}
.bbc-band-gallery-item {
    display: block;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}
.bbc-band-gallery-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.bbc-band-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,0,0,0.0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0;
    transition: background 0.25s, opacity 0.25s;
}
.bbc-band-gallery-item:hover .bbc-band-gallery-img { transform: scale(1.06); }
.bbc-band-gallery-item:hover .bbc-band-gallery-overlay { background: rgba(255,0,0,0.35); opacity: 1; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .bbc-band-layout {
        grid-template-columns: 60% 40%;
        gap: 36px;
    }
}
@media (max-width: 860px) {
    .bbc-band-layout {
        grid-template-columns: 1fr;
    }
    .bbc-band-col-side {
        position: static;
        order: -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    .bbc-band-hero { min-height: 420px; }
    .bbc-band-hero-inner { padding: 80px 24px 44px; }
    .bbc-band-wrap .bbc-band-hero .bbc-band-title { font-size: clamp(2.8rem, 11vw, 4.5rem) !important; }
    .bbc-band-gallery { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .bbc-band-section-label { font-size: 1.1rem; }
}
@media (max-width: 560px) {
    .bbc-band-hero { min-height: 340px; }
    .bbc-band-hero-inner { padding: 60px 16px 36px; }
    .bbc-band-container { padding: 0 16px; }
    .bbc-band-col-side { grid-template-columns: 1fr; }
    .bbc-band-gallery { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .bbc-band-show-thumb { display: none; }
    .bbc-band-show-arrow { display: none; }
    .bbc-band-wrap .bbc-band-hero .bbc-band-title { font-size: clamp(2rem, 10vw, 3rem) !important; }
    .bbc-band-section-label { font-size: 1rem; }
}

/* ── Genres grid ── */
.bbc-band-genres-section { margin-top: 40px; }

.bbc-band-genres-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.bbc-band-genre-cell {
    background: var(--band-red);
    padding: 14px 18px;
    display: flex;
    align-items: center;
}

.bbc-band-genre-name {
    font-family: var(--band-font-d);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

@media (max-width: 560px) {
    .bbc-band-genres-grid { grid-template-columns: 1fr; }
}

/* ── YouTube embed ─────────────────────────────────────────── */
.bbc-band-youtube-section {
    margin-top: 48px;
}

.bbc-band-youtube-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 60px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.06);
}

.bbc-band-youtube-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
