body {
    font-family: Fredoka, Arial, sans-serif;
    background-color: rgb(224, 210, 210);}

/* HEADER */
.navbar {
    margin: auto;
    background-color: rgb(180, 0, 0);
    border-radius: 2vh;
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    list-style: none;
    padding: 4vh 10vh;
}

.navbar li {
    position: relative;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size:1.2em;
    padding:6vh;  
    display: block;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: rgb(0, 0, 0);
}

/* Rectangle surligné */
.navbar a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 3vh;
    width: 0;
    height: 3px;
    background-color: rgb(0, 0, 0);
    transition: width 0.3s ease;
}

.navbar a:hover::before {
    width: 100%;
}

.logo{
    height: 140px;
    width: auto;
    padding-top: 2vh;
    padding-bottom: 2vh;
}


.h1 {
    text-align: center;
    font-size: x-large;
    padding-top: 20px;  
    display: block;
    height: 25px;
}

/*CORPS*/


.paragraphe_boutique{
    text-align: center;
    font-size: 1.2em;
    margin: 1em 0;
    color: #555;
    padding-top: 6vh;
 }

.paragraphe_boutique a{
    text-decoration: none;
    transition: color 0.3s;
}

.paragraphe_boutique a:hover{
    color :#e74c3c
}

.tous_les_articles {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 colonnes */
    gap: 1.5em; /* Espacement entre les produits */
    padding: 2em;
}

.article_boutique {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.5em; /* Réduire l'espacement interne */
    text-align: center;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Équilibrer les contenus verticalement */
}

.article_boutique img{
    width: 100%; /* Adaptation à la largeur du conteneur */
    max-width: 150px;
    height: auto;
    margin: 0 auto 1em;
}

.article_boutique h3 {
    font-size: 1em;
    margin: 0.5em 0;
}

.article_boutique p {
    font-size: 0.8em;
    margin: 0.5em 0;
}

.article_boutique .price {
    font-size: 1em; 
    font-weight: bold;
    color: #e74c3c;
}



/* FOOTER */


.article {
    flex: 1; /* Pour pousser le footer en bas de la page */
}


.footer {
    text-align: center;
    padding: 1em 0;
}

.texte_footer{
    padding-bottom: 3vh;
    color: #ffffff;
    text-align: right;
}

.footer-container {
    background-color: rgb(180, 0, 0);
    border-radius: 2vh;
    margin: 0 auto;
    padding: 0 1em;
}

.menu_bas{
    display: flex;
    justify-content: space-between=30vh;
    padding: 5vh 7vh 0vh 7vh;
}

.logo_bottom{
    height: 25vh;
    width: auto;
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding-left: 40vh;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover {
    color: #000000;
}
