/* ==================================================
   HEADER CSS
   Zweck: 1200x500px Header mit Hintergrundbild und mittigem Text.
================================================== */

.site-header {
    position: relative;
    height: 500px;
    overflow: hidden;
    background-image: var(--page-header-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 169, 212, 0.5);
    z-index: 1;
}

.header-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.header-content {
    max-width: 900px;
}

.header-brand {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.header-content h1 {
    color: #ffffff;
}

.header-content h2 {
    margin-bottom: 0;
    color: #ffffff;
    font-weight: 700;
}
