/* Nunito Variable Fonts (offline) */
@font-face {
    font-family: "Nunito";
    src: url("../fonts/nunito/Nunito-VariableFont_wght.ttf") format("truetype-variations");
    font-weight: 200 900;
    font-style: normal;
}
@font-face {
    font-family: "Nunito";
    src: url("../fonts/nunito/Nunito-Italic-VariableFont_wght.ttf") format("truetype-variations");
    font-weight: 200 900;
    font-style: italic;
}

/* Farben */
:root {
    --wk-primary: #892d2e;
    --wk-text: #333333;
}

/* Grundlayout */
body {
    font-family: "Nunito", system-ui, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    background: #faf7f4;
    color: var(--wk-text);
}

.page-wrapper {
    padding: 3rem 1.5rem;
}

/* Card minimalistisch */
.brand-card {
    background: #ffffff;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

/* Header mit PNG-Bild */
.brand-header {
    position: relative;
    min-height: 480px;
    background: url("../media/images/kigaheadertop_1.png") center/cover no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: 4px 4px 0 0;
}

/* helles Overlay, damit Text lesbar bleibt, aber Bild sichtbar bleibt */
.brand-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(255,255,255,0.6),
            rgba(255,255,255,0.3)
    );
    border-radius: 4px 4px 0 0;
}

.brand-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Titel unten mit wk-primary-Farbe */
.brand-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--wk-primary);
}

.brand-subtitle {
    font-size: 1.1rem;
    color: var(--wk-primary);
    opacity: 0.95;
    margin-top: 0.25rem;
}

/* Intro */
.maintenance-intro {
    padding: 2.3rem 1.25rem 1.5rem;
}

.maintenance-intro h1 {
    font-size: 1.9rem;
    color: var(--wk-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Sections */
.info-section {
    padding: 1rem 1.25rem 2.5rem;
}

/* Größere Section-Titel */
.info-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--wk-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Karten mit mehr Abstand und kleinen Rundungen, heller Rahmen */
.info-card {
    background: #ffffff;
    border: 1px solid #f2f2f2;
    padding: 1.2rem 1.3rem;
    border-radius: 4px;
    margin-bottom: 4rem;
}

.info-label {
    font-weight: 700;
    margin-bottom: 0.4rem;
}

/* Größere Fließtext-Schrift */
.info-text {
    font-size: 1.2rem;
    margin: 0 0 0.4rem 0;
}

/* Footer */
.footer-note {
    padding: 1.4rem;
    text-align: center;
    font-size: 1rem;
    color: #555555;
    border-top: 1px solid #f0f0f0;
}

/* Links */
a {
    color: var(--wk-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
