﻿/* ==========================================================================
   BRETTHART-MUSIC.DE - GLOBAL MASTER RESPONSIVE BREAK (ANTI-SCROLLBAR)
   ========================================================================== */

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important; /* ⚡ DIE BRECHSTANGE: Schneidet jeglichen Überhang rechts gnadenlos ab */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Verhindert, dass das Haupt-Template der Seite ausbricht */
#content, .texas-wrapper-1200, .bretthart-wrapper-1200 {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - HIGH-OCTANE RUNNING TICKER
   ========================================================================== */

.bh-ticker-container {
    width: 100%;
    /*background-color: #ffb300 !important; /* Brachiales Bretthart-Gold */
    /*border-top: 3px solid #000000;*/
    /*border-bottom: 3px solid #000000;*/
    overflow: hidden;
    box-sizing: border-box;
}

.bh-ticker-wrap {
    width: 100%;
    padding: 10px 0;
}

/* ⚡ DIE SCHIENE: Bewegt den Text unendlich im Kreis */
.bh-ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: bhTickerAnimation 25s linear infinite; /* 25 Sekunden für einen Durchlauf */
}

/* Spezifische Text-Formate */
.bh-ticker-move span {
    font-family: 'Arial Black', sans-serif;
    font-size: 14px;
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
}

.ticker-alert {
    color: #ffffff; /* System-Meldung in Weiß */
    font-family: 'Courier New', monospace !important;
    letter-spacing: 1px;
    margin-right: 10px;
}

.ticker-content {
    color: #000000; /* Das Hot-Date in Tiefschwarz */
    letter-spacing: 0px;
}

.ticker-divider {
    color: #000000;
    margin: 0 30px;
}

/* ⚡ HOVER EFFEKT: Der Ticker hält an, wenn die Maus draufsteht */
.bh-ticker-container:hover .bh-ticker-move {
    animation-play-state: paused;
    cursor: pointer;
}

/* Die mathematische Bewegungs-Logik */
@keyframes bhTickerAnimation {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .bh-ticker-move span { font-size: 11px; }
    .bh-ticker-move { animation-duration: 18s; } /* Läuft auf kleinen Displays etwas zügiger */
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - XXL HEADLINER BANNER (MONUMENTAL STYLE)
   ========================================================================== */

.bh-slogan-banner-xxl {
    text-align: center;
    padding: 80px 20px 70px 20px; /* Mehr Wucht nach oben und unten */
    box-sizing: border-box;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff !important;
    border-bottom: 8px solid #000000; /* Noch dickerer Abschlussbalken */
    position: relative;
}

/* Oberer Stempel */
.bh-top-tag-system {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 5px;
}

.bh-top-tag-system .serial-num {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    color: #ffb300; /* Euer Gitarrengold */
}

.bh-top-tag-system .genre-tag {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #888888;
    letter-spacing: 5px; /* Weites Monospace-Gefühl */
    font-weight: bold;
}

/* ⚡ DER BRACHIALE 96PX TITEL */
.bh-mega-title-96 {
    font-family: 'Arial Black', sans-serif;
    
    /* ⚡ JETZT ABSOLUT EXPLOSIV: Nutzt den frisch geladenen Cargo-Font */
    font-family: 'Stencil', 'Impact', sans-serif; 
    
    font-size: 96px; /* 96 Monumentale Größe für den absoluten Fokus! */
    line-height: 0.8;
    color: #000000;
    margin: 10px 0 20px 0;
    letter-spacing: -6px; /* Schiebt die Buchstaben brutal eng zusammen */
    font-weight: 900;
    text-transform: uppercase;
}

/* ⚡ DAS NEUE WARNSTREIFEN-LIVE-BADGE */
.bh-hazard-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Arial Black', sans-serif;
    font-size: 25px; /* 14 Größere Schrift */
    padding: 6px 20px;
    font-weight: 900;
    letter-spacing: 3px;
    box-shadow: 6px 6px 0px #ffb300; /* Kräftiger Goldschatten */
    transform: skewX(-8deg); /* 🔧 Knallhart: Schneidet das Abzeichen asymmetrisch schräg an! */
}

.bh-hazard-live-badge .hazard-lines {
    color: #ffb300; /* Die Warnstriche glühen in Gold */
    font-family: 'Arial Black', sans-serif;
    letter-spacing: 0px;
}

.bh-hazard-live-badge .badge-text {
    transform: skewX(8deg); /* Richtet den inneren Text gerade auf, trotz schrägem Kasten */
}

.bh-heavy-divider {
    width: 140px; /* Breiterer Strich */
    height: 8px;  /* Dickeres Gold */
    background-color: #ffb300;
    margin: 35px auto 25px auto;
}

/* Die Slogan-Klammer unten */
.bh-slogan-bracket {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.bh-slogan-bracket .bracket-edge {
    font-family: 'Arial Black', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #ffb300;
    line-height: 1;
}

.bh-slogan-bracket .slogan-text {
    font-family: 'Courier New', monospace;
    font-size: 18px; /* Größerer Slogan-Text */
    color: #000000;
    font-weight: bold;
    letter-spacing: 2px;
}

/* 📱 SCHUTZ-BREMSE FÜR SMARTPHONES (Zwingt die Riesen-Schriften in die Knie) */
@media (max-width: 768px) {
    .bh-slogan-banner-xxl {
        padding: 50px 15px 45px 15px;
    }
    .bh-mega-title-96 {
        font-size: 52px !important; /* Verhindert das Ausbrechen auf Handys */
        letter-spacing: -3px !important;
        margin-bottom: 15px;
    }
    .bh-top-tag-system .genre-tag {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .bh-hazard-live-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    .bh-slogan-bracket .slogan-text {
        font-size: 13px;
        letter-spacing: 1px;
    }
    .bh-slogan-bracket .bracket-edge {
        font-size: 18px;
    }
}


/* ==========================================================================
   BRETTHART-MUSIC.DE - COLOR IMAGE SLIDER WITH HOVER ZOOM
   ========================================================================== */

.bh-gallery-title-wrapper {
    max-width: 1200px;
    margin: 40px auto 10px auto;
    text-align: left;
    width: 100%;
    padding-left:15px;
}

.bh-gallery-title-wrapper .gallery-tag {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #888888;
    letter-spacing: 2px;
}

.bh-gallery-title-wrapper h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 32px;
    color: #000000;
    margin: 5px 0 0 0;
    letter-spacing: -1px;
}

/* Der Wrapper sperrt den Slider auf 1200px ein */
.bh-img-slider-wrapper.no-scrollbar-force {
    width: 100% !important;
    max-width: 1200px !important;
    overflow-x: auto !important; /* Horizontale Achse aktivieren */
    overflow-y: hidden !important;
    padding: 20px 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important; /* Versteckt Schieber in Firefox */       
}

/* Versteckt den System-Schieber in Chrome/Safari */
.bh-img-slider-wrapper.no-scrollbar-force::-webkit-scrollbar {
    display: none !important;
    width: 0 !important; height: 0 !important;
}

/* Die endlose Reihe */
.bh-img-slider-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 15px;
    padding-right: 30px !important; /* Puffer, damit der letzte Schatten nicht abschneidet */
    width: max-content;
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - 100% PERFECT EDGE-TO-EDGE 2-COLUMN SLIDER
   ========================================================================== */
.bh-slide-card {
    /* ⚡ DIE FIXIERUNG: Jede Karte ist exakt 552px breit. 
       Rechnung: 552px + 552px + 16px (gap) = 1120px. 
       Das füllt den Inhaltsrahmen eurer 1200px-Seite haarscharf aus! */
    width: 552px !important; 
    
    height: 380px; 
    border: 3px solid #000000;
    overflow: hidden; 
    box-sizing: border-box;
    background-color: #f9f9f9;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bh-img-slider-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    
    /* 🔧 ANPASSUNG: Lücke auf exakt 16px fixiert für die perfekte Rechnung */
    gap: 16px !important; 
    
    padding-right: 30px !important; 
    width: max-content;
}

/* Das vollfarbige Bild im Ruhezustand */
.bh-slide-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    transform: scale(1.0); 
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bh-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 0px #ffb300 !important;
}

.bh-slide-card:hover img {
    transform: scale(1.30) !important; 
}

/* 📱 AUTOMATISCHE HANDY-BREMSE */
@media (max-width: 768px) {
    .bh-slide-card {
        width: 290px !important; /* Bleibt handlich fürs Smartphone */
        height: 195px; 
    }
}
/* Die eckigen Amp-Buttons */
.slider-amp-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
    width: 100%;
}

.amp-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 12px 24px !important;
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 5px 5px 0px #000000;
    transition: all 0.15s ease-in-out;
    outline: none;
}

.amp-btn:hover {
    background-color: #ffb300 !important;
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000000;
}

.amp-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px #000000;
}

.slider-hint-text {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: bold;
    color: #bbb;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Mobil-Modus: Macht die Kacheln auf Handys etwas kompakter */
@media (max-width: 768px) {
    .bh-slide-card {
        width: 260px;
        height: 185px;
    }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - REBEL BIO DATA SHEET
   ========================================================================== */

.bh-bio-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    background-color: #ffffff !important;
    box-sizing: border-box;
}

/* Das moderne, zweispaltige Band-Raster */
.rock-headline-container.white-style .rock-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* Links schmaler Slogan, rechts die Story */
    gap: 40px;
    padding: 20px 40px;
    box-sizing: border-box;
    width: 100%;
}
.tech-header-band {
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
    text-align: left !important; /* Hält die Überschrift sauber linksbündig, aber eingerückt */
}

.rock-statement {
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
}

.band-highlight-name {
    font-family: 'Arial Black', sans-serif;
    font-size: 32px;
    line-height: 1.0;
    color: #000000;
    letter-spacing: -1.5px;
    font-weight: 900;
}

.sub-statement {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 11px;
    color: #888888;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.bh-gold-dash {
    width: 40px;
    height: 5px;
    background-color: #ffb300; /* Euer Gitarren-Gold */
    margin: 20px 0;
}

.sub-statement-family {
    font-family: 'Arial Black', sans-serif;
    color: #000000;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-top: auto; /* Schiebt die "Hart Family" elegant nach unten */
    padding-top: 20px;
}

/* Rechte Spalte: Textformatierung */
.tech-description {
    text-align: left;
    box-sizing: border-box;
}

.tech-description p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin: 0 0 20px 0;
}

.tech-description p:last-child {
    margin-bottom: 0;
}

.tech-description p strong {
    color: #000000;
    font-family: 'Arial Black', sans-serif;
    font-size: 95%;
}

/* Mobile Weiche für Smartphones */
@media (max-width: 799px) {
    .rock-headline-container.white-style .rock-grid {
        grid-template-columns: 1fr; /* Wird mobil sauber untereinander gestapelt */
        gap: 25px;
        padding: 10px 20px;
    }
    .band-highlight-name { font-size: 24px; text-align: center; }
    .sub-statement { text-align: center; }
    .bh-gold-dash { margin: 15px auto; }
    .sub-statement-family { text-align: center; margin-top: 10px; }
    .tech-description p { font-size: 14px; text-align: justify; }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - REBEL STAGE LINE-UP HUB (NO ACCORDION)
   ========================================================================== */

.bh-lineup-hub-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff !important;
    box-sizing: border-box;
}

.bh-lineup-container {
    display: grid;
    grid-template-columns: 0.5fr 1.5fr; /* Nav links schmal, Datenblatt rechts breit */
    gap: 30px;
    padding: 0 40px;
    box-sizing: border-box;
}

/* LINKE NAVIGATION (AMP-BUTTONS STACK) */
.bh-lineup-navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bh-nav-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important; /* Brachial eckig */
    padding: 15px 20px !important;
    font-family: 'Arial Black', sans-serif;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.15s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bh-nav-btn span {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: #888;
    font-weight: bold;
}

/* Active & Hover Zustand der Schaltzentrale */
.bh-nav-btn:hover,
.bh-nav-btn.active {
    background-color: #ffb300 !important; /* Glüht voll in Texas-Gold auf */
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}
.bh-nav-btn:hover span,
.bh-nav-btn.active span { color: #000000; }

/* RECHTE ANZEIGE-BOX */
.bh-lineup-display-case {
    background-color: #f9f9f9;
    border: 3px solid #000000;
    box-shadow: 6px 6px 0px rgba(0,0,0,0.05);
    position: relative;
    min-height: 400px;
}

/* Steuert das Ein- und Ausblenden der Profile */
.bh-profile-panel {
    display: none;
    padding: 30px;
    box-sizing: border-box;
}
.bh-profile-panel.active {
    display: block; /* Nur das aktive Profil wird gerendert */
}

/* ─── XXL FOTO-RASTER: MEHR PLATZ FÜR DIE BAND-BILDER ─── */

.bh-profile-grid {
    display: grid;
    /* 🔧 KORREKTUR: Das Verhältnis von 0.6fr auf 0.9fr erhöht. 
       Das Foto bekommt jetzt fast die Hälfte der gesamten Box-Breite! */
    grid-template-columns: 0.9fr 1.1fr; 
    gap: 35px;
    align-items: start;
}

/* Das Foto-Gehäuse */
.bh-profile-photo {
    border: 3px solid #000000;
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15); /* Etwas kräftigerer 3D-Balken */
    overflow: hidden;
    background-color: #ffffff;
}

/* Das Porträt-Bild selbst */
.bh-profile-photo img {
    width: 100%;
    height: auto;
    display: block;
    
    /* ⚡ DIE ANPASSUNG: Graustufen komplett entfernt (0%)! 
       Die Porträts strahlen ab der ersten Sekunde in ihren echten Live-Farben. */
    filter: grayscale(0%) contrast(100%) brightness(100%) !important;
    
    /* Ein hauchzarter Zoom beim Draufgehen bleibt als edles Feedback erhalten */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Kleines optisches Extra: Bild zoomt minimal rein, wenn man über das Datenblatt streift */
.bh-profile-panel:hover .bh-profile-photo img {
    transform: scale(1.03);
}

/* Spezifikationen */
.bh-profile-specs {
    text-align: left;
    display: flex;
    flex-direction: column;
}
.bh-profile-specs h3 { font-family: 'Arial Black', sans-serif; font-size: 26px; color: #000; margin: 0 0 2px 0; letter-spacing: -1.5px; }
.bh-role-tag { font-family: 'Courier New', monospace; font-weight: bold; font-size: 11px; color: #ffb300; letter-spacing: 1.5px; margin-bottom: 12px; }
.bh-quote { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13.5px; font-style: italic; color: #555; margin: 0 0 15px 0; border-left: 3px solid #000; padding-left: 10px; }

/* Das Datenblatt-Verzeichnis */
.bh-spec-table { width: 100%; border-collapse: collapse; margin-bottom: 15px; }
.bh-spec-table td { padding: 6px 0; font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 13.5px; line-height: 1.4; color: #333; border-bottom: 1px dashed #eee; vertical-align: top; }
.bh-spec-table tr:last-child td { border-bottom: none; }
.bh-spec-table td.bh-label { font-family: 'Courier New', monospace; font-weight: bold; color: #000; width: 22%; padding-right: 10px; }
.bh-spec-table td strong { color: #ffb300; font-size: 95%; }
.bh-serial-stamp { font-family: 'Courier New', monospace; font-size: 10px; font-weight: bold; color: #bbb; text-align: right; margin-top: auto; }

/* MOBILE ANPASSUNG */
@media (max-width: 850px) {
    .bh-lineup-container { grid-template-columns: 1fr; padding: 0 20px; }
    .bh-profile-grid { grid-template-columns: 1fr; gap: 20px; }
    .bh-profile-photo { max-width: 200px; margin: 0 auto; }
    .bh-profile-specs h3 { text-align: center; font-size: 20px; }
    .bh-role-tag, .bh-quote { text-align: center; }
    .bh-quote { border-left: none; padding-left: 0; }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - ROAD & GIG TRACKER ARCHITECTURE
   ========================================================================== */

.bh-live-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff !important;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Die Tournee-Tabelle */
.bh-gig-table {
    width: 100%;
    border: 3px solid #000000;
    box-sizing: border-box;
    background-color: #ffffff;
}

.bh-gig-row {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}
.bh-gig-row:last-child { border-bottom: none; }

/* Hover: Zeile explodiert in Gitarren-Gold */
.bh-gig-row:hover {
    background-color: #ffb300 !important;
    cursor: default;
}

/* Linker Datumsblock */
.bh-date-box {
    min-width: 100px;
    border-right: 3px solid #000000;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding-right: 10px;
}
.bh-date-box .day {
    font-family: 'Arial Black', sans-serif;
    font-size: 28px;
    line-height: 1.0;
    color: #000000;
}
.bh-date-box .month {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #666666;
    margin-top: 3px;
}

/* Rechter Infoblock */
.bh-info-box {
    flex: 1;
    padding-left: 25px;
    text-align: left;
}
.bh-info-box h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 18px;
    color: #000000;
    margin: 0 0 2px 0;
    letter-spacing: -0.5px;
}
.bh-info-box .status-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #555555;
}

/* Rote Signalkante für Sontheim */
.bh-gig-row.highlight-gig {
    border-left: 8px solid #ff003c;
}

.bh-tour-footer {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #bbb;
    text-align: right;
    margin-top: 8px;
    letter-spacing: 1px;
}

/* ─── TICKET SLIDER FÜR DAS ARCHIV ─── */
.bh-archive-headline {
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: #888888;
    margin-top: 40px;
    text-transform: uppercase;
    text-align: left;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.bh-archive-slider-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 15px 0 25px 0;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}
.bh-archive-slider-wrapper::-webkit-scrollbar { height: 4px; }
.bh-archive-slider-wrapper::-webkit-scrollbar-track { background: #f1f1f1; }
.bh-archive-slider-wrapper::-webkit-scrollbar-thumb { background: #ffb300; }

.bh-archive-slider-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    padding-right: 25px !important;
    width: max-content;
}

.bh-archive-ticket {
    background-color: #ffffff;
    border: 2px solid #000000;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    box-shadow: 4px 4px 0px #000000;
    transition: all 0.2s ease-in-out;
}
.bh-archive-ticket:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
    box-shadow: 6px 6px 0px #000000;
}

.bh-archive-ticket .ticket-date {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 13px;
    color: #ffb300;
    border-right: 2px dashed #000000;
    padding-right: 12px;
    height: 100%;
    display: flex;
    align-items: center;
}
.bh-archive-ticket:hover .ticket-date { color: #000000; }

.ticket-info { display: flex; flex-direction: column; text-align: left; }
.ticket-info h4 { font-family: 'Arial Black', sans-serif; font-size: 13px; color: #000000; margin: 0; line-height: 1.2; }
.ticket-info .city { font-family: 'Helvetica Neue', Arial, sans-serif; font-size: 11px; color: #666666; margin-top: 1px; }

/* Mobile Weiche */
@media (max-width: 768px) {
    .bh-live-section { padding: 0 20px; }
    .bh-gig-row { flex-direction: column; gap: 10px; }
    .bh-date-box { border-right: none; border-bottom: 2px solid #000; width: 100%; flex-direction: row; justify-content: center; }
    .bh-info-box { padding-left: 0; text-align: center; }
    .bh-archive-ticket { padding: 8px 12px; }
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - FULL COLOR VIDEO SLIDER ARCHITECTURE
   ========================================================================== */

.bh-media-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff !important;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Das äußere Gehäuse sperrt die Videos ein und schaltet die Wisch-Achse frei */
.bh-media-slider-wrapper.no-scrollbar-force {
    width: 100% !important;
    max-width: 1200px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 20px 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.bh-media-slider-wrapper.no-scrollbar-force::-webkit-scrollbar {
    display: none !important;
    width: 0 !important; height: 0 !important;
}

/* Die Schiene hält die Videos in einer Reihe */
.bh-media-slider-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 15px;
    padding-right: 30px !important; /* Puffer für den letzten Schatten */
    width: max-content;
}

/* Die Video-Kachel (XXL Format passend zum Bilder-Slider) */
.video-card.responsive-card {
    width: 320px;  /* Symmetrische Breite für Videomaterial */
    height: 230px; /* Symmetrische Höhe */
    border: 3px solid #000000;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* ⚡ DIE ANPASSUNG: Bilder starten SOFORT vollfarbig und knackig hell */
    filter: grayscale(0%) contrast(100%) brightness(105%) !important;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Ein ganz zarter, dunkler Verlaufsschleier im Hintergrund für die Lesbarkeit */
.video-overlay-dark {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

/* Textinhalt über dem Overlay */
.video-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.video-card.responsive-card h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 16px;
    color: #ffffff !important; /* Weiße Schrift für perfekten Kontrast auf Bild */
    margin: 5px 0 2px 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
    text-align: left;
}

.video-album-spec {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #cccccc !important;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    text-align: left;
}

.video-status {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 11px;
    color: #ffb300 !important; /* Goldener Stempel */
    letter-spacing: 1.5px;
    text-align: left;
}

.video-meta {
    font-size: 13px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: block;
    margin-bottom: 20px;
    color: #ffb300 !important;
    text-align: left;
}

.video-play-btn {
    font-family: 'Arial Black', sans-serif;
    font-size: 12px;
    color: #ff003c; /* Signalrot */
    letter-spacing: 1px;
    text-align: left;
}

/* ⚡ INTERAKTIVER HOVER-EFFEKT: Karte springt vor und kriegt den goldenen Schatten */
.video-card-link:hover .video-card.responsive-card {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px #ffb300 !important; /* Goldener Rebel-Schatten */
    filter: brightness(115%) !important; /* Leuchtet bei Mausberührung leicht auf */
}

/* Technische Credits unter den Schaltern */
.bh-media-credits {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #bbb;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 40px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .bh-media-section { padding: 0 20px; }
    .video-card.responsive-card { width: 260px; height: 190px; }
    .bh-media-credits { font-size: 9px; }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - REBEL PASS HUB STYLE (ULTRA PLATZSPAREND)
   ========================================================================== */

.footer-rebel-pass-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Raum für die Schräglage der Karten */
    margin: 60px auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    box-sizing: border-box;
    overflow: visible;
}

.rebel-pass-link {
    text-decoration: none !important;
}

.rebel-pass-card {
    background-color: #f4f1ea !important; /* Vergilbtes Vintage-Ticket-Papier */
    border: 3px solid #111111;
    padding: 30px 25px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 190px;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ⚡ Der asymmetrische Rebel-Schnitt */
.link-left .rebel-pass-card { transform: rotate(-3deg); }
.link-right .rebel-pass-card { transform: rotate(2.5deg); }

/* Die typische Konzertkarten-Abreißkerbe oben */
.pass-notch-top {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 15px;
    background-color: #ffffff; /* Stanzt visuell ein Loch in den Rahmen */
    border-bottom: 3px solid #111111;
    border-left: 3px solid #111111;
    border-right: 3px solid #111111;
}

.pass-serial {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 11px;
    color: #888888;
    letter-spacing: 2px;
    text-align: left;
}

.rebel-pass-card h3 {
    font-family: 'Arial Black', sans-serif;
    font-size: 26px;
    line-height: 1.1;
    color: #111111;
    margin: 10px 0;
    letter-spacing: -1.5px;
    text-align: left;
}

.pass-action {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    font-weight: bold;
    color: #111111;
    border-bottom: 2px dashed #111111;
    width: max-content;
    padding-bottom: 2px;
    text-align: left;
}

.pass-stamp {
    position: absolute;
    right: 20px;
    top: 25px;
    font-family: 'Arial Black', sans-serif;
    font-size: 36px;
    color: rgba(0, 0, 0, 0.04);
    font-weight: 900;
    transform: rotate(-15deg);
    letter-spacing: -2px;
    pointer-events: none;
}

/* ⚡ INTERAKTIVER HOVER-EFFEKT: Die Karte schnappt gerade und glüht golden */
.rebel-pass-link:hover .rebel-pass-card {
    transform: rotate(0deg) scale(1.04) translateY(-5px);
    background-color: #ffb300 !important; /* Brachiales Gitarren-Gold */
    box-shadow: 15px 15px 0px #111111; /* Fetter schwarzer Schatten */
}

.rebel-pass-link:hover .pass-serial { color: #ffffff; }
.rebel-pass-link:hover .pass-action { color: #ffffff; border-bottom-color: #ffffff; }

/* Facebook-Stempel leuchtet beim Hovern auf knackige 25% Deckkraft auf */
.rebel-pass-link:hover .fb-pass .pass-stamp {
    color: rgba(24, 119, 242, 0.25) !important; 
}

/* Mobile Weiche für Smartphones */
@media (max-width: 768px) {
    .footer-rebel-pass-hub { grid-template-columns: 1fr; gap: 35px; margin: 40px auto; padding: 0 20px; }
    .rebel-pass-card { height: 170px; padding: 20px; }
    .link-left .rebel-pass-card { transform: rotate(-1.5deg); }
    .link-right .rebel-pass-card { transform: rotate(1.5deg); }
    .rebel-pass-card h3 { font-size: 22px; }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - BRAND MERCH CHASSIS (WHITE THEME)
   ========================================================================== */

.bh-merch-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #ffffff !important;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Das umschließende Gehäuse */
.bh-merch-plate {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* Foto links kompakter, Details rechts breiter */
    gap: 40px;
    background-color: #ffffff;
    border: 3px solid #000000;
    padding: 30px;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ⚡ INTERAKTIVER HOVER-EFFEKT: Box springt vor, Schatten wird Gold */
.bh-merch-plate:hover {
    transform: translateY(-4px);
    box-shadow: 12px 12px 0px #ffb300 !important; /* Brachialer goldener 3D-Balken */
}

/* Fotobox */
.merch-photo-box {
    border: 2px solid #000000;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.merch-photo-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.bh-merch-plate:hover .merch-photo-box img {
    transform: scale(1.03); /* Dezentes Pulsieren des T-Shirts bei Box-Hover */
}

.merch-photo-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ff003c; /* Signalrot */
    color: #ffffff;
    font-family: 'Arial Black', sans-serif;
    font-size: 9px;
    padding: 3px 8px;
    letter-spacing: 1px;
}

/* Detailsbox */
.merch-details-box {
    display: flex;
    flex-direction: column;
    text-align: left;
    box-sizing: border-box;
}

.merch-serial {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 11px;
    color: #888888;
    letter-spacing: 1.5px;
}

.merch-details-box h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 26px;
    color: #000000;
    margin: 5px 0 10px 0;
    letter-spacing: -1.5px;
}

.amp-line-black-short {
    width: 60px;
    height: 4px;
    background-color: #000000;
    margin-bottom: 20px;
}

/* Die strukturierte Größen-Matrix */
.merch-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
}

.merch-spec-table td {
    padding: 8px 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    border-bottom: 1px dashed #eee;
}

.merch-spec-table tr:last-child td {
    border-bottom: none;
}

.merch-spec-table td.merch-label {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: #ffb300; /* Goldene Bezeichnungen */
    width: 25%;
}

/* ─── DER ECKIGE SHOP-BUTTON ─── */
.merch-action-area {
    width: 100%;
    text-align: left;
}

.bh-shop-btn {
    display: inline-block;
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important; /* Absolut eckig, kein Kreis! */
    border-radius: 0px !important;
    padding: 12px 28px !important;
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none !important;
    box-shadow: 5px 5px 0px #000000; /* Fetter Schaltschatten */
    transition: all 0.15s ease-in-out;
}

.bh-shop-btn:hover {
    background-color: #ffb300 !important; /* Wechselt explosiv zu Gold */
    transform: translate(-2px, -2px);
    box-shadow: 7px 7px 0px #000000;
}

.bh-shop-btn:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px #000000; /* Drückt sich haptisch rein wie ein Ampschalter */
}

/* Mobile Weiche für Smartphones */
@media (max-width: 799px) {
    .bh-live-section { padding: 0 20px; }
    .bh-merch-plate {
        grid-template-columns: 1fr; /* Stapelt Bild und Text untereinander */
        gap: 25px;
        padding: 20px;
    }
    .merch-photo-box {
        max-width: 240px;
        margin: 0 auto;
    }
    .merch-details-box h2 {
        font-size: 20px;
        text-align: center;
    }
    .merch-serial, .amp-line-black-short {
        margin-left: auto;
        margin-right: auto;
    }
    .merch-action-area {
        text-align: center; /* Zentriert den Button auf dem Smartphone-Display */
    }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - COMPACT FOOTER ARCHITECTURE
   ========================================================================== */

.bh-mega-footer {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    background-color: #ffffff !important;
    border-top: 6px solid #000000;
    box-sizing: border-box;
    padding: 40px 40px 20px 40px;
}

/* Die neue, zusammengefasste Booking-Kachel */
.bh-booking-card-compact {
    background-color: #f9f9f9;
    border: 3px solid #000000;
    padding: 25px;
    box-sizing: border-box;
    text-align: left;
    margin-bottom: 30px;
}

.bh-booking-card-compact h2 {
    font-family: 'Arial Black', sans-serif;
    font-size: 18px;
    color: #000000;
    margin: 0 0 2px 0;
    letter-spacing: -0.5px;
}

.bh-booking-meta {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #888888;
    margin-bottom: 20px;
}

/* Horizontaler Split für Frieder & Claus auf Desktop */
.bh-booking-split-row {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}

.bh-contact-unit {
    flex: 1;
    max-width: 400px;
}

/* Die zentrale, fette Mail-Zeile unten in der Karte */
.bh-booking-central-mail {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #dddddd;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    color: #000000;
}

.bh-booking-central-mail a {
    color: #000000 !important;
    font-weight: bold;
    border-bottom: 2px solid #ffb300;
    text-decoration: none;
    margin-left: 5px;
}

.bh-booking-central-mail a:hover {
    color: #ffb300 !important;
}

/* Mittlere Zone (Credits) */
.bh-footer-middle-zone {
    border-top: 3px dashed #000000;
    padding: 25px 0;
    box-sizing: border-box;
}

.bh-credits-box {
    text-align: left;
}

.bh-credits-tag {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #ffb300;
    letter-spacing: 1.5px;
}

.bh-credits-box p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #666666;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

/* Unterste Zeile (Rechtliches) */
.bh-footer-legal-bar {
    border-top: 1px solid #eeeeee;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.bh-copyright-text {
    font-family: 'Courier New', monospace;
    font-size: 11px;
    font-weight: bold;
    color: #999999;
}

.bh-legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.bh-legal-links li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 13px;
    color: #666666 !important;
    text-decoration: none;
}

.bh-legal-links li a:hover {
    color: #ffb300 !important;
}

/* 📱 Mobile Optimierung für Smartphones */
@media (max-width: 799px) {
    .bh-mega-footer { padding: 30px 20px 20px 20px; }
    .bh-booking-split-row { flex-direction: column; gap: 20px; }
    .bh-credits-box { text-align: center; }
    .bh-footer-legal-bar { flex-direction: column; gap: 15px; text-align: center; }
    .bh-legal-links { justify-content: center; }
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - ECKIGER PEDAL SCROLL-TO-TOP BUTTON
   ========================================================================== */

.bh-scrollicon-rebel {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 999999 !important; /* Sitzt immer über allen Elementen */
    
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important; /* Brachialer Industrie-Rahmen */
    border-radius: 0px !important;         /* Absolut eckig, kein Kreis! */
    padding: 10px 18px !important;
    
    font-family: 'Arial Black', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000000;       /* Fetter, flacher 3D-Schatten */
    
    display: none; /* Startet unsichtbar und wird per JS eingeblendet */
    transition: background-color 0.15s, transform 0.15s, box-shadow 0.15s;
    outline: none !important;
}

/* Das "UP"-Zeichen wird im Röhren-Look nach oben gedreht */
.bh-scrollicon-rebel span {
    display: inline-block;
    transform: rotate(-90deg); /* Dreht den Pfeil nach oben */
    font-weight: 900;
}

/* ⚡ HOVER: Schaltet brachial auf das Texas-Gold um */
.bh-scrollicon-rebel:hover,
.bh-scrollicon-rebel.is-hovered-top {
    background-color: #ffb300 !important;
    transform: translate(-2px, -2px); /* Schiebt sich dem Daumen/Maus entgegen */
    box-shadow: 6px 6px 0px #000000;  /* Schatten wird dicker */
}

/* Haptischer Klick-Druckeffekt */
.bh-scrollicon-rebel:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

/* Mobile Anpassung für Smartphones */
@media (max-width: 768px) {
    .bh-scrollicon-rebel {
        bottom: 20px !important;
        right: 20px !important;
        padding: 8px 14px !important;
        font-size: 11px;
    }
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - TRANSITION MENU ARCHITECTURE
   ========================================================================== */

/* ─── EDEL-MENÜ-SCHALTER (MIT MOBILER AUTOMATIK-BLENDE) ─── */
.bh-menu-trigger-card {
    position: fixed !important;
    top: 20px !important;
    left: 20px !important;
    z-index: 999998 !important;
    background-color: #ffffff !important;
    color: #000000 !important;
    border: 3px solid #000000 !important;
    border-radius: 0px !important;
    padding: 10px 18px !important;
    font-family: 'Arial Black', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 4px 4px 0px #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    
    /* ⚡ KORREKTUR: Ermöglicht ein seidenweiches Ein- und Ausblenden auf dem Handy */
    transition: background-color 0.15s, transform 0.15s, box-shadow 0.15s, opacity 0.3s ease, visibility 0.3s ease !important;
}

.bh-menu-trigger-card:hover {
    background-color: #ffb300 !important;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px #000000;
}

.bh-menu-trigger-card:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000;
}

/* ⚡ HILFSKLASSE FÜR MOBILGERÄTE: Wird vom JavaScript aktiv gesteuert */
.bh-menu-hidden-mobile {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important; /* Verhindert, dass man den unsichtbaren Button aus Versehen klickt */
}

@media (max-width: 768px) {
    .bh-menu-trigger-card {
        top: 15px !important;
        left: 15px !important;
        padding: 8px 14px !important;
        font-size: 12px;
    }
}

.bh-burger-icon { font-size: 20px; line-height: 1; }
.bh-burger-text { font-weight: 900; }

/* ─── DIE SCHIEBBARE REBEL-SIDENAV ─── */
.sidenav.bh-rebel-sidenav {
    height: 100% !important;
    width: 290px !important; /* 🔧 FIXIERT: Das Menü hat immer dieselbe, perfekte Breite */
    position: fixed !important;
    z-index: 999999 !important;
    top: 0;
    left: 0;
    background-color: #111111 !important;
    padding-top: 80px;
    box-sizing: border-box;
    
    /* Der fette goldene Rahmen liegt sicher auf der rechten Kante */
    border-right: 8px solid #ffb300 !important;
    
    /* ⚡ DIE ANPASSUNG: Wir schieben das komplette Menü um 300px nach LINKS aus dem Bildschirm! 
       Dadurch verschwindet der orangefarbene Streifen zu 100% hinter dem Monitor-Rand. */
    transform: translateX(-305px) !important;
    
    /* Weicher, ruckelfreier Schiebe-Effekt */
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* ⚡ AKTIV-ZUSTAND: Wenn diese Klasse per JS geladen wird, gleitet das Menü rein */
.sidenav.bh-rebel-sidenav.bh-is-open {
    transform: translateX(0) !important; /* Springt exakt an den linken Rand */
    box-shadow: 15px 0 30px rgba(0,0,0,0.3);
}

.bh-sidenav-links-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    gap: 8px;
}

/* Die Links im Menü */
.sidenav.bh-rebel-sidenav a {
    font-family: 'Arial Black', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 15px !important;
    text-align: left;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease-in-out;
}

.nav-serial { font-family: 'Courier New', monospace; font-size: 12px; color: #555555; font-weight: bold; }

.sidenav.bh-rebel-sidenav a:hover:not(.bh-close-rebel):not(.bh-nav-fb-btn) {
    background-color: #ffb300 !important;
    color: #000000 !important;
    border-color: #000000;
    transform: translateX(5px);
}

.sidenav.bh-rebel-sidenav a:hover .nav-serial { color: #000000; }

/* Das Schließen-X */
.sidenav .closebtn.bh-close-rebel {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 36px !important;
    color: #888888 !important;
    padding: 5px !important;
    line-height: 1;
    cursor: pointer;
}
.sidenav .closebtn.bh-close-rebel:hover { color: #ffb300 !important; }

/* Facebook Button */
.bh-nav-fb-btn {
    margin-top: 25px;
    background-color: rgba(24, 119, 242, 0.15) !important;
    border: 2px solid #1877f2 !important;
    color: #1877f2 !important;
    font-size: 12px !important;
    font-family: 'Courier New', monospace !important;
    font-weight: bold !important;
    justify-content: center;
}
.bh-nav-fb-btn:hover { background-color: #1877f2 !important; color: #ffffff !important; }

/* Mobile Anpassung: Macht das Menü auf dem Handy bildschirmfüllend */
@media (max-width: 480px) {
    .sidenav.bh-rebel-sidenav {
        width: 100% !important;
        transform: translateX(-105%) !important; /* Komplett aus dem Handyscreen schieben */
        border-right: none !important;
    }
    .sidenav.bh-rebel-sidenav.bh-is-open {
        transform: translateX(0) !important;
    }
}
/* ==========================================================================
   BRETTHART-MUSIC.DE - INTERACTIVE REBEL BANNER STAGE
   ========================================================================== */

.bh-banner-stage {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    background-color: #ffffff !important;
}

/* Die plakativen Rahmen-Kachel für das Riesen-Banner */
.bh-vinyl-banner-card {
    background-color: #ffffff;
    border: 4px solid #000000; /* Massiver, fetter Rahmen */
    padding: 15px 15px 30px 15px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    
    /* ⚡ Der ungezähmte Rock-Winkel: Startet leicht schräg aufgeklebt */
    transform: rotate(-1.5deg);
    
    /* Fetter, goldener 3D-Balkenschatten im Ruhezustand */
    box-shadow: 10px 10px 0px #ffb300;
    
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Der Backstage-Aufkleber oben rechts */
.bh-banner-tape-badge {
    position: absolute;
    top: -15px;
    right: 35px;
    background-color: #000000;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    font-size: 11px;
    padding: 5px 14px;
    border: 2px solid #ffb300;
    letter-spacing: 1px;
    z-index: 10;
}

/* Das eigentliche Banner-Bild */
.bh-vinyl-banner-card img {
    width: 100%;
    height: auto;
    border: 2px solid #000000;
    display: block;
    transition: transform 0.4s ease;
}

/* Die Unterzeile im Plakat */
.bh-banner-caption {
    font-family: 'Arial Black', sans-serif;
    font-size: 13px;
    color: #000000;
    margin-top: 15px;
    text-align: center;
    border-top: 2px dashed #000000; /* Typische Abreiß-Linie */
    padding-top: 12px;
    letter-spacing: 0.5px;
}

/* ⚡ INTERAKTIVER HOVER-EFFEKT: Zieht sich gerade und wechselt den Schatten */
.bh-vinyl-banner-card:hover {
    transform: rotate(0deg) scale(1.02); /* Zieht sich schnurgerade und zoomt ran */
    box-shadow: 16px 16px 0px #000000;   /* Schatten explodiert in tiefem Schwarz */
}

/* Mobile Weiche für Smartphones */
@media (max-width: 768px) {
    .bh-banner-stage {
        padding: 10px 20px;
        margin: 20px auto;
    }
    .bh-vinyl-banner-card {
        padding: 10px 10px 20px 10px;
        transform: rotate(-0.5deg); /* Weniger Drehung auf kleinen Handydisplays */
        box-shadow: 6px 6px 0px #ffb300;
    }
    .bh-banner-caption {
        font-size: 10px;
        padding-top: 8px;
    }
    .bh-banner-tape-badge {
        font-size: 9px;
        right: 15px;
        padding: 3px 8px;
    }
}



/* ... Hier endeten deine bisherigen Styles (z. B. der Mega-Footer oder der Up-Button) ... */

/* ==========================================================================
   BRETTHART-MUSIC.DE - ULTIMATIVER RESPONSIVE-FIX (ANTI-SCHIEBER)
   ========================================================================== */

/* ⚡ DIE TABLET- & LAPTOP-BREMSE: Greift sobald der Bildschirm schmaler als 1150px wird */
@media (max-width: 1150px) {
    
    .bretthart-wrapper-1200 {
        padding: 0 20px !important;
    }

    .bh-slide-card {
        width: 290px !important;  
        height: 200px !important; 
    }
    
    .bh-lineup-container {
        grid-template-columns: 1fr !important; 
        gap: 25px !important;
        padding: 0 10px !important;
    }
    
    .bh-profile-grid {
        grid-template-columns: 1fr !important; 
        gap: 20px !important;
    }
    
    .bh-profile-photo {
        max-width: 280px !important;
        margin: 0 auto !important; 
    }
    
    .bh-profile-specs h3, 
    .bh-role-tag, 
    .bh-quote {
        text-align: center !important;
    }
    
    .bh-quote {
        border-left: none !important;
        padding-left: 0 !important;
    }
    
    .bh-spec-table td.bh-label {
        width: 30% !important; 
    }

    .bh-gig-row {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    
    .bh-date-box {
        border-right: none !important;
        border-bottom: 2px solid #000000 !important;
        width: 100% !important;
        flex-direction: row !important;
        justify-content: center !important;
        padding-right: 0 !important;
        padding-bottom: 5px !important;
    }
    
    .bh-info-box {
        padding-left: 0 !important;
        text-align: center !important;
    }
        
    /* ==========================================================================
   BRETTHART-MUSIC.DE - MOBILE IMAGES SLIDER PADDING FIX
   ========================================================================== */


    /* Das äußere Gehäuse darf KEIN Padding bekommen, damit das Wischen flüssig bleibt */
    .bh-img-slider-wrapper.no-scrollbar-force {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    /* ⚡ DIE SCHIENEN-RETTUNG: Das Padding wird auf die innere Reihe gelegt! */
    .bh-img-slider-row {
        padding-left: 15px !important;  /* Start-Abstand für das erste Live-Bild links */
        padding-right: 15px !important; /* Puffer-Abstand nach dem letzten Live-Bild rechts */
        width: max-content !important;  /* Zwingt die Schiene, ihre volle Länge zu behalten */
    }   
}

    /* ==========================================================================
       BRETTHART - LIVE DATES MOBILE XXL FIXED (BIGGER FONTS & VERTICAL STRICH)
       ========================================================================== */
    
    .bh-gig-table {
        width: 100% !important;
        border: 3px solid #000000 !important;
        box-sizing: border-box !important;
        background-color: #ffffff !important;
        display: block !important;
    }

    .bh-gig-row {
        display: flex !important;
        flex-direction: row !important;      /* Starr nebeneinander in einer Reihe */
        align-items: center !important;      /* Zentriert das Datum vertikal zum Text */
        justify-content: flex-start !important;
        padding: 15px 15px !important;       /* Mehr Fleisch nach oben und unten */
        border-bottom: 1px solid #eeeeee !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    .bh-date-box {
        min-width: 90px !important;          /* 🔧 ERHÖHT: Mehr Platz für die größeren Zahlen links */
        max-width: 90px !important;
        
        /* Der felsenfeste senkrechte Trennstrich */
        border-right: 3px solid #000000 !important; 
        border-bottom: none !important;      /* Keine horizontale Linie */
        
        display: flex !important;
        flex-direction: column !important;   
        text-align: left !important;
        padding-right: 12px !important;
        padding-bottom: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    
    .bh-date-box .day {
        font-family: 'Arial Black', sans-serif !important;
        font-size: 28px !important;          /* 🔧 XXL FONTS: Vorher 22px – jetzt richtig wuchtig! */
        line-height: 1.0 !important;
        color: #000000 !important;
        font-weight: 900 !important;
    }
    
    .bh-date-box .month {
        font-family: 'Courier New', monospace !important;
        font-size: 11px !important;          /* 🔧 Größerer Monats-Stempel */
        font-weight: bold !important;
        color: #666666 !important;
        margin-top: 4px !important;
    }
    
    .bh-info-box {
        flex: 1 !important;
        padding-left: 20px !important;       /* Abstand nach dem senkrechten Strich */
        text-align: left !important;         /* Streng linksbündig wie bei WNO */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }

    .bh-info-box h3 {
        font-family: 'Arial Black', sans-serif !important;
        font-size: 16px !important;          /* 🔧 XXL FONTS: Vorher 13px – der Ort springt sofort ins Auge! */
        line-height: 1.2 !important;
        color: #000000 !important;
        margin: 0 0 4px 0 !important;
        font-weight: 900 !important;
        letter-spacing: -0.5px !important;
    }

    .bh-info-box .status-text {
        font-family: 'Helvetica Neue', Arial, sans-serif !important;
        font-size: 13px !important;          /* 🔧 Größere Uhrzeit/Zusatz-Info */
        color: #555555 !important;
        line-height: 1.2 !important;
    }

/* ⚡ ZUSÄTZLICHER SCHUTZ FÜR EXTREM KLEINE HANDYS */
@media (max-width: 480px) {
    .bh-main-title {
        font-size: 38px !important; 
        letter-spacing: -1px !important;
    }
    .bh-slide-card {
        width: 250px !important; 
        height: 175px !important;
    }
}

/* ==========================================================================
   BRETTHART-MUSIC.DE - 100% ISOLATED FULL COLOR VIDEO SEKTION
   ========================================================================== */

.bh-ONLY-video-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 40px;
    box-sizing: border-box;
    background-color: #ffffff !important;
}

.bh-ONLY-video-wrapper.no-scrollbar-force {
    width: 100% !important;
    max-width: 1200px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 20px 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none !important;
}

.bh-ONLY-video-wrapper.no-scrollbar-force::-webkit-scrollbar {
    display: none !important;
    width: 0 !important; height: 0 !important;
}

.bh-ONLY-video-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    gap: 16px;
    padding-right: 30px !important;
    width: max-content;
}

/* 📺 DIE SEPARATE VIDEO-KARTE */
.bh-ONLY-video-card {
    width: 320px !important;  
    height: 230px !important; 
    border: 3px solid #000000 !important;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(0%) contrast(105%) brightness(110%) !important; /* Vollfarbig */
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Weißer Schutzschleier für das White-Theme im Ruhezustand */
.bh-ONLY-video-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff !important;
    opacity: 0.7; /* 0.92*/
    z-index: 1;
    transition: all 0.3s ease;
}

.bh-ONLY-video-content {
    position: relative; z-index: 2; height: 100%; padding: 20px;
    display: flex; flex-direction: column; justify-content: space-between; box-sizing: border-box;
}

.bh-ONLY-video-content h3 { font-family: 'Arial Black', sans-serif; font-size: 16px; color: #000000 !important; margin: 5px 0 2px 0; line-height: 1.3; letter-spacing: -0.5px; text-align: left; transition: color 0.3s; }
.video-album-spec-rebel { font-family: 'Courier New', monospace; font-size: 11px; font-weight: bold; color: #888888 !important; letter-spacing: 0.5px; margin-bottom: 10px; text-align: left; transition: color 0.3s; }
.video-status-rebel { font-family: 'Courier New', monospace; font-weight: bold; font-size: 11px; color: #ffb300 !important; letter-spacing: 1.5px; text-align: left; }
.video-meta-rebel { font-size: 13px; font-family: 'Helvetica Neue', Arial, sans-serif; display: block; margin-bottom: 20px; color: #ffb300 !important; text-align: left; }
.video-play-btn-rebel { font-family: 'Arial Black', sans-serif; font-size: 12px; color: #ff003c !important; letter-spacing: 1px; text-align: left; }

/* ─── HOVER EFFEKT: REAGIERT AUF MAUSBERÜHRUNG ─── */
.video-card-link-rebel:hover .bh-ONLY-video-card {
    transform: translateY(-5px) !important;
    box-shadow: 10px 10px 0px #ffb300 !important; /* Goldener Schatten */
    filter: brightness(115%) !important;
}

.video-card-link-rebel:hover .bh-ONLY-video-overlay {
    background-color: #000000 !important; /* Invertiert zu Schwarz */
    opacity: 0.45 !important;
}

.video-card-link-rebel:hover h3 { color: #ffffff !important; }
.video-card-link-rebel:hover .video-album-spec-rebel { color: #ffffff !important; }
.video-card-link-rebel:hover .video-status-rebel { color: #ffffff !important; }
.video-card-link-rebel:hover .video-meta-rebel { color: #cccccc !important; }
.video-card-link-rebel:hover .video-play-btn-rebel { color: #ffb300 !important; }

/* ─── SEPARATE VIDEO BUTTONS ─── */
.bh-ONLY-video-controls {
    display: flex; justify-content: center; gap: 15px; margin-top: 20px; margin-bottom: 10px; width: 100%;
}

.bh-video-nav-btn {
    background-color: #ffffff !important; color: #000000 !important;
    border: 3px solid #000000 !important; border-radius: 0px !important;
    padding: 12px 24px !important; font-family: 'Arial Black', sans-serif; font-size: 13px;
    letter-spacing: 1px; cursor: pointer; box-shadow: 5px 5px 0px #000000;
    transition: all 0.15s ease-in-out; outline: none;
}
.bh-video-nav-btn:hover { background-color: #ffb300 !important; transform: translate(-2px, -2px); box-shadow: 7px 7px 0px #000000; }
.bh-video-nav-btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0px #000000; }

@media (max-width: 768px) {
    .bh-ONLY-video-section { padding: 0 20px; }
    .bh-ONLY-video-card { width: 260px !important; height: 190px !important; }
}

}
