/**
 * Tour-Header & Basisschrift – abgestimmt auf die Eventübersicht (/events/)
 * Quelle: events/css/style.css (System-Font), events/css/index.css (.title-bar)
 */
:root {
    --tour-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --bs-font-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --bs-body-font-family: var(--tour-font-stack);
    --bs-heading-font-family: var(--tour-font-stack);
}

body {
    font-family: var(--tour-font-stack);
}

.bi,
i[class*="bi-"] {
    font-family: "bootstrap-icons" !important;
}

.fas,
.far,
.fab,
.fa,
i[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Top-Navigation wie /events (für Seiten ohne events/index.css) */
.tour-public-navbar.navbar {
    background: linear-gradient(180deg, #2b2b2b, #0f0f0f) !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0;
}

.tour-public-navbar .navbar-brand,
.tour-public-navbar .navbar-nav .nav-link {
    color: #fff !important;
}

.tour-public-navbar .navbar-brand img {
    height: 34px;
    width: auto;
    display: block;
}

.tour-public-navbar .navbar-brand {
    padding: 0;
    margin-right: 0.5rem;
}

.tour-public-navbar .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Wie events/css/index.css – kompakte Titelzeile */
.title-bar {
    width: 100%;
    padding: 0.45rem 0 !important;
    background: linear-gradient(135deg, #0077be 0%, #0056b3 100%);
    color: #fff;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
    margin-bottom: 1.5rem;
    font-family: var(--tour-font-stack) !important;
}

.title-bar .kicker,
.title-bar .event-title,
.title-bar .event-subtitle,
.title-bar .event-meta,
.title-bar .events-meta,
.title-bar .btn {
    font-family: var(--tour-font-stack) !important;
}

.title-bar .kicker {
    font-size: 1.05rem;
    letter-spacing: 0.18rem;
    font-weight: 400;
    opacity: 0.95;
    text-transform: uppercase;
    margin-bottom: 0.05rem;
}

/* !important: /events/css/style.css setzt .event-title { font-weight: 600 !important } – Tour-Header bleibt normal */
.title-bar h1,
.title-bar .event-title {
    font-size: 2.5rem;
    font-weight: 400 !important;
    margin-bottom: 0.05rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.title-bar .event-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.15rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: -0.01em;
    opacity: 0.9;
}

.title-bar .event-meta,
.title-bar .events-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    margin-top: 0.15rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .title-bar {
        padding: 0.5rem 0 !important;
    }

    .title-bar h1,
    .title-bar .event-title {
        font-size: 1.75rem;
        font-weight: 400 !important;
        margin-bottom: 0.05rem;
    }

    .title-bar .kicker {
        font-size: 0.8rem;
        margin-bottom: 0.05rem;
    }

    .title-bar .event-subtitle {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .title-bar .event-meta,
    .title-bar .events-meta {
        font-size: 0.9rem;
        margin-top: 0.1rem;
    }
}

@media (max-width: 480px) {
    .title-bar h1,
    .title-bar .event-title {
        font-size: 1.5rem;
        line-height: 1.1;
    }

    .title-bar .event-subtitle {
        font-size: 1rem;
        line-height: 1.2;
    }

    .title-bar .kicker {
        font-size: 0.8rem;
    }

    .title-bar .event-meta,
    .title-bar .events-meta {
        font-size: 0.8rem;
    }
}

@media (orientation: landscape) and (max-height: 480px) {
    .title-bar {
        padding: 1rem 0 !important;
    }

    .title-bar h1,
    .title-bar .event-title {
        font-size: 1.3rem !important;
        font-weight: 400 !important;
        margin-bottom: 0.25rem !important;
    }

    .title-bar .event-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 0.25rem !important;
    }

    .title-bar .kicker {
        font-size: 0.7rem !important;
        margin-bottom: 0.2rem !important;
    }

    .title-bar .event-meta,
    .title-bar .events-meta {
        font-size: 0.7rem !important;
    }
}

@media print {
    .tour-public-navbar {
        display: none !important;
    }

    .title-bar {
        background: #0077be !important;
        color: white !important;
        padding: 0.3rem 0 !important;
        margin-bottom: 0.5rem !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
