@font-face {
    font-family: "ArcaneNine";
    src: url("fonts/Arcane\ Nine.otf") format("opentype");
}
@font-face {
    font-family: "Peignot";
    src: url("fonts/Peignot.ttf") format("truetype");
}
@font-face {
    font-family: "Calibri";
    src: url("fonts/calibri.ttf") format("truetype");
}
:root {
    --creme1: rgb(244, 237, 215);
    --creme2: rgb(156, 116, 64);
    --creme3: rgb(131, 97, 53);
    --creme4: rgb(87, 68, 51);
    --vert1: rgb(150, 206, 185);
    --vert2: rgb(51, 87, 72);
    --vert3: rgb(78, 129, 108);
    --vert4: rgb(227, 241, 237);
    --orange1: rgb(216, 184, 0);
    --blanc: rgb(255, 255, 255);
}
* {
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    font-family: "Calibri";
    background-color: var(--blanc);
    overflow-x: hidden;
}
main {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0;
}
.d-column {
    display: flex;
    flex-direction: column;
}
.d-row {
    display: flex;
    flex-direction: row;
}


/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------Header------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    height: 25vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
/*Barres haute et basse*/
#bannerBarTop,
#bannerBarBottom {
    width: 100%;
    height: 1vh;
    background: linear-gradient(130deg, rgba(255,166,26,1) 0%, rgba(255,212,79,1) 17%, rgba(255,166,26,1) 34%, rgba(255,212,79,1) 51%, rgba(255,166,26,1) 68%, rgba(255,212,79,1) 85%, rgba(255,166,26,1) 100%);
}
/*Fond*/
.banner {
    width: 100%;
    height: 23vh;
    display: flex;
    flex-direction: row;
    background-color: var(--creme1);
    align-items: center;
    justify-content: space-evenly;
}
/*Logo*/
.logo {

    width: auto;
    height: 12vh;
    margin: 2vh;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(172, 145, 65, 0.5);
    transition: all .5s ease;
}
.logo:hover {
    transform: scale(.97);
    box-shadow: 0 4px 20px rgba(172, 145, 65, 0.7);
    transition: all .5s ease;
}
/*Titre*/
.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "ArcaneNine";
    font-size: calc(.7em + .7vw);
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--vert1);
    width: 30vw;
    height: 6vh;
}
/*Navigation*/
nav {    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    z-index: 200;
}
.nav-horizontal {
    display: none;
}
.nav-burger {
    display: none;
    flex-direction: column;
    align-items: center;
    list-style: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    background-color: var(--creme1);
}
.nav-burger ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    width: 100%;
}
.nav-burger li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 10vh;
}
.nav-burger li:hover {
    background-color: var(--creme2);
}
.nav-burger li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "ArcaneNine";
    font-size: calc(.9em + .9vw);
    color: var(--orange1);
    width: 100%;
}
/*Icone burger*/
.burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 4vh;
    width: 5vh;
    transition: 0.5s ease;
    cursor: pointer;
}
.burger .line {
    display: block;
    height: .7vh;
    width: 100%;
    border-radius: 3px;
    background: var(--vert1);
    z-index: 31;
}
.burger .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
}  
.burger .line2 {
    transition: transform 0.2s ease-in-out;
}  
.burger .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
}

/*-----------------------------------------------------------------------------------------------*/
/*-------------------------------------Texte et titres-------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
h1 {
    font-size: 0;
    opacity: 0;
}
h2 {
    font-family: "Peignot";
    font-size: calc(1.5em + 2vw); 
    margin-bottom: 1em;
}
h3 {
    font-family: "Peignot";
    font-size: calc(1.2em + .8vw);
    letter-spacing: .4em;
    margin-top: 1em;
    margin-bottom: 1em;
}
h4 {
    font-family: "Peignot";
    font-size: calc(.8em + .8vw);
    letter-spacing: .4em;
    margin-top: 1em;
    margin-bottom: .5em;
}
p, .ul-vide, .ul-choix {
    line-height: 1.5em;
    margin-bottom: .5em;
    margin-top: .5em;
    font-size: calc(.9em + .9vw);
}


/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------Section-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    min-height: 50vh;
}

/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------Article-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
article {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    padding-bottom: 1em;
    padding-top: 1em;
}
.div-image img {
    width: 100%;
    height: auto;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.div-vert {
    background-color: var(--vert1);
}
.div-creme {
    background-color: var(--creme1);
}
.div-short, .div-large {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: baseline;
    height: auto;
    margin-top: 1em;
    margin-bottom: 1em;
}
.div-short, .div-large {
    width: 90%;
}
.div-short div, .div-large div {
    width: 100%;
}
.div-image {
    align-items: center;
}
.div-text p, .div-text h2, .div-text h3, .div-text h4 {
    position: relative;
}
.div-vert h2 {
    color: var(--vert2);
}
.div-vert h3 {
    color: var(--blanc);
}
.div-vert h4 {
    color: var(--vert2);
}
.div-creme h2 {
    color: var(--creme4);
}
.div-creme h3 {
    color: var(--creme3);
}
.div-vert p, .div-vert li {
    color: var(--vert2);
}
.div-creme p, .div-creme li {
    color: var(--creme4);
}


/*-----------------------------------------------------------------------------------------------*/
/*------------------------------------------Footer-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
footer {
    flex-shrink: 0;
    margin: 0 auto;
    width: 100vw;
    height: 30vh;
    background-color: var(--creme1);
    box-shadow: 0 -2px 4px rgba(126, 81, 44, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding-top: .5em;
    padding-bottom: .5em;
}
.footer-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 50%;
    height: 5vh;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 10vh;
}
.footer-links div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    height: auto;
    margin-bottom: 1em;
}
.footer-links a {
    font-size: calc(.8em + .8vw);   
    text-align: center;
    color: var(--creme3);
}
/*Icônes sociales*/
.icon {
    font-size: 25px;
    transition: color 0.3s;
    color: var(--creme2);
    text-align: center;
}
.icon:hover {
    color: var(--creme3);
}
.fa-solid {
    margin-right: 0;
}
/*Mentions légales*/
.mentions-legales, .mentions-legales:link, .mentions-legales:visited,
.mentions-legales-main a, .mentions-legales-main a:link, .mentions-legales-main a:visited {
    font-family: "Peignot";
    font-size: calc(.6em + .6vw);   
    text-align: center;
    color: var(--vert4)
}
.mentions-légales:hover {
    color: var(--creme3);
}

/*-----------------------------------------------------------------------------------------------*/
/*------------------------------------------Boutons----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.div-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.btn {
    border-radius: 7em;
    border: none;
    cursor: pointer;
    margin: 2em;
    transition: all 0.2s ease;
    font-family: "Peignot";
    height: 3em;
    width: 16em;
    font-size: 1em;
}
a, a:visited, a:link {
    text-decoration: none;
}
.btn-vert {
    color: var(--blanc);
    background-color: var(--vert3);
}
.btn-vert:hover {
    background-color: var(--vert2);
    box-shadow: 0 4px 10px rgba(32, 54, 45, 0.5);
}
.btn-creme {
    color: var(--blanc);
    background-color: var(--creme2);
}
.btn-creme:hover {
    background-color: var(--creme4);
    box-shadow: 0 4px 10px rgba(54, 45, 32, 0.5);
}


/*-----------------------------------------------------------------------------------------------*/
/*---------------------------------------Qui suis-je ?-------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.link-creme, .link-creme:link, .link-creme:visited {
    text-decoration: underline;
    font-size: bold;
    color: var(--creme4);
}
.div-image .image-certificat {
    width: 80%;
    height: auto;
}
.external-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.external-links p {
    width: 90%;
    height: auto;
    padding: .5em;
    border-radius: 2em;
    text-align: center;
    background-color: var(--vert3);
}
.external-links p:hover {
    background-color: var(--vert2);
    cursor: pointer;
}
.external-links a {
    color: var(--blanc);
}


/*-----------------------------------------------------------------------------------------------*/
/*---------------------------------------Mes méthodes--------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.citation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 1em;
    margin-bottom: 1em;
    color: var(--blanc);
}
.div-short ul,
.div-large ul {
    padding-left: 1em;
}
.div-short ul li,
.div-large ul li {
    line-height: 1.5em;
}

/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------Prestations-------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
table {
    border: var(--vert2) 3px solid;
    border-collapse: collapse;
    width: 100%;
}
th {
    background-color: var(--vert2);
    color: var(--blanc);
    height: 3em;
    font-family: "ArcaneNine";
    letter-spacing: .3em;
    font-size: 0.5em;
}
td {
    color: #000;
    text-align: center;
    padding: .5em;
    height: 4em;
    font-size: 0.6em;
}
tr:nth-child(even) {
    background-color: #e4fff5;
}
tr:nth-child(odd) {
    background-color: #d3f7ea;
}
.div-image-carte-cadeau {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.image-carte-cadeau {
    width: 80%;
    height: auto;
    box-shadow: 0 4px 10px var(--vert3);
}

/*-----------------------------------------------------------------------------------------------*/
/*------------------------------------------Contact----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.div-contact {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--vert1);
}
.div-contact h2 {
    color: var(--vert2);
}
.div-contact h3 {
    color: var(--blanc);
}
.div-contact h4 {
    color: var(--vert2);
}
.div-contact p, .div-contact li {
    color: var(--vert2);
}
.div-short .rdv {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--vert4);
    border-radius: 15px;
}
.rdv p {
    margin: 2em;
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
}
.form-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    background-color: var(--vert4);
    border-radius: 15px;
    padding-top: 2em;
}
.form-wrap div {
    width: 80%;
    height: auto;
}
form label {
    font-size: calc(.6em + .6vw);
    margin-top: 1em;
    margin-bottom: 1em;
    color: var(--vert2);
}
form input, form textarea {
    width: 100%;
    border: var(--vert4) 2px solid;
    font-size: calc(.5em + .5vw);
}
form input {
    height: 2em;
    margin-top: .5em;
    margin-bottom: .5em;
}
form textarea {
    padding-top: .5em;
}
form input:hover, form textarea:hover {
    border: var(--vert2) 2px solid;
}
.email-address {
    text-decoration: none;
    color: var(--vert2);
}
.email-address:hover {
    text-decoration: underline;
}
.div-text .image-plan,
.div-text .image-cabinet {
    width: 100%;
    height: auto;
}
.div-short .image-deuil,
.div-short .image-perinatalite {
    width: 80%;
    height: auto;
}
.adresse {
    display: none;
}

/*-----------------------------------------------------------------------------------------------*/
/*------------------------------------------Icones-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.fa-lightbulb {
    color: var(--orange1);
}
.icon-perfactive {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

/*-----------------------------------------------------------------------------------------------*/
/*----------------------------------Slider de commentaires---------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.slider-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
}
.slider {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 1em;
}
.comment {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
}
.comment.active {
    display: flex;
}
.comment p {
    color: var(--creme3);
    font-size: calc(1em + 1vw);
}
.comment p:first-child {
    font-style: italic;
}

/*-----------------------------------------------------------------------------------------------*/
/*-------------------------------------------FAQ-------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.div-text .ul-vide {
    list-style-type: none;
}
.ul-vide, .ul-choix {
    font-size: calc(.9em + .2vw);
}



/*-----------------------------------------------------------------------------------------------*/
/*----------------------------------------Responsive---------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/

@media screen and (min-width: 768px) {
    .div-short, .div-large {
        width: 70%;
    }
    .div-image img {
        width: 70%;
    }
    th, td {
        font-size: .8em;
    }
    .image-carte-cadeau {
        width: 80%;
    }
    .btn {
        font-size: 1.1em;
    }
    .ul-vide, .ul-choix {
        font-size: calc(.8em + .2vw);
    }

}

@media screen and (min-width: 1280px) {
    body {
        font-size: 16px;
    }
    header {
        height: 40vh;
    }
    .banner {
        height: 38vh;
        flex-direction: column;
    }
    .logo {
        height: 20vh;
    }
    .title {
        width: 100vw;
    }
    nav {
        height: 10vh;
    }
    .nav-burger, .burger {
        display: none;
    }
    .nav-horizontal {
        display: flex;
    }
    .navbar {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        list-style: none;
        width: 80vw;
        height: 100%;
    }
    .navbar li a {
        align-items: center;
        justify-content: space-around;
        font-family: "ArcaneNine";
        font-size: calc(.8em + .8vw);
        color: var(--orange1);
    }
    .navbar li {
        position: relative;
    }
    .navbar li::after, .navbar li::before {
        content: "";
        position: absolute;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--orange1);
        transition: all 0.3s ease, left 0.3s ease;
    }
    .navbar li::before {
        top: 0;
    }
    .navbar li::after {
        bottom: 0;
    }
    .navbar li:hover::after {
        width: 100%;
        left: 0;
    }
    .navbar li:hover::before {
        width: 100%;
        left: 0;
    }
    .navbar ul {
        list-style: none;
    }
    .nav-burger {
        display: none;
    }
    article {
        flex-direction: row;
        align-items:start;
    }
    .div-short {
        width: 35%;
    }
    .div-large {
        width: 70%;
    }
    .div-image img {
        width: 80%;
    }
    h2 {
        font-size: calc(1em + 1vw);
    }
    h3 {
        font-size: calc(1em + .4vw);
    }
    h4 {
        font-size: calc(1em + .3vw);
    }
    p, li, .comment p, .footer-links a, td {
        font-size: calc(1em + .2vw);
    }
    .ul-vide {
        font-size: calc(.7em + .2vw);
    }
    .ul-choix {
        font-size: calc(.6em + .2vw);
    }
    .div-image .image-certificat {
        width: 50%;
    }
    .div-image .image-cabinet {
        width: 95%;
        margin-top: 2em;
        margin-bottom: 2em;
    }
    .image-carte-cadeau {
        width: 50%;
    }
    .div-short .rdv,
    .div-short form {
        width: 95%;
    }
    .div-text .image-plan,
    .div-text .image-cabinet {
        width: 80%;
    }
    .footer-icons {
        width: 30%;
    }
    .btn {
        font-size: 1.2em;
    }
    .icon {
        font-size: 40px;
    }
    .external-links p {
        width: 60%;
    }

}

@media screen and (min-width: 1920px) {
    .div-short {
        width: 30%;
    }
    .div-large {
        width: 60%;
    }
    .footer-icons {
        width: 20%;
    }
    .image-carte-cadeau {
        width: 40%;
    }
    .form-wrap div {
        width: 60%;
    }
    .div-short .image-deuil,
    .div-short .image-perinatalite {
        width: 60%;
    }
}
