@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root{
    --Headings: #203F55;
    --texts: #44759C;
    --bg: #AEDBD3;
    --icons: #DC4D32;
    --accent: #992F1A;
}

/* GLOBAL */

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    font-family: 'Ubuntu',sans-serif;
    text-decoration: none;
    list-style: none;
    outline: none;
    border: none;
    scroll-behavior: smooth;
}

body{
    background: #fff;
    color: var(--texts);
    overflow-x: hidden;
}

h1{
    font-size: 1.5em;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 50px;
    color: var(--Headings);
}

h2{
    font-size: 1.4em;
    letter-spacing: 1.5px;
    color: var(--bg);
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--Headings);
}

h3{
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--Headings);
}

h4{
    font-size: 1.1em;
    font-weight: 200;
    margin-bottom: 20px;
}

p{
    font-size: 0.9em;
    font-weight: 100;
    color: var(--texts);
}

.bx{
    font-size: 2rem;
    color: var(--icons);
}

.btn-primary{
    color: var(--Headings);
    background: var(--links);
    border: solid 2px var(--Headings);
    font-size: 1.5em;
    padding: 10px 20px;
    justify-content: center;
    border-radius: 7px;
    margin: 20px 0;
    color: #fff;
    background-color: var(--accent);
}

.btn-home:hover{
    background-color: transparent;
    color: var(--accent);
}

span{
    color: var(--accent);
    font-style: italic;
}

.content-img-about{
    width: 100%;
    background-size: cover;
    border-radius: 7px;
    box-shadow: 5px 5px 5px #ccc;
    justify-content: center;
    align-items: center;
    max-width: 500px;
}

/* NAVIGATION */
nav{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: url("/images/logo_test.png");
    background-size: contain;
    color: var(--accent);
    height: 150px;
    max-width: 100%;
}

nav .logo img{
    width: 200px;
}

nav .navigation{
    display: flex;
}

nav .navigation li{
    position: relative;
}

nav .navigation a{
    font-size: 1.2em;
    padding: 4px 20px;
    margin: 0 5px;
    color: var(--primary);
    font-weight: 500;
    background-color: rgba(255,255,255, 0.8);
}

nav .navigation a:hover{
    font-size: 1.3em;
    padding: 4px 20px;
    margin: 0 5px;
    color: var(--primary);
    font-weight: 500;
    background-color: rgba(255,255,255, 1);
}

#burger-menu{
    color:var(--text);
    font-size: 1.6rem;
    cursor:pointer;
    z-index: 10001;
    display: none;
}

#burger-menu:hover{
    color: var(--primary);
}

/* HOME */
.home{
    padding: 150px 20px 25px 20px;
    margin-top: 50px;
    text-align: center;
}

.section-heading{
    font-size: 1.2em;
    font-weight: 500;
}

.home-content{
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.cabinet-item{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.cabinet-item-img{
    height: 30px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.delimiter{
    height: 2px;
    width: 250px;
    padding: 1px;
    background-color: var(--accent);
    margin: 20px;
}

.domicile, .cabinet{
    display: flex;
    flex-direction: column;
}

.num{
    text-decoration: underline;
    color: var(--accent);
    margin: 20px;
}

.btn-home{
    font-size: 16px;
}

/* LES SOINS */
.soins{
    text-align: center;
    padding: 20px;
}

.soin-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soin-list{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.soin-item{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 5px 20px;
    text-justify: center;
}

.soin-item i{
    padding-right: 10px;
}

.soin-item p{
    text-align: left;
}

/* TEAM */
.team{
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}

.about-us{
    padding: 20px;
}

/* AVIS */
.avis{
    background-color: var(--bg);
    text-align: center;
    padding: 50px 10px;
    margin-bottom: 30px;
}

.white{
    color: #fff;
}

.avis-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.avis-card{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    margin: 10px;
    border-radius: 7px;
    box-shadow: 4px 4px 4px var(--Headings);
    max-width: 300px;
    min-height: 370px;
}

.avis-comment{
    padding-bottom: 50px;
}

.mark{
    padding-bottom: 30px;
}

.avis-name{
    padding-bottom: 60px;
    font-size: 1.3em;
}

.avis-comment p{
    font-weight: 400;
    font-size: 1.1em;
}

.avis-name p{
    font-weight: 500;
}

.emoji{
    font-size: 40px;
}

/* Mentions légales */
.mentions-legales-title{
    padding-top: 200px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.mentions-legales{
    display: flex;
    align-items: center;
    justify-content: center;

}

.link{
    color: var(--Headings);
    font-size: 0.8em;
    text-decoration: underline;
}

.mentions-legales-body{
    padding: 50px;
}

.mentions-legales-body p,.mentions-legales-body ul, .mentions-legales-body li{
    padding: 10px 0px;
}

/* FOOTER */

footer{
    display: flex;
    flex-direction: row;
    padding: 10px 20px;
    align-items: center;
    justify-content: space-between;
}

.links{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

footer .bx{
    font-size: 1.5em;
}

.num-links, .adresse-links, .btn-links{
    margin: 5px;
}

.copy{
    text-align: center;
    padding: 20px 20px 10px 20px;
}

.copy a{
    font-weight: 500;
    color: var(--texts);
}

/* BREAKPOINTS */

@media screen and (max-width: 1000px) {
    #burger-menu{
        display: block;
    }
    .navigation{
        position: absolute;
        top:100%;
        right:-100%;
        flex-direction: column;
        row-gap: 2rem;
        width: 280px;
        min-height: 100vh;
        background: var(--bg);
        box-shadow: 5px 0 5px 0 rgba(0,0,0,0.2);
        padding: 1rem 0;
        transition: .2s ease-in-out;
    } 
    .navigation.active
    {
        right: 0;
    }
}

@media screen and (min-width: 800px) {
    .home{
        padding: 150px 50px 25px 50px;
    }
    .team{
        padding: 20px 50px;
    }
    .avis{
        padding: 50px;
    }
}

@media screen and (min-width: 1000px) {
    nav{
        min-height: 100px;
    }
    p{
        font-size: 1.1em;
    }
    .home{
        padding: 150px 100px 25px 100px;
    }
    .team{
        padding: 20px 80px;
    }
    .home-content{
        flex-direction: row;
        border: 10px solid var(--accent);
        margin: 20px auto;
    }
    .domicile, .cabinet{
        max-width: 350px;
        min-height: 300px;
        align-items: center;
        justify-content: center;
    }
    .delimiter{
        transform: rotate(90deg);
    }
    .team{
        flex-direction: row;
        justify-content: center;
    }
    .team-content{
        max-width: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-left: 40px;
    }
    .avis-content{
        flex-direction: row;
    }
    .links{
        flex-direction: row;
        padding: 20px;
        align-items: center;
    }
    .content-img-about{
        max-width: 500px;
    }
    .mentions-legales-body{
        padding: 20px 100px;
    }
}

@media screen and (min-width: 1200px) {
    .avis-card{
        max-width: 400px;
    }
    .mentions-legales-body{
        padding: 20px 150px;
    }
}