/* ============================================================
   Startseite – Komplett optimiert, ohne Designänderung
   Fokus: Abstände, Luft, Lesbarkeit, Struktur
   ============================================================ */

/* Grundschrift */
body {
    line-height: 1.6;
    font-size: 18px;
    text-align: center;
}

/* Trennlinien */
.trennlinie-dick {
    margin: 1px auto;
    width: 100%;
    border: 0;
    border-top: 3px solid gray;
}

/* Überschrift */
.headline-kpcf {
    margin: 10px 0 20px 0;
    color: gray;
    text-shadow: 1px 1px 2px #FFFFFF;
    font-weight: bold;
}

/* Allgemeine Abstände */
.spacer-1 { margin: 10px 0; }
.spacer-2 { margin: 20px 0; }
.spacer-3 { margin: 30px 0; }

/* Leistungs-Liste */
.leistungen-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.leistung-item {
    margin: 12px 0;
    font-size: 18px;
}

.arrow-green,
.check-green {
    color: #00FF00;
    font-size: 110%;
    font-weight: bold;
}

/* Hinweis unter der Liste */
.leistungen-hinweis {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 25px;
    font-style: italic;
    font-size: 80%;
}

.emoji-wink,
.emoji-lock,
.emoji-smile {
    display: inline-block;
    line-height: 1;
}


/* Buttons */
.button {
    display: inline-block;
    padding: 3px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin: 12px 0;
    cursor: pointer;
}

/* Videos */
.videos {
    margin-top: 30px;
}

.video {
    border: 2px solid #ffffff;
    border-radius: 10px;
    margin: 10px;
}

.plakatstartseite {
    border-radius: 10px;
    margin: 15px 0;
}

/* Newsletter */
.newsletter {
    margin-top: 25px;
    margin-bottom: 10px;
}

.newsletter-link {
    color: #63B8FF;
    text-decoration: underline;
}

/* Info-Block */
.info-block {
    margin-top: 30px;
    margin-bottom: 30px;
}

.info-text {
    font-style: italic;
    line-height: 1.6;
}

.leistungen-ueberschrift {
    text-decoration: underline;
    margin: 20px 0 10px 0;
}

.emoji-smile {
    font-size: 22px;
}

.checkup-hinweis {
    font-size: 11px;
}

/* Footer */
.footer {
    margin-top: 30px;
    text-align: center;
}


/* ============================================================
   Mobile-Optimierung (ohne Designänderung)
   Greift nur unter 768px Bildschirmbreite
   ============================================================ */

@media (max-width: 768px) {

    body {
        font-size: 17px;
        line-height: 1.55;
        padding: 0 10px;
    }

    /* Überschrift */
    .headline-kpcf {
        font-size: 1.6rem;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    /* Leistungs-Liste */
    .leistungen-list {
        margin: 20px 0;
    }

    .leistung-item {
        margin: 10px 0;
        font-size: 17px;
    }

    /* Buttons */
    .button {
        display: block;
        width: 100%;
        max-width: 320px;
        margin: 12px auto;
        font-size: 17px;
        padding: 12px 16px;
    }

    /* Videos */
    .videos {
        margin-top: 20px;
    }

    .video {
        width: 100% !important;
        max-width: 350px;
        height: auto;
        margin: 12px auto;
    }

    .plakatstartseite {
        width: 100%;
        max-width: 350px;
        height: auto;
        margin: 15px auto;
    }

    /* Newsletter */
    .newsletter p {
        font-size: 17px;
        padding: 0 5px;
    }

    /* Info-Block */
    .info-block {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .info-text {
        font-size: 17px;
        padding: 0 5px;
    }

    .leistungen-ueberschrift {
        font-size: 1.3rem;
        margin-top: 20px;
    }

    /* Checkup-Bild */
    .imagezoomkarte {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    /* Footer */
    .footer {
        margin-top: 25px;
    }
}



