/* ═══════════════════════════════════════════════════════════
   BBC Suite — Single Event Template (Enhanced)
   ═══════════════════════════════════════════════════════════ */

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

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

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

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

.bbc-et-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-et-hero:hover .bbc-et-hero-bg {
    transform: scale(1.03);
}

/* Noise grain */
.bbc-et-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.035'/%3E%3C/svg%3E");
    background-size: 300px;
    mix-blend-mode: overlay;
}

/* Multi-stop gradient: darker overlay */
.bbc-et-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)  20%,
            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) 60%
        );
}



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

/* Date badge */
.bbc-et-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.1);
    width: 58px;
}
.bbc-et-badge-mon {
    background: var(--et-red);
    color: #fff;
    font-family: var(--et-font-d);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    padding: 6px 0 4px;
    width: 100%;
    text-align: center;
    line-height: 1;
    text-transform: uppercase;
}
.bbc-et-badge-day {
    background: #ffffff;
    color: #111;
    font-family: var(--et-font-d);
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    padding: 7px 0;
    width: 100%;
    text-align: center;
}

/* Title */
.bbc-et-title {
    font-family: var(--et-font-d);
    font-size: 90px;
    font-weight: 900;
    font-style: italic;
    line-height: 0.9;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 28px;
    text-shadow: 0 4px 60px rgba(0,0,0,0.9);
}

/* Meta row */
.bbc-et-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    align-items: center;
}
.bbc-et-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
    background: rgba(0,0,0,0.4);
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
}
.bbc-et-meta-item svg {
    opacity: 0.65;
    flex-shrink: 0;
}

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

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

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

/* Left column */
.bbc-et-col-main {
    min-width: 0;
}

/* Right column — sticky image */
.bbc-et-col-side {
    position: sticky;
    top: 32px;
}
.bbc-et-side-image {
    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-et-side-image img {
    display: block;
    width: 100%;
    height: auto;
}

.bbc-et-description {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.6);
    margin-bottom: 40px;
}
.bbc-et-description p { margin: 0 0 1em; }
.bbc-et-description p:last-child { margin: 0; }

/* ══════════════════════════════════════════
   LINE-UP
══════════════════════════════════════════ */
.bbc-et-lineup { margin-top: 0; }

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

/* Band cards */
.bbc-et-lineup-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

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

/* Photo */
.bbc-et-band-photo {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    background-image: var(--band-img, none);
    background-size: cover;
    background-position: center;
    background-color: #1e1e1e;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bbc-et-band-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, rgba(22,22,22,0.85));
}
.bbc-et-band-initial {
    font-family: var(--et-font-d);
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
    line-height: 1;
}

/* Info */
.bbc-et-band-info {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.bbc-et-band-name {
    font-family: var(--et-font-d);
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.18s;
}
.bbc-et-band-card:hover .bbc-et-band-name { color: #fff; }

.bbc-et-band-genre {
    font-size: 0.72rem;
    color: var(--et-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 1px;
}
.bbc-et-band-time {
    font-family: var(--et-font-d);
    font-size: 1rem;
    font-weight: 600;
    color: var(--et-red);
    letter-spacing: 0.04em;
    margin-top: 6px;
}

/* Arrow */
.bbc-et-band-arrow {
    display: flex;
    align-items: center;
    padding: 0 22px 0 10px;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.15);
    transition: color 0.18s, transform 0.18s;
    flex-shrink: 0;
}
.bbc-et-band-card:hover .bbc-et-band-arrow {
    color: var(--et-red);
    transform: translateX(5px);
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 900px) {
    .bbc-et-layout {
        grid-template-columns: 1fr;
    }
    .bbc-et-col-side {
        position: static;
        order: -1;
    }
    .bbc-et-side-image {
        max-width: 560px;
    }
}
@media (max-width: 768px) {
    .bbc-et-hero { min-height: 420px; }
    .bbc-et-hero-inner { padding: 80px 24px 44px; }
    .bbc-et-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
    .bbc-et-container { padding: 0 20px; }
    .bbc-et-body { padding: 40px 0 56px; }
    .bbc-et-description { font-size: 0.98rem; }
    .bbc-et-band-photo { width: 76px; height: 76px; }
    .bbc-et-band-name { font-size: 1.25rem; }
    .bbc-et-lineup-label { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .bbc-et-hero { min-height: 340px; }
    .bbc-et-hero-inner { padding: 60px 16px 36px; }
    .bbc-et-title { font-size: clamp(2rem, 10vw, 3rem); }
    .bbc-et-meta-item { font-size: 0.8rem; padding: 4px 10px; }
    .bbc-et-band-arrow { display: none; }
    .bbc-et-band-info { padding: 12px 14px; }
    .bbc-et-band-time { font-size: 0.9rem; }
    .bbc-et-lineup-label { font-size: 1rem; }
}

/* Fallback description */
.bbc-et-description-soon {
    color: rgba(255,255,255,0.35);
    font-style: italic;
    margin: 0;
}
