html body main {

    margin: 0;
    padding: 0;
    border: 0;
}


body{

    background-image: url(img/Reflexzonentherapie.jpg);
    background-size: cover;
    z-index: -1;
    text-align: center;
    background-attachment: fixed;
}

.einleitung{

    width: 100%;
    height: 500px;
}

.einleitung-h1 {

    margin-top: 300px;
    font-size: 48px;
    text-align: center;
    width: 100%;
}

@media (max-width: 1000px) {

    .einleitung{

        width: 100%;
        height: 400px;
    }
    .einleitung-h1 {

        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 0px;
        padding-top: 200px;
        font-size: 32px;
    }
}

.einleitung button {

    position: relative;
    top: 500px;
    
}


.unsere-leistungen{

    width: 100%;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;

}

.leistung{

    width: 70%;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    background-color: antiquewhite;
    border-radius: 15px;
    padding: 30px;
    margin-top: 25px;
    margin-bottom: 25px;
    text-align: justify;
}



.leistung-img {

    width: 30%;
    min-width: 300px;

}

.leistung-img>img {

    width: 80%;
    height: 300px;
    padding-top: 10%;
    margin-top: auto;
    margin-bottom: auto;
    border-radius: 15%;
}

.leistung-beschreibung {

    width: 70%;
    align-items: center;
}

.leistung-beschreibung ul{

    font-size: 24px;
    padding: 0;
    padding-top: 7%;
    color: black;
}
.leistung-beschreibung ul p{

    font-size: 1rem;
    padding-top: 7%;
    color: black;
}

.leistung-beschreibung ul li{

    display: none;
    list-style: none;
    color: black;
}
.leistung-beschreibung button{

    color: black;
    margin: 5px;
    border: solid #000000;
    height: 50px;
    width: 30%;

}

.leistung-beschreibung button:hover{

    color: rgb(255, 255, 255);
    margin: 5px;
    border: solid #ffffff;
    height: 50px;
    width: 30%;

}


@media (max-width: 900px){

    .leistung{

        display: block;
        text-align: center;
    }
    .leistung-img{

        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .leistung-beschreibung {

        width: 100%;
    }

    .leistung-beschreibung ul{

        font-size: 22px;
        padding: 0;
        padding-top: 5%;
    }
}

@media (max-width: 500px) {


    .leistung {

        width: 90%;
    }
    .leistung-img {

        min-width: 100px;
    
    }

    .leistung-beschreibung button{

        width: 80%;
        font-size: 1rem;
    
    }
}

.leistung {
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.leistung-beschreibung ul,
.leistung-beschreibung li,
.leistung-beschreibung button {
    transition: color 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.leistung:hover {
    background-color: black;
    color: white;
}

.leistung:hover .leistung-beschreibung ul,
.leistung:hover .leistung-beschreibung li,
.leistung:hover .leistung-beschreibung button {
    color: white;
}

.leistung:hover .leistung-beschreibung ul li {
    display: list-item;
    margin: 10px 0;
}

/*=====Preisliste======*/


.Preisliste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.Preisliste div {
    background: linear-gradient(135deg, #ffebd2, #f7d0a3);
    padding: 15px;
    border-radius: 15px;
    width: 260px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

.Preisliste div:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.Preisliste h3 {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.Preisliste ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.Preisliste li {
    padding: 5px 0;
    font-size: 16px;
    color: #555;
}

.Preisliste strong {
    color: #222;
    font-weight: bold;
}

.Preisliste small {
    font-size: 14px;
    color: #777;
}

