* {
    margin: 0;
    padding: 0;
}

:root {
    --background-main: #A3E7D6;
    --header-color: #292b2b;
    --desktop-padding: 0 4rem 0 4rem;
    --mobile-padding: 0 2rem 0 2rem;
    --nav-height: 64px;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    font-family: "Source Sans 3", sans-serif;
    padding-top: var(--nav-height);
}

h1,
h2 {
    font-family: "Libre Baskerville", serif;
    padding: 2vh 0;
    text-align: center;
}

h1 {
    font-size: 2rem;
    color: var(--header-color);
}

h2 {
    font-size: 1.75rem;
    padding: 2rem 0 2rem 0;
    font-style: italic;
}

header {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 384px;
    background-image: url(./img/img_header.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 2rem;
}

header h2 {
    color: var(--header-color);
}

header .divider {
    height: 128px;
    width: 100%;
    background-image: url(./img/intersecting-curves-divider.svg);
    background-size: cover;
    background-position: center bottom;
    position: absolute;
    bottom: -1px;
    pointer-events: none;
}

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

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    align-items: center;
    z-index: 100;
    box-shadow: 3px 1px 3px rgb(140, 140, 140);
    background-color: var(--background-main);
    transition: transform 0.25s ease;
    height: var(--nav-height);
}

#btnBurger {
    display: none;
}

nav img {
    height: 24px;
    width: 24px;
}

section {
    padding-bottom: 1rem;
}

ul {
    display: flex;
    justify-content: space-around;
    gap: 32px;
    list-style: none;
}

#Qui_suis-je div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: var(--desktop-padding);
    margin-bottom: 2rem;
}

#Qui_suis-je img {
    width: 256px;
    border-radius: 15px 0 15px 0;
}

#l’hypnose {
    background-color: var(--background-main);
}

#l’hypnose p {
    padding: var(--desktop-padding);
    margin-bottom: 2rem;
    text-align: center;
}

#l’hypnose img {
    width: 100%;
}

#Les_séances div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: var(--desktop-padding);
    margin-bottom: 2rem;
}

#Les_séances ul {
    display: block;
    list-style: disc;
    line-height: 5rem;
}

#Les_séances li {
    margin-bottom: 1rem;
    line-height: 1rem;
}

#Les_séances img {
    width: 256px;
    border-radius: 15px;
}

#Tarif {
    display: flex;
    justify-content: space-around;
    background-color: var(--background-main);
    padding-bottom: 2rem;
}

#Tarif p {
    text-align: center;
}

.phone,
.mail,
.adresse {
    display: flex;
}

footer {
    margin-bottom: 2rem;
    padding: var(--desktop-padding);
}

footer h2 {
    text-align: left;
}

footer img {
    width: 16px;
}

.contact {
    display: flex;
    justify-content: space-between;
}

.contactL {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 175px;
}

.avis {
    scale: 150%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: underline;
    gap: 0.5rem;
}

#map {
    height: 256px;
    width: 50vw;
}

@media (max-width: 780px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 0.9rem;
    }

    nav {
        align-items: flex-start;
        padding-top: 1rem;
        min-height: 48px;
        height: unset;
        justify-content: center;
    }

    #btnBurger {
        display: block;
        position: absolute;
        left: 16px;
    }

    #burgerDeroulant {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
        margin-top: 48px;
    }

    .facebook {
        position: absolute;
        right: 16px;
    }

    #Qui_suis-je div,
    #Les_séances div,
    #Tarif,
    .contact {
        flex-direction: column;
    }

    #Qui_suis-je div,
    #l’hypnose p,
    #Tarif,
    #Les_séances div,
    footer {
        padding: var(--mobile-padding);
    }

    #Tarif {
        padding-bottom: 2rem;
    }

    footer h2 {
        text-align: center;
    }

    .contact {
        align-items: center;
    }

    #map {
        width: 100%;
        margin-top: 2rem;
    }
}