/* Late Night Band Showcase — Styling
   Bewusst ohne externe Web-Fonts (Google Fonts etc.), damit keine
   Drittanbieter-Verbindung entsteht und es DSGVO-technisch unkompliziert bleibt. */

.lnb-members-grid,
.lnb-video-wrap,
.lnb-socials-bar,
.lnb-showcase,
.lnb-gig,
.lnb-intro,
.lnb-gallery-wrap {
    --lnb-bg-card: #141416;
    --lnb-bg-card2: #1d1d20;
    --lnb-accent: #ff3b1f;
    --lnb-accent2: #ffb703;
    --lnb-text: #f5f5f5;
    --lnb-text-dim: #b8b8b8;
    --lnb-radius: 14px;
    box-sizing: border-box;
}
.lnb-members-grid *,
.lnb-video-wrap *,
.lnb-socials-bar *,
.lnb-showcase *,
.lnb-gig *,
.lnb-intro *,
.lnb-gallery-wrap * {
    box-sizing: border-box;
}

/* ---------- Mitglieder-Grid ---------- */
.lnb-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    margin: 30px 0;
    max-width: 100%;
}

.lnb-card {
    position: relative;
    min-width: 0;
    border-radius: var(--lnb-radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--lnb-bg-card2), var(--lnb-bg-card));
    aspect-ratio: 3 / 4;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .45);
    transition: transform .35s ease, box-shadow .35s ease;
    cursor: pointer;
    outline: none;
}

.lnb-card:hover,
.lnb-card:focus-visible,
.lnb-card.lnb-active {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(255, 59, 31, .35), 0 4px 10px rgba(0, 0, 0, .5);
}

.lnb-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.lnb-card-photo {
    position: absolute;
    inset: 0;
}

.lnb-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(75%) contrast(1.05) brightness(.85);
    transition: filter .4s ease, transform .5s ease;
}

.lnb-card:hover .lnb-card-photo img,
.lnb-card:focus-visible .lnb-card-photo img,
.lnb-card.lnb-active .lnb-card-photo img {
    filter: grayscale(0%) contrast(1.05) brightness(1);
    transform: scale(1.06);
}

.lnb-card-noimg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: radial-gradient(circle at 50% 30%, #2a2a2e, #111);
}

.lnb-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .5) 35%, rgba(0, 0, 0, 0) 65%);
    pointer-events: none;
}

.lnb-card-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px 18px;
    z-index: 2;
}

.lnb-card-name {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--lnb-text);
    line-height: 1.15;
}

.lnb-card-role {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--lnb-accent2);
}

.lnb-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(to top, rgba(10, 10, 10, .97) 10%, rgba(10, 10, 10, .85) 55%, rgba(10, 10, 10, 0) 100%);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.lnb-card:hover .lnb-card-overlay,
.lnb-card:focus-visible .lnb-card-overlay,
.lnb-card.lnb-active .lnb-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.lnb-card-bio {
    color: var(--lnb-text-dim);
    font-size: 13.5px;
    line-height: 1.5;
    margin: 0 0 14px;
}

.lnb-card-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lnb-icon-link {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--lnb-text);
    transition: background .25s ease, color .25s ease, transform .25s ease;
    text-decoration: none;
}

.lnb-icon-link svg {
    width: 16px;
    height: 16px;
}

.lnb-icon-link:hover {
    background: var(--lnb-accent);
    color: #fff;
    transform: translateY(-2px);
}

/* ---------- Video ---------- */
.lnb-video-wrap {
    max-width: 720px;
    margin: 30px auto;
}

.lnb-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: var(--lnb-radius);
    overflow: hidden;
    background: #000;
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
}

.lnb-video-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .75;
    transition: opacity .3s ease, transform .4s ease;
}

.lnb-video-trigger:hover img {
    opacity: .95;
    transform: scale(1.03);
}

.lnb-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lnb-accent), #c81e0f);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lnb-pulse 2.4s infinite;
}

.lnb-play-btn svg {
    width: 28px;
    height: 28px;
    color: #fff;
    margin-left: 4px;
}

@keyframes lnb-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 59, 31, .5); }
    70% { box-shadow: 0 0 0 22px rgba(255, 59, 31, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 59, 31, 0); }
}

.lnb-video-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    padding: 20px;
}

.lnb-video-modal.lnb-open {
    opacity: 1;
    visibility: visible;
}

.lnb-video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.lnb-video-iframe-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.lnb-video-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.lnb-video-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.lnb-video-close svg {
    width: 18px;
    height: 18px;
}

.lnb-video-close:hover {
    background: var(--lnb-accent);
}

/* ---------- Socials ---------- */
.lnb-socials-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0;
}

.lnb-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lnb-bg-card2), var(--lnb-bg-card));
    color: var(--lnb-text);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .04em;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lnb-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 59, 31, .3);
    border-color: var(--lnb-accent);
    color: #fff;
}

.lnb-social-icon {
    width: 18px;
    height: 18px;
    display: flex;
}

.lnb-social-icon svg {
    width: 100%;
    height: 100%;
}

/* ---------- Galerie ---------- */
.lnb-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
    margin: 30px 0;
    max-width: 100%;
}

.lnb-gallery-item {
    position: relative;
    display: block;
    min-width: 0;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--lnb-bg-card);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .4);
    transition: transform .35s ease, box-shadow .35s ease;
}

.lnb-gallery-item:hover,
.lnb-gallery-item:focus-visible {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(255, 59, 31, .35), 0 4px 10px rgba(0, 0, 0, .5);
}

.lnb-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(35%) brightness(.9);
    transition: transform .4s ease, filter .4s ease;
}

.lnb-gallery-item:hover img,
.lnb-gallery-item:focus-visible img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.lnb-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease;
    padding: 30px;
}

.lnb-lightbox.lnb-open {
    opacity: 1;
    visibility: visible;
}

.lnb-lightbox-img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .6);
}

.lnb-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.lnb-lightbox-close svg {
    width: 18px;
    height: 18px;
}

.lnb-lightbox-close:hover {
    background: var(--lnb-accent);
}

/* ---------- Bandbeschreibung ---------- */
.lnb-intro {
    max-width: 720px;
    margin: 20px 0 10px;
    font-size: 16px;
    line-height: 1.75;
    color: inherit;
}

.lnb-intro p {
    margin: 0 0 1em;
}

.lnb-intro p:last-child {
    margin-bottom: 0;
}

/* ---------- Nächster Auftritt ---------- */
.lnb-gig {
    display: flex;
    max-width: 640px;
    margin: 30px 0;
    border-radius: var(--lnb-radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--lnb-bg-card2), var(--lnb-bg-card));
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.lnb-gig-date {
    flex: 0 0 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--lnb-accent), #c81e0f);
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

.lnb-gig-day {
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
}

.lnb-gig-month {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
}

.lnb-gig-info {
    flex: 1;
    padding: 22px 26px;
    min-width: 0;
}

.lnb-gig-countdown {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lnb-accent2);
}

.lnb-gig-venue {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--lnb-text);
    line-height: 1.2;
}

.lnb-gig-meta,
.lnb-gig-address {
    margin: 0 0 4px;
    font-size: 14px;
    color: var(--lnb-text-dim);
}

.lnb-gig-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.lnb-gig-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    border-radius: 999px;
    background: var(--lnb-accent);
    color: #fff;
    font-weight: 700;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.lnb-gig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 59, 31, .4);
    color: #fff;
}

@media (max-width: 480px) {
    .lnb-gig {
        flex-direction: column;
    }
    .lnb-gig-date {
        flex-direction: row;
        gap: 10px;
        padding: 14px;
    }
    .lnb-gig-day {
        font-size: 28px;
    }
}

/* ---------- Showcase-Überschriften (erben Textfarbe vom Theme) ---------- */
.lnb-section-title {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: inherit;
    position: relative;
    display: inline-block;
    margin: 40px 0 6px;
    padding-bottom: 10px;
}

.lnb-section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--lnb-accent), var(--lnb-accent2));
    border-radius: 2px;
}

.lnb-empty {
    color: inherit;
    opacity: .7;
    font-style: italic;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
    .lnb-members-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 16px;
    }
    .lnb-card-name {
        font-size: 16px;
    }
    .lnb-play-btn {
        width: 58px;
        height: 58px;
    }
}
