/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/* CSS document */

/*
    couleurs utilisées
    chocolat    #7f6556         or foncé    #c48b21     black
    framboise   #c22f49         or clair    #cfa554     white
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
    font-family: "quadrat-regular";
    src: url('../fonts/Quadrat-Serial Regular.ttf');
   }
@font-face {
font-family: "quadrat-bold";
src: url('../fonts/quadrat-serial-bold.ttf');
}

* {
    padding: 0;
    margin: 0;
    /* border: 1px dotted black; */
}

html {
    background-color: #c22f49;
}

body {
    background-color: white;
    max-width: 1440px;
    margin: 0 auto;
    font-family: 'Montserrat', sans-serif;
}

/* HEADER */

header, .nav_entete {
    position: sticky;
    top: 0;
    max-width: 1440px;
    height: 110px;
    background-color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

header button .trigram_nav {
    width: 45px;
    height: 30px;
    margin-left: 50px;
    cursor: pointer;
}

.logo {
    display: block;
    margin-left: 100px;
}

.picto_de_droite {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.picto_de_droite img {
    display: block;
    margin-right: 50px;
    cursor: pointer;
}

header button {
    background-color: transparent;
    border: none;
}

/* menu de navigation */


/* menu "caché" */
nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 1440px;
    height: 1080px;
    background-color: white;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); /* cache le menu */
    -webkit-transition: -webkit-transform 750ms ease-in-out;
    transition: -webkit-transform 750ms ease-in-out;
    -o-transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out;
    transition: transform 750ms ease-in-out, -webkit-transform 750ms ease-in-out; /* animation du menu */
}

#fermer {
    color: #cfa554;
    font-size: 50px;
    margin-left: 55px;
    cursor: pointer;
}

.nav_corps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.navigations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.navigations ul.menu_produits_boutique {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 125px;
}

.navigations ul.menu_produits_boutique li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
}

.nav_corps ul.principale {
	list-style: none;
    padding-right: 85px;
}

.nav_corps ul.principale li {
    padding: 10px 0px;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

.nav_corps ul.principale li a {
    text-decoration: none;
    color: #7f6556;
    font-size: 20px;
}

.nav_corps ul li a:hover {
    color: #c22f49;
}

/* animation menu "caché" */
nav.ouvrir_menu {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1); /* définition de la Class (ouvrir.menu) utilisée dans le code javascript
                            et de l'apparition du menu avec un effet zoom */
}
/* fin menu de navigation */

/* nav mobile */
.mobile {
    display: none;
}
/* fin nav mobile */

/* MAIN */

main {
    margin-top: 10px;
}

main h1 {
    font-family: 'quadrat-regular';
    font-size: 45px;
    font-weight: 400;
    text-align: center;
    color: #c48b21;
}

/* CARROUSEL */

/* préchargement des images */
.carrousel::after{
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    content: url(../images/carrousel/carrousel_bijou1.jpg) url(../images/carrousel/carrousel_bijou2.jpg) url(../images/carrousel/carrousel_bijou3.jpg);
 }
 
 .carrousel {
    width: 1440px;
    height: 500px;
    -webkit-animation: 15s ease-in-out 250ms infinite bijoux;
            animation: 15s ease-in-out 250ms infinite bijoux;
 }
  
@-webkit-keyframes bijoux {
     0% {background-image: url(../images/carrousel/carrousel_bijou1.jpg);}
     33% {background-image: url(../images/carrousel/carrousel_bijou2.jpg);}
     67% {background-image: url(../images/carrousel/carrousel_bijou3.jpg);}
     100% {background-image: url(../images/carrousel/carrousel_bijou1.jpg);}
 }
  
@keyframes bijoux {
     0% {background-image: url(../images/carrousel/carrousel_bijou1.jpg);}
     33% {background-image: url(../images/carrousel/carrousel_bijou2.jpg);}
     67% {background-image: url(../images/carrousel/carrousel_bijou3.jpg);}
     100% {background-image: url(../images/carrousel/carrousel_bijou1.jpg);}
 }
/* FIN CARROUSEL */

ul.menu_produits_boutique {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    margin: 40px auto;
    font-size: 20px;
    font-weight: 400;
    list-style: none;
}

ul.menu_produits_boutique li {
    padding: 10px;
    border-top: solid 1px #c48b21;
    border-bottom: solid 1px #c48b21;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
}

ul.menu_produits_boutique li a {
    text-decoration: none;
    color: #7f6556;
}

ul.menu_produits_boutique li a:hover {
    color: #c22f49;
}

.presentation h1 {
    margin: 40px auto;
}

.presentation p {
    max-width: 740px;
    font-size: 20px;
    line-height: 30px;
    color: black;
    text-align: justify;
    margin: 10px auto;
}

.presentation span {
    font-family: 'quadrat-bold';
    font-size: 25px;
    color: #7f6556;
}

.equipe { 
    height: 280px;
    margin: 50px auto;
    background-color: #cfa554;
    padding: 30px;
}

.equipe h2 {
    text-align: center;
    margin: 0px auto 30px auto;
    font-size: 30px;
    font-weight: 400;
}

.equipe article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.carte_equipe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
    font-weight: 600;
    line-height: 30px;
}

.carte_equipe img {
    display: block;
    border: solid 3px #c48b21;
    border-radius: 30px;
    margin-right: 20px;
}

.coeur h2, .promo h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    color: #c48b21;
    margin: 0 auto;
}

.coeur a, .promo a {
    display: block;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content;
    border: solid 1px #c48b21;
    text-decoration: none;
    padding: 15px;
    margin: -50px auto 70px auto;
    color: #7f6556;
    font-size: 16px;
}

.coeur a:hover, .promo a:hover {
    background-color: #c48b21;
    color: white;
}

.coeur div, .promo div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 50px;
    text-align: center;
}

.coeur div article p, .promo div article p {
    font-size: 20px;
    line-height: 30px;
    margin: 10px auto;
}

.coeur span, .promo span {
    font-weight: 700;
}

.promo span.reduc {
    color: #c45b21;
    font-weight:400;
}

.coeur div article a, .promo div article a {
    display: inline-block;
    text-decoration: none;
    padding: 15px;
    margin-top: 20px;
    background-color: #c22f49;
    color: white;
    font-size: 16px;
}

.coeur div article a:hover, .promo div article a:hover {
    background-color: #7f6556;
    color: #cfa554;
}

main div article hr {
    border: 2px solid #c48b21;
    width: 100px;
    margin: 20px auto;
}

.coeur div article {
    max-width: 250px;
}

.coeur div article img {
    width: 250px;
    border: solid 2px #c48b21;
    border-radius: 30px;
}

.promo div article {
    max-width: 200px;
}

.promo div article img {
    width: 200px;
    border: solid 2px #c48b21;
    border-radius: 30px;
}

/* FOOTER */

footer, .nav_pied {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 200px;
    background-color: #7f6556;
}

address, address p a, .nav_pied address, .nav_pied address p a {
    color: white;
    font-size: 15px;
    line-height: 21px;
    font-style: normal;
}

footer span, .nav_pied span {
    font-family: 'quadrat-bold';
    text-decoration: none;
    color: #cfa554;
}

footer a, .nav_pied a {
    text-decoration: none;
}

footer ul, .nav_pied ul {
    list-style: none;
}

footer ul li a, .nav_pied ul li a {
    color: white;
    font-size: 15px;
    line-height: 21px;
    font-style: normal;
}

/* RESPONSIVE */

@media screen and (max-width: 360px) {

    body {
        max-width: 360px;
    }
    
    /* HEADER */
    
    header {
        max-width: 360px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        z-index: 99;
    }

    header button .trigram_nav {
        display: none;
    }
     
    .logo {
        margin-left: 0px;
    }
    
    header .picto_de_droite {
        display: none;
    }
    
    /* menu de navigation */
   
    /* menu mobile "caché" */
    nav {
        position: absolute;
        top: 110px;
        left: 0;
        width: 360px;
        height: 550px;
        background-color: #7f6556;
    }

    div.nav_entete {
        background-color: #7f6556;
    }

    div.nav_entete .logo {
        display: none;
    }

    #fermer {
        color: #c22f49;
        margin-left: 25px;
    }
    
    .nav_corps {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
    
    .navigations ul.menu_produits_boutique, .nav_corps img, .nav_pied {
        display: none;
    }

    .nav_corps ul.principale {
        padding-right: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    .nav_corps ul.principale li {
        padding: 20px 0px;
    }
    
    .nav_corps ul.principale li a {
        color: #cfa554;
        font-size: 30px;
    }

    /* fin menu de navigation */
        
    /* nav mobile */
    .mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
            justify-content: space-around;
        width: 360px;
        height: 80px;
        position: fixed;
        top: 660px;
        background-color: #7f6556;
        z-index: 98;
    }

    .mobile button {
        display: block;
        background-color: transparent;
        border: none;
    }
    
    .mobile button .trigram_nav {
        width: 45px;
        height: 30px;
        margin-left: 0px;
    }
    /* fin nav mobile */
    
    /* MAIN */
    
    main {
        position: relative;
        top: 0px;
        margin-top: 0px;
        background-color: white;
    }
    
    main h1 {
        font-size: 40px;
        max-width: 260px;
    }
    
    /* CARROUSEL */
    
    /* préchargement des images */
    .carrousel::after{
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        content: url(../images/carrousel/360_carrousel_photo1.jpg) url(../images/carrousel/360_carrousel_photo2.jpg) url(../images/carrousel/360_carrousel_photo3.jpg);
     }
     
     .carrousel {
        width: 360px;
        -webkit-animation: 15s ease-in-out 250ms infinite bijoux;
                animation: 15s ease-in-out 250ms infinite bijoux;
     }
      
    @-webkit-keyframes bijoux {
         0% {background-image: url(../images/carrousel/360_carrousel_photo1.jpg);}
         33% {background-image: url(../images/carrousel/360_carrousel_photo2.jpg);}
         67% {background-image: url(../images/carrousel/360_carrousel_photo3.jpg);}
         100% {background-image: url(../images/carrousel/360_carrousel_photo1.jpg);}
     }
      
    @keyframes bijoux {
         0% {background-image: url(../images/carrousel/360_carrousel_photo1.jpg);}
         33% {background-image: url(../images/carrousel/360_carrousel_photo2.jpg);}
         67% {background-image: url(../images/carrousel/360_carrousel_photo3.jpg);}
         100% {background-image: url(../images/carrousel/360_carrousel_photo1.jpg);}
     }
    /* FIN CARROUSEL */
    
    ul.menu_produits_boutique {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0px auto;
        max-width: 280px;
    }
    
    ul.menu_produits_boutique li {
        margin: 20px auto;
    }
    
    .presentation h1 {
        margin: 20px auto;
    }
    
    .presentation p {
        max-width: 320px;
    }
    
    .equipe { 
        height: 920px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
    
    .equipe h2 {
        margin: 0px auto 0px auto;
        font-size: 23px;
    }

    .equipe article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .carte_equipe {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        line-height: 20px;
        text-align: center;
    }
    
    .carte_equipe img {
        margin-right: 0px;
        margin-bottom: 5px;
        margin-top: 20px;
    }
    
    .coeur h2, .promo h2 {
        color: #c48b21;
        max-width: 320px;
    }
    
    .coeur div, .promo div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
    .coeur div article, .promo div article {
        max-width: 250px;
    }
        
    .promo div article img {
        width: 250px;
    }
    
    /* FOOTER */
    
    footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        height: 450px;
        margin-bottom: 80px;
    }
    
    ul.obligatoire {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        max-width: 230px;
    }
    
    ul.obligatoire li {
        margin-bottom: 15px;
    }
    
    .rappel_boutique {
        display: none;
    }
    
    }