* {
    --fond: #282454;
    --primaire: #312d5d;
    --secondaire: #1c1848;
}

body{
    background-color: var(--fond);
    margin: 0;
    padding: 0;
}


/*retire les points de la liste*/
ul{
    list-style: none;
}

/*retire les effects sur les liens*/
a{
    text-decoration: none;
    color:inherit;
}

.headerTop{
    background-color: rgb(0, 0, 0);
    position: sticky;
    top:0;
    z-index: 1000;
}

.headerTop_contenu{
    z-index: 10;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding:0 30px
}

.logo_img{
    z-index: 10;
    width: 17%;
    height: 17%;
}

.navListTop{
    z-index: 10;
    display: flex;
    column-gap: 70px;
}

.navLinkTop{
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s;
}

.navLinkTop:hover{
    z-index: 10;
    color: rgba(255, 255, 255, 1);
    font-size: 20px;
}

.titre_haut{
    width: 100%;
    text-align: center;
    margin-bottom: 50px ;
    position: absolute;
    margin-top: 5%;
    border-radius: 5px;
    color: rgba(255, 255, 255, 1);
    letter-spacing: 2px;

}

.image_article{
    width: 75%;
    height: 15%;
    transition: transform .3s;
}

.image_article:hover{
    -ms-transform: scale(1.5);
    -webkit-transform: scale (1.5);  /*permet de zoomer sur l'image au passage de la souris */
    transform: scale(1.5);
    filter: blur(2px);
    
}
.contenu_boutique{
    display: inline-block;
    width: 75%;
    height: 100%;
    background-color: aliceblue;
    margin: 15%;
    padding: 0;
    background-color: var(--secondaire);
}

.acheter_b{
    top: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 160px;
    height: 40px;
    background-color: #00072f;
    line-height: 40px;
    border-radius: 40px;
    color: #555;
    text-transform: uppercase;
    text-decoration: none;
    font-family: sans-serif;
    letter-spacing: 6px;
    transition: 5s;
    background: rgba(022,20);
    overflow: hidden ;
}

.acheter_b:hover{
    color: #fff;
    box-shadow: -15px 0 50px;
}

.acheter_b:before{
    content: '';
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgb(022, 20, 152, 1);
    filter: blur(4px);
    transition: 5s;
    z-index: -1;
}
.acheter_b:before{
    background-color: rgb(022, 20, 152, 1);
    transform: scaleX(5);
}

.section_bonbons,
.section_gateau,
.section_glace{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.section_bonbons h1,
.section_gateau h1,
.section_poudre h1
.tout_le_contenu{
    width: 100%;
    text-align: center;
    margin-bottom: 50px ;
    
}

.grille_articles{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 50px;

}
.article h3{
    
}


.footer {
    background-color: var(--primaire);
    color: white;
    padding: 20px 0;
    text-align: center;
    border: var(--secondaire) 4px solid;
}

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

.footer_social {
    margin-bottom: 20px;
}

.footer_social_icon {
    margin: 0 10px;
}

.footer_social_icon img {
    width: 30px;
    height: 30px;
}

.footer_links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer_link {
    color: white;
    margin: 5px 15px;
    text-decoration: none;
}

.footer_link:hover {
    text-decoration: underline;
}


@media (max-width: 650px){
    .headerTop_contenu{
        flex-direction: column;
        padding: 25px 0;
        row-gap: 18px;
    }   

    .logo_img{
        height: 60px;
        width: 60px;
    }

    .texte{
        padding: 0 10%;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer-social {
        margin-bottom: 0;
    }

    .footer-links {
        justify-content: flex-end;
    }

}
