:root {
    --primary-color: #336699; /* Helleres Blau */
    --secondary-color: #6699CC; /* Noch helleres Blau */
    --accent-color: #66CCCC; /* Eukalyptus */
    --light-gray: #F0F8FF; /* AliceBlue */
    --dark-gray: #333333; /* Dunkelgrau */
    --white-color: #FFFFFF; /* Weiß */
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.5;
    color: var(--dark-gray);
    margin: 0;
    padding: 0;
    background-color: var(--white-color);
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

h1, h2, h3, h4, h5, h6 {
    letter-spacing: 1px;
}

p {
    letter-spacing: 0.5px;
}

.hero {
    position: relative;
    background: url('../images/hero.png') center/cover no-repeat;
    color: var(--white-color);
    text-align: center;
    padding: 150px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden; /* Um sicherzustellen, dass der Overlay nicht überläuft */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Schwarzes Overlay mit 0.7 Transparenz */
    z-index: 1; /* Overlay über dem Hintergrundbild */
}

.hero__content {
    position: relative;
    z-index: 2; /* Inhalt über dem Overlay */
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero__cta {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.hero__cta:hover {
    background-color: var(--secondary-color);
}

/* Zitat Section */
.quote {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.quote__text {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.quote__author {
    font-size: 18px;
    color: var(--dark-gray);
}

/* Leistungen Section */
.leistungen {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.section__title {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.section__subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.leistungen__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.leistung {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 350px;
    text-align: center; /* Center align text */
}

.leistung__image {
    width: 100%;
    height: auto;
}

.leistung__title {
    font-size: 24px;
    margin: 20px;
    color: var(--accent-color);
}

.leistung__description {
    font-size: 16px;
    margin: 0 20px 20px;
    color: var(--dark-gray);
}

/* Systemische Beratung Section */
.systemic-counseling {
    background-color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
}

.systemic-counseling .section__title,
.systemic-counseling .section__subtitle {
    max-width: 800px;
    margin: 0 auto;
}

/* Über mich Section */
.about {
    background-color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
    overflow: hidden; /* Verhindert Überlaufen */
}

.about__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%; /* Verhindert Überlaufen */
}

.about__image {
    max-width: 500px;
    width: 100%; /* Bild passt sich der Containerbreite an */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about__text {
    max-width: 600px;
    text-align: left;
    flex: 1; /* Nimmt den verfügbaren Platz ein */
}

.about__bio {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.about__qualifications-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.about__qualifications-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.about__qualifications-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
}

.qualification__icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 10px;
}

/* Zertifikat Section */
.zertifikat {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.zertifikat__text {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.zertifikat__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.zertifikat__image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.zertifikat__text-container {
    max-width: 600px;
    width: 100%;
    text-align: left;
}


/* Honorar Section */
.honorar {
    background-color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
}

.honorar__text {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Allgemeine Informationen Section */
.informationen {
    background-color: var(--white-color);
    padding: 60px 20px;
    text-align: center;
}

.informationen__text {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 800px;
    margin: 0 auto 20px auto;
}

/* Kontakt Section */
.contact {
    background-color: var(--light-gray);
    padding: 60px 20px;
    text-align: center;
}

.contact__content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
}

.contact__form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.contact__form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact__form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.contact__form-group input,
.contact__form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-size: 16px;
}

.contact__form-button {
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.contact__form-button:hover {
    background-color: var(--secondary-color);
}

.contact__details {
    max-width: 500px;
    text-align: left;
    width: 100%;
}

.contact__info-box {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact__details p {
    font-size: 16px;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact__icon {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 10px;
}

.contact__map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

/* Kundenstimmen Section */
.testimonials {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
}

.testimonials__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial {
    background-color: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
}

.testimonial__image {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 150px;
    height: 150px;
}

.testimonial__text {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.testimonial__name {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: bold;
}

/* Footer Section */
.footer {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 40px 20px;
    text-align: center;
}

.footer__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__section {
    flex: 1;
    min-width: 200px;
}

.footer__title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link {
    display: block;
    margin-bottom: 10px;
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer__link:hover {
    color: var(--accent-color);
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer__social-link {
    color: var(--white-color);
    font-size: 24px;
    transition: color 0.3s;
}

.footer__social-link:hover {
    color: var(--accent-color);
}

.footer__bottom {
    margin-top: 40px;
    border-top: 1px solid var(--white-color);
    padding-top: 20px;
}

.footer__bottom p {
    margin: 0;
    font-size: 14px;
}

.footer__creator-link {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer__creator-link:hover {
    color: var(--accent-color);
}

/* Media Queries */
@media only screen and (max-width: 599px) {
    .hero {
        padding: 100px 10px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    .leistungen__grid {
        flex-direction: column;
        align-items: center;
    }

    .leistung {
        max-width: 100%;
    }

    .about__content {
        flex-direction: column;
        text-align: center;
    }

    .about__text {
        text-align: center;
    }

    .about__qualifications-list li {
        flex-direction: column;
        font-size: 14px;
        background-color: var(--white-color);
        padding: 10px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        margin-bottom: 10px;
    }

    .qualification__icon {
        font-size: 20px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .contact__content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact__details {
        text-align: left;
        max-width: 100%;
    }

    .contact__info-box {
        margin: 0 auto;
        width: 100%;
    }

    .contact__details p {
        justify-content: flex-start;
    }

    .contact__icon {
        margin-right: 5px;
        margin-bottom: 0;
    }

    .contact__map {
        margin: 20px auto 0;
        width: 100%;
    }

    .testimonials__grid {
        flex-direction: column;
        align-items: center;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer__section {
        text-align: center;
    }

    .footer__bottom {
        text-align: center;
    }
}
