element {
    --primary: #b5cae5;
}

html,
body {
    height: auto;
    margin: 0;
    font-family: 'Prompt', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #eed9c4;
}

header {
    background-image: url(..../images/head.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

.head {
    display: flex;
    flex-direction: row;
    text-align: center;
}


.logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-width: 25%;
}


h1 {
    font-size: 3em;
    color: #d9b99b;
}

.head {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu {
    width: 60%;
    height: auto;
}

.logo-picture {
    margin-top: 1%;
    width: 10%;
    height: auto;
}

.menu>nav>ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: nowrap;
}

li {
    width: auto;
    height: auto;
    margin: 10px;
    display: block;
}

.menu>nav>ul>li>a {
    text-decoration: none;
    color: black;
    padding: 10px;
    background-color: #eed9c4;
    border: solid 1px white;
    border-radius: 10px;
    width: 20%;
    height: auto;
    transition: all 0.7s;
}

.menu>nav>ul>li>a:hover {
    background-color: #d9b99b;
    border-radius: 15px;
    transition: all 0.7s;
}

.pres {
    margin: 10% 0 0 5%;
}

h2 {
    font-size: 2.5em;
}

.bloc-pres {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin-top: 5%;
}

.bloc-pres>img {
    width: 20%;
    height: auto;
    border-radius: 15%;
}

.txt-pres {
    width: 70%;
    height: auto;
    margin-left: 5%;
}

.txt-pres>p {
    font-size: 1.2em;
    text-align: justify;
}

.photo-salon {
    margin-top: 5%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.photo-salon>img {
    width: 25%;
    height: auto;
    border-radius: 2%;
}

.bloc-prestation {
    margin: 15% 0 0 0;
    height: fit-content;
    text-align: center;
}

.bloc-prestation>h2 {
    margin-left: 5%;
}

.bloc {
    margin: auto;
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.bloc>div {
    background-color: white;
    margin: 5%;
    width: 50%;
    height: auto;
    padding: 5%;
    border-radius: 2%;
    flex-shrink: 1;
}

.icon {
    margin: 1%;
    font-size: 1.5em;
    width: 100%;
    text-align: center;

}

.img-icon {
    margin: 3% 0 0 5%;
    text-align: center;
}

.prestation>li {
    margin: 5% 0 0 0;
    font-size: 1.1em;
}

footer {
    background-color: white;
    width: 100%;
    height: auto;
    padding: 5% 0 5% 0;
}

footer>h2 {
    margin-left: 5%;
}

.maps {
    margin: 5%;
    border-radius: 5%;
    border: solid 5px #eed9c4;
    width: 80%;
}

.foot {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.info {
    width: 60%;
}

.info>p {
    text-align: center;
    font-size: 1.3em;
}

.icon-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}



figure {
    margin: 5%;
    width: 30%;
    text-align: center;
}

figcaption {
    text-decoration: none;
}

figure>a {
    text-decoration: none;
    color: black;
}

figure>a:hover {
    text-decoration: underline;
}

.copyright {
    width: 100%;
    height: auto;
}

.copyright>p {
    color: black;
    font-size: 0.8em;
    width: 100%;
    text-align: center;
}

@media only screen and (max-width: 1000px) {

    header {
        background-image: url(../img/head-phone.jpg);
    }

    .logo {

        flex-direction: column;
        align-items: center;
    }

    .logo>h1 {
        font-size: 3.5em;
    }

    .head {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .logo-picture {
        width: 25%;
        height: auto;
    }

    .menu {
        margin-top: 5%;
        width: 90%;
    }

    .nav {
        width: 100%;
        height: auto;
    }

    .menu>nav>ul {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }

    .menu>nav>ul>li>a {
        font-size: 2em;
        padding: 5px;
    }

    .bloc-prestation {
        height: 50vh;
    }

    .bloc>div {
        padding: 10%;
        height: auto;
        border-radius: 5%;
    }

    .bloc>div>p {
        font-size: 1.7em;
    }

    .foot {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    iframe {
        width: 75%;
    }

    .icon-contact {
        width: 90%;
    }

    figure {
        width: 25%;
        margin: 2%;
    }
}