/* ═══════════════════════════════════════════════════════════════════════════
   BRAVO-ARCHIV — Schallfolien
   CSS für n_bravo_schallfolien.php
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --vinyl:      #B8860B;
    --vinyl-dk:   #8B6914;
    --vinyl-lt:   #D4A94E;
    --dark:       #1A1A1A;
    --dark2:      #212529;
    --blue:       #467999;
    --gray:       #848395;
    --cream:      #F5F2E9;
    --cream2:     #EDE9DC;
    --white:      #FFFFFF;
    --shadow:     0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg:  0 12px 48px rgba(0,0,0,0.18);
    --radius:     10px;
    --transition: 0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ─── BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Barlow', sans-serif;
    background-color: var(--cream);
    color: var(--dark2);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── UTILITY ─── */
.font-display { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.04em; }
.font-cond    { font-family: 'Barlow Condensed', sans-serif; }

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    background-color: var(--dark2) !important;
    padding: 0;
    height: 64px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    z-index: 1050;
}
.navbar-brand {
    display: flex; align-items: center; gap: 2px;
    text-decoration: none; white-space: nowrap;
}
.brand-bravo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 0.06em; }
.brand-dash  { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--vinyl); }
.brand-rest  { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; letter-spacing: 0.06em; }
.brand-tag   { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; color: #888; margin-left: 8px; letter-spacing: 0.12em; text-transform: uppercase; }

.nav-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.85rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #bbb !important; padding: 20px 14px !important;
    position: relative; transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: #fff !important; }
.nav-link.active::after {
    content: ''; position: absolute; bottom: 16px; left: 14px; right: 14px;
    height: 2px; background: var(--vinyl) !important; border-radius: 1px;
}

.dropdown-menu {
    background: var(--dark2); border: 1px solid #333; border-radius: 6px;
    margin-top: 0; padding: 6px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.dropdown-item {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: #bbb; padding: 8px 20px;
    transition: background 0.15s, color 0.15s;
}
.dropdown-item:hover { background: var(--vinyl) !important; color: #fff; }

.burger-btn { background: none; border: none; padding: 8px; color: #ccc; cursor: pointer; transition: color var(--transition); margin-left: 12px; }
.burger-btn:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════════
   OFFCANVAS — Akzentfarbe
   ═══════════════════════════════════════════════════════════════════════════ */
.oc-link:hover { border-left-color: var(--vinyl) !important; background: linear-gradient(90deg, rgba(184,134,11,0.18) 0%, rgba(184,134,11,0.03) 100%) !important; }
.oc-year:hover { background: var(--vinyl) !important; border-color: var(--vinyl) !important; box-shadow: 0 2px 12px rgba(184,134,11,0.3) !important; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
footer {
    background: var(--dark); color: #aaa; padding: 50px 0 30px;
    margin-top: 60px; font-size: 0.85rem;
}
.footer-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; color: #fff; letter-spacing: 0.08em; }
.footer-brand span { color: var(--vinyl); }
.footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; color: #777; letter-spacing: 0.06em; margin-top: 2px; }
.footer-col-heading { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.75rem; color: #fff; margin-bottom: 12px; }
.footer-nav { list-style: none; padding: 0; }
.footer-nav li { margin-bottom: 6px; }
.footer-nav a { color: #888; text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--vinyl); }
.footer-divider { border-color: #333; margin: 30px 0; }
.footer-copy { font-size: 0.75rem; color: #555; }

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

/* ═══════════════════════════════════════════════════════════════════════════
   PAGE — Scoped under .page-schallfolien
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.page-schallfolien .hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2010 60%, var(--vinyl-dk) 100%);
    padding: 56px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-schallfolien .hero-section::before {
    content: '◎';
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 9rem;
    color: rgba(201,162,39,0.06);
    pointer-events: none;
    line-height: 1;
}
.page-schallfolien .hero-section::after {
    content: '';
    position: absolute; right: 0; top: 0;
    width: 60%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(184,134,11,0.08) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-schallfolien .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}
.page-schallfolien .hero-title span { color: var(--vinyl-lt); }
.page-schallfolien .hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

/* ── Stat Pills ── */
.page-schallfolien .stat-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.page-schallfolien .stat-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 24px;
    text-align: center;
    min-width: 130px;
}
.page-schallfolien .stat-pill .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--vinyl-lt);
    letter-spacing: 0.04em;
    line-height: 1;
}
.page-schallfolien .stat-pill .stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* ── Info Card ── */
.page-schallfolien .info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 32px;
    border-top: 3px solid var(--vinyl);
    margin-bottom: 36px;
}
.page-schallfolien .info-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}
.page-schallfolien .info-card strong { color: var(--dark2); }

/* ── Section Heading (Year) ── */
.page-schallfolien .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--dark2);
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--vinyl);
    display: inline-block;
}
.page-schallfolien .heading-year {
    font-size: 2rem;
    color: var(--vinyl);
    margin-right: 8px;
}

/* ── Year Section ── */
.page-schallfolien .year-section {
    margin-top: 48px;
}

/* ── Cover Row (Heft + Disc) ── */
.page-schallfolien .cover-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.page-schallfolien .cover-item {
    text-align: center;
}
.page-schallfolien .cover-item img {
    max-height: 200px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.page-schallfolien .cover-item img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.page-schallfolien .cover-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark2);
    margin-top: 8px;
    letter-spacing: 0.04em;
}

/* ── Extras Row (Anleitungen / Vorschauen) ── */
.page-schallfolien .extras-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.page-schallfolien .extra-item {
    text-align: center;
}
.page-schallfolien .extra-item img {
    max-height: 120px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
}
.page-schallfolien .extra-item img:hover {
    transform: scale(1.06);
    box-shadow: var(--shadow);
}
.page-schallfolien .extra-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    color: #888;
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* ── Stars Grid ── */
.page-schallfolien .stars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}
.page-schallfolien .star-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.page-schallfolien .star-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.page-schallfolien .star-img-wrap {
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    background: var(--cream2);
}
.page-schallfolien .star-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.page-schallfolien .star-img-wrap img:hover {
    transform: scale(1.08);
}
.page-schallfolien .star-info {
    padding: 12px 14px 14px;
}
.page-schallfolien .star-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--dark2);
    letter-spacing: 0.03em;
    margin-bottom: 8px;
}
.page-schallfolien .star-info audio {
    width: 100%;
    height: 36px;
    border-radius: 18px;
}

/* ── Lightbox Modal ── */
.page-schallfolien .cover-modal .modal-content {
    background: var(--dark);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.page-schallfolien .cover-modal .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 300px;
}
.page-schallfolien .cover-modal .modal-body img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}
.page-schallfolien .cover-modal .modal-footer {
    background: var(--dark);
    border-top: 1px solid #333;
    padding: 12px 20px;
}
.page-schallfolien .cover-modal .modal-artist {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
}
.page-schallfolien .cover-modal .btn-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .page-schallfolien .stars-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 14px;
    }
    .page-schallfolien .cover-item img { max-height: 150px; }
    .page-schallfolien .extra-item img { max-height: 90px; }
    .page-schallfolien .stat-pill { min-width: 100px; padding: 10px 16px; }
    .page-schallfolien .stat-pill .stat-value { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .page-schallfolien .stars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .page-schallfolien .star-info { padding: 8px 10px 10px; }
    .page-schallfolien .star-name { font-size: 0.82rem; }
}

/* ─── SCROLL-TO-TOP ─── */
#scrollTopBtn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--teal-lt, #3abfbf);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background .2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
#scrollTopBtn svg { width: 22px; height: 22px; }
#scrollTopBtn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scrollTopBtn:hover { background: var(--teal, #2a9d9d); transform: translateY(-3px); }


