/* Header styles für Gastgeb & Partner */
.header-gastgeb {
    width: 100%;
    margin-bottom: 0;
    font-family: inherit;
    background: #0C396F;
    height: 200px;
}
.header-gastgeb .header-bg {
    background: url('/img/header-bg.jpg') center center/cover no-repeat;
    min-height: 140px;
    width: 100%;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-gastgeb .header-content {
    min-height: 140px;
}
.header-gastgeb .header-logo img {
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.header-gastgeb .header-title {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 50px;
}
.header-gastgeb .header-subtitle {
    font-size: 1.1rem;
    color: #e0e0e0;
}
.header-gastgeb .header-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    margin-left: 18px;
    transition: color 0.2s;
}
.header-gastgeb .header-nav .nav-link:hover {
    color: #0078d7;
}
@media (max-width: 767px) {
    .header-gastgeb .header-content {
        flex-direction: column;
        align-items: flex-start;
        min-height: 100px;
    }
    .header-gastgeb .header-nav {
        margin-top: 12px;
    }
    .header-gastgeb .header-logo img {
        height: 40px;
    }
}
