:root{
    --sw-blue:#0b5fa6;
    --sw-green:#84b21b;
    --bg:#f6f3ee;
    --card:#ffffff;
    --line:#e6dfd5;
    --text:#132026;
    --muted:#5c6b70;
    --radius:18px;
    --shadow:0 12px 30px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family:"Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#123758;


}

.topbar{

    background-image: url("/assets/kids_pingu_header.jpg");
    background-size: 100% auto;
    backdrop-filter:saturate(1.2) blur(10px);
    border-bottom:1px solid rgba(230,223,213,.9);
    min-height: 200px;
}
.topbar-inner{
    max-width:980px;margin:0 auto;padding:10px 16px;
    display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:12px;min-width:240px}
.brand img{height:44px;width:auto;display:block}
.brand .t1{font-weight:800;letter-spacing:.01em}
.brand .t2{font-weight:600;color:var(--muted);font-size:12px;margin-top:2px}


.lang{display:flex;gap:8px;flex-wrap:wrap}
.lang a{
    padding:8px 10px;border:1px solid var(--line);border-radius:999px;background:#fff;
    text-decoration:none;color:var(--text);font-size:13px;font-weight:700;
}
.lang a.active{border-color:rgba(11,95,166,.35); box-shadow:0 0 0 4px rgba(11,95,166,.10)}

.wrap{max-width:980px;margin:0 auto;padding:0 16px}
main{padding:22px 0 80px}

.card{background:#e1e1e1;}
.pad{padding:18px}

h2{margin:0 0 10px;font-size:22px;line-height:1.2}
.sub{margin:6px 0 0;color:var(--muted);font-size:13px}
.grid{display:grid;gap:12px}

.q{padding:16px;display:grid;gap:10px;margin-bottom: 10px}
label.title{line-height:1.25}
.hint{color:var(--muted);font-size:13px}

input[type="text"]{
    width:100%;
    padding:12px;border:1px solid var(--line);
    font-size:15px;background:#fff;outline:none;
}
input[type="text"]:focus{
    border-color:rgba(11,95,166,.45);
    box-shadow:0 0 0 4px rgba(11,95,166,.10);
}
textarea{
    width:100%;
    padding:12px;border:1px solid var(--line);
    font-size:15px;min-height:96px;resize:vertical;background:#fff;outline:none;
}
textarea:focus{
    border-color:rgba(11,95,166,.45);
    box-shadow:0 0 0 4px rgba(11,95,166,.10);
}

/* Smileys 1–5 (1 = sehr gut, 5 = sehr schlecht) */

.gruen .filO{fill:#66cc00;}




.smileys{display:flex;justify-content:space-between;gap:10px}
.smileys input{display:none}
.smileys label{
    text-align:center;padding:12px 6px;border:1px solid var(--line);
    border-radius:16px;cursor:pointer;user-select:none;transition:all .12s ease;
    display:block;
    margin:0 auto 6px;
    width:47px;
    height:80px;
    object-fit:contain;
}
.smileys label small{display:none;}
.smileys label:hover small{
    /*display: flex;*/
    font-size:12px;color:var(--muted);
    opacity:.9
}
.smileys input:checked + label{
   /* border-color:rgba(11,95,166,.55);
    box-shadow:0 0 0 4px rgba(11,95,166,.12);
    */
    transform:translateY(-1px);
}

.smileys input:not(:checked){
     opacity: 0.4;
 }
.smileys label .img-active {
    display: none;
}

.smileys input:checked + label .img-active {

    transform: scale(1.5);
}
/* Stack-Container */
.smileys label .smiley-stack{
    position: relative;
    width: 47px;
    margin: 0 auto 6px;
}

/* beide Bilder exakt übereinander */
.smileys label .smiley-stack > img{

    inset: 0;
    margin: auto;
    display: block;
    transition: transform .15s ease, opacity .15s ease;
}

/* Active standardmäßig aus */
.smileys label .img-active{
    opacity: 0;
}

/* Hover nur auf das sichtbare Bild */
.smileys label:hover .img-normal{
    transform: scale(1.25);
}

/* Checked: Bildtausch */
.smileys input:checked + label .img-normal{
    display: none;
    opacity: 0;
    transform: scale(1);
}

.smileys input:checked + label .img-active{
    opacity: 1;
    transform: scale(1.5);
}

/* NPS chips 0–10 */
.chips{display:grid;grid-template-columns:repeat(11,minmax(0,1fr));gap:8px}
.chips input{display:none}
.chips label{
    text-align:center;padding:10px 0;border:1px solid var(--line);border-radius:14px;background:#fff;
    cursor:pointer;font-weight:800;
}
.chips input:checked + label{
    border-color:rgba(11,95,166,.55);
    box-shadow:0 0 0 4px rgba(11,95,166,.12);
}
.chips-hint{display:flex;justify-content:space-between;color:var(--muted);font-size:12px;margin-top:6px;font-weight:600}

/* Consent Checkbox Styling */
.consent{
    padding:12px;
    border:1px solid var(--line);
    background:#e1e1e1;
}

/* Label als Flex-Zeile */
.consent-label{
    display:flex;
    align-items:center;
    gap:12px;
    cursor:pointer;
    line-height:1.3;
}

/* echtes Checkbox-Input verstecken */
.consent-label input{
    position:absolute;
    opacity:0;
    pointer-events:none;
}

/* runde Checkbox */
.checkmark{
    width:22px;
    height:22px;
    border-radius:50%;
    border:2px solid var(--sw-blue);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    transition:all .15s ease;
    background:#fff;
}

/* Häkchen */
.checkmark::after{
    content:"";
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--sw-blue);
    transform:scale(0);
    transition:transform .15s ease;
}

/* checked-Zustand */
.consent-label input:checked + .checkmark::after{
    transform:scale(1);
}

/* Fokus (Tastatur!) */
.consent-label input:focus-visible + .checkmark{
    box-shadow:0 0 0 4px rgba(11,95,166,.2);
}

/* Text */
.consent-text{
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #123758;
}


.footerbar{
    display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap;
    padding:14px 16px;position:sticky;bottom:0;z-index:10;
    background:rgba(246,243,238,.80);border-top:1px solid rgba(230,223,213,.9);
    backdrop-filter:saturate(1.2) blur(10px);
}
.footerbar .status{color:var(--muted);font-size:13px;font-weight:600;}

.mb10{
    margin-bottom: 10px;
}

button{
    border:0;
    background: #e1e1e1;
    color:rgb(6, 71, 152);
    padding:12px 30px;
    font-weight:900;cursor:pointer;
    margin-top: 20px;
}
button:disabled{opacity:.6;cursor:not-allowed}

.hero-title{
    font-family: "astounder-squared-bb", sans-serif;
    font-weight: 700;
    font-size: 48px;
    font-style: italic; letter-spacing:.02em;
    text-transform:uppercase; /* optional – passt oft gut zu Display-Fonts */
    text-shadow: rgba(0, 0, 0, 0.15) 2px 2px 5px;
    color: rgb(6, 71, 152);
    outline-color: rgb(6, 71, 152);


}
@media (max-width:520px){
    .brand img{height:40px}
    h2{font-size:20px}
}
/* NPS Slider */
.nps-slider-wrap{
    display:grid;
    gap:10px;
}

.nps-scale{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:700;
    color:var(--muted);
}

.nps-scale strong{
    font-size:18px;
    color:var(--text);
}

/* Slider Grundstil */
input[type="range"]{
    -webkit-appearance:none;
    appearance:none;
    width:100%;
    height:30px;
   border-radius:999px;
    background:linear-gradient(
            90deg,
            #d32f2f 0%,
            #f9a825 50%,
            #2e7d32 100%
    );
    outline:none;
}

/* Thumb */
input[type="range"]::-webkit-slider-thumb{
    -webkit-appearance:none;
    appearance:none;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#fff;
    border:3px solid var(--sw-blue);
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

input[type="range"]::-moz-range-thumb{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#fff;
    border:3px solid var(--sw-blue);
    cursor:pointer;
    box-shadow:0 4px 10px rgba(0,0,0,.25);
}

.sw-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    border-bottom: 1px solid #e6dfd5;
    padding: 0 16px;
}

.sw-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.sw-logo img {
    height: 84px;
}

.sw-nav {
    display: flex;
    gap: 18px;
    font-weight: 600;
}

.sw-nav a {
    text-decoration: none;
    color: #064798;
    font-size: 15px;
}

.sw-nav a:hover {
    text-decoration: underline;
}

.sw-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile */

.sw-footer {

        position: relative;
        background: #064798;
        padding: 50px 16px 40px; /* oben extra Platz fürs Logo */
        margin-top: 60px;
        overflow: visible;


}

.sw-footer-inner {
    max-width: 980px;
    margin: 0 auto;
    display: block;
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
    font-size: 14px;

}



.sw-footer-inner a {
    color: #ffffff;
    padding: 20px 5px;
    text-decoration: none;
}

.sw-footer-inner a:hover {
    text-decoration: underline;
}
/* =========================
   Social Navigation – Spreewelten Style
========================= */

#navSocial ul{
    display:flex;
    align-items:center;

    margin:0;
    padding:0;
    list-style:none;
}

#navSocial li {
    display: inline-block;
    margin:0px;
    font-size: 1.5em;
}

#navSocial a{
    display:flex;
    align-items:center;
    gap:6px;

    font-family:'Montserrat', system-ui, sans-serif;
    font-size:20px;
    font-weight:600;

    color:#064798;
    text-decoration:none;
    white-space:nowrap;
}

#navSocial a:hover{
    text-decoration:underline;
}
#navSocial .icon + .label {
    display: none;
}

/*footer Social navigation */
#footerSocial{
    text-align: center;
}

#footerSocial ul{
    display:inline-block;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

#footerSocial li {
    display: inline-block;
    margin:0px;
    font-size: 1.5em;
}

#footerSocial a{
    display:flex;
    align-items:center;
    gap:6px;
    font-family:'Montserrat', system-ui, sans-serif;
    font-size:25px;
    font-weight:600;
    color:#ffffff;
    text-decoration:none;
    white-space:nowrap;
}

#footerSocial a:hover{
    text-decoration:underline;
}
#footerSocial .icon + .label {
    display: none;
}

.pingus{
    margin-bottom: 10px;
}


@media (max-width: 900px) {

    .sw-header-inner {
        position: relative;
    }
.topbar{
    background-size: 145% auto;
}
#npsValue{
    font-size: 0.7em;
}

    /* Social Nav mittig */
    #navSocial {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    #navSocial ul {
        justify-content: center;
        gap: 14px;
    }


    /* Hauptnavigation ausblenden (kommt per Toggle) */
    .sw-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100vw;           /* volle Breite */
        margin-left: calc(-50vw + 50%); /* sauber zentriert */
        flex-direction: column;
        align-items: center;    /* Menüpunkte mittig */
        background: white;
        display: none;
        padding: 20px 0;
        gap: 16px;
        border-top: 1px solid #e6dfd5; /* optional, kannst du auch rausnehmen */
    }

    .sw-nav.open {
        display: flex;
    }

    /* Hamburger rechts */
    .sw-nav-toggle {
        background: none;
        border: none;
        box-shadow: none;
        display: block;
        padding: 6px;
        font-size: 28px;
        margin-left: auto;
        z-index: 10;
        color:#878786;
        cursor: pointer;

    }
}

#logo-footer {

    position: absolute;
    left: 50%;
    transform: translate(-50%, -0%); /* horizontal + vertikal perfekt */
    z-index: 10;
    text-align: center;
}
#logo-footer img {
    height: 100px; /* oder was du brauchst */
    width: auto;
    display: block;

}

@media only screen and (max-width: 640px) {
    #footer li {
        display: block;
        padding: 5px 0;
    }
    #footer li a {
        display: block;
    }
    .topbar{
        background-size: 145% auto;
    }
    #npsValue{
        font-size: 0.7em;
    }
}

@media only screen and (min-width: 1061px) {

    #footer {
        padding-top: 5em;
    }
}

