/*
 * =====================================================
 * CUSTOM DESIGN
 * Header, Footer, Logo und eigene Designanpassungen.
 * Diese Datei kann künftig frei geändert werden.
 * =====================================================
 */

.planer-kopf {
    display:flex;
    align-items:center;
    gap:18px;
    background:#fff;
    padding:8px 20px;
    margin:-24px -24px 0 -24px;
}
.header-logo-area {
    width:220px;
    min-width:220px;
    height:110px;
    display:flex;
    align-items:center;
}
.header-logo {
    max-width:217px;
    max-height:108px;
}
.planer-kopf-titel {
    font-size:32px;
    font-weight:bold;
    color:#222;
}
.header-gelber-streifen {
    height:10px;
    background:#FFCE00;
    margin:0 -24px 5px -24px;
}

.planer-footer {
    background: #FFCE00;
    border: 1px solid #e0b400;
    border-radius: 14px 14px 0 0;
    padding: 18px 20px;
    margin: 24px -24px -24px -24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.footer-box {
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.16);
    border-radius: 12px;
    padding: 12px 14px;
    min-height: 90px;
}
.footer-box h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
}
.footer-box p {
    margin: 0;
    line-height: 1.45;
}
.footer-box a {
    color: #111;
    font-weight: bold;
    text-decoration: underline;
}

.aktionshinweis {
    background: #fff3cd;
    border: 2px solid #ffc107;
    color: #856404;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    font-weight: bold;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
