/* ═══════════════════════════════════════════════════════════════════════════
   BRAVO-ARCHIV — Mobiles
   CSS für n_bravo_mobiles.php
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
    --teal:       #2A9D8F;
    --teal-dk:    #1E7A6E;
    --teal-lt:    #5EC4B6;
    --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(--teal); }
.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(--teal) !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(--teal) !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(--teal) !important; background: linear-gradient(90deg, rgba(42,157,143,0.18) 0%, rgba(42,157,143,0.03) 100%) !important; }
.oc-year:hover { background: var(--teal) !important; border-color: var(--teal) !important; box-shadow: 0 2px 12px rgba(42,157,143,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(--teal); }
.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(--teal); }
.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-mobiles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.page-mobiles .hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #102a28 60%, var(--teal-dk) 100%);
    padding: 56px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-mobiles .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-mobiles .hero-section::after {
    content: '';
    position: absolute; right: 0; top: 0;
    width: 60%; height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(42,157,143,0.08) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.page-mobiles .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-mobiles .hero-title span { color: var(--teal-lt); }
.page-mobiles .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-mobiles .stat-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}
.page-mobiles .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-mobiles .stat-pill .stat-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--teal-lt);
    letter-spacing: 0.04em;
    line-height: 1;
}
.page-mobiles .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-mobiles .info-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 28px 32px;
    border-top: 3px solid var(--teal);
    margin-bottom: 36px;
}
.page-mobiles .info-card p {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.7;
}
.page-mobiles .info-card strong { color: var(--dark2); }

/* ── Section Heading (Mobile Name) ── */
.page-mobiles .section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--dark2);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--teal);
    display: inline-block;
}
.page-mobiles .heading-icon {
    font-size: 1.6rem;
    margin-right: 8px;
    color: var(--teal);
}

/* ── Mobile Section ── */
.page-mobiles .mobile-section {
    margin-top: 56px;
}

/* ── Mobile Description ── */
.page-mobiles .mobile-desc {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 700px;
}

/* ── Sub Heading (Heftseiten, Anleitung, Bastelteile) ── */
.page-mobiles .sub-heading {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-dk);
    margin-top: 28px;
    margin-bottom: 14px;
}

/* ── Cover Row ── */
.page-mobiles .cover-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.page-mobiles .cover-item {
    text-align: center;
}
.page-mobiles .cover-item img {
    max-height: 260px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    image-rendering: auto;
}
.page-mobiles .cover-item img:hover {
    transform: scale(1.04);
    box-shadow: var(--shadow-lg);
}
.page-mobiles .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;
}

/* ── Gallery Row (Heftseiten, Anleitungen, Bastelteile) ── */
.page-mobiles .gallery-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.page-mobiles .gallery-item {
    text-align: center;
}
.page-mobiles .gallery-item img {
    max-height: 180px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    image-rendering: auto;
}
.page-mobiles .gallery-item img:hover {
    transform: scale(1.06);
    box-shadow: var(--shadow);
}
.page-mobiles .gallery-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    color: #888;
    margin-top: 6px;
    letter-spacing: 0.04em;
}

/* ── Lightbox Modal ── */
.page-mobiles .cover-modal .modal-content {
    background: var(--dark);
    border: none;
    border-radius: 12px;
    overflow: hidden;
}
.page-mobiles .cover-modal .modal-body {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    min-height: 300px;
}
.page-mobiles .cover-modal .modal-body img {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
}
.page-mobiles .cover-modal .modal-footer {
    background: var(--dark);
    border-top: 1px solid #333;
    padding: 12px 20px;
}
.page-mobiles .cover-modal .modal-artist {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
}
.page-mobiles .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-mobiles .gallery-row { gap: 10px; }
    .page-mobiles .gallery-item img { max-height: 130px; }
    .page-mobiles .cover-item img { max-height: 200px; }
    .page-mobiles .stat-pill { min-width: 100px; padding: 10px 16px; }
    .page-mobiles .stat-pill .stat-value { font-size: 1.4rem; }
}
@media (max-width: 480px) {
    .page-mobiles .gallery-item img { max-height: 100px; }
    .page-mobiles .cover-item img { max-height: 160px; }
    .page-mobiles .mobile-desc { font-size: 0.85rem; }
}

/* ─── 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); }


