* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
}



.icones a {
    text-decoration: none; /* Enlever le soulignement par défaut */
    color: inherit; /* Conserver la couleur actuelle de l'icône */
}

.icones a:hover {
    color: #E6A700; /* Optionnel : effet hover identique à celui de l'icône */
}

nav {
    text-transform: uppercase;
}

.entete-superieur {
    background: #692FA0;
    color: #fff;
    font-size: 0.9rem;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #fff;
}
.entete-superieur .bouton {
    background: #692FA0;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    display: inline-block;
    padding: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
}

.entete-superieur .texte-deroulant {
    text-align: center;
    flex: 1;
    font-style: italic;
    font-size: 0.85rem;
}

.bouton {
    display: inline-block;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF; /* Couleur de fond */
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.bouton:hover {
    background-color: #692FA0; /* Couleur au survol */
}


.entete {
    background: #002D74;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #fff;
}

.logo img {
    max-height: 60px;
}

.barre-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.barre-navigation ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.barre-navigation ul li {
    position: relative;
}

.barre-navigation ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.barre-navigation ul li a:hover {
    background-color: #E6A700;
    border: 1px solid #fff;
}

.barre-navigation ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #E6A700;
    padding: 10px;
    border-radius: 5px;
    list-style: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #fff;
    z-index: 15;
}

.barre-navigation ul li ul li a {
    color: #fff;
    font-weight: normal;
    display: block;
    padding: 5px 10px;
    transition: background 0.3s;
    border: 1px solid transparent;
}

.barre-navigation ul li ul li a:hover {
    background: #fff;
    color: #E6A700;
    border: 1px solid #E6A700;
}

.barre-navigation ul li:focus-within > ul {
    display: block;
}

.icones {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 20px;
    gap: 15px;
    cursor: pointer;
}

.icones i:hover {
    color: #E6A700;
}

@media (max-width: 768px) {
    .entete {
        flex-wrap: wrap;
    }

    .barre-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .barre-navigation ul li {
        text-align: center;
    }

    .barre-navigation ul li ul {
        position: static;
        box-shadow: none;
    }
}

@media (max-width: 480px) {
    .entete-superieur {
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
    }

    .entete {
        padding: 15px;
    }

    .barre-navigation ul li a {
        padding: 10px;
        font-size: 0.9rem;
    }

    .icones {
        font-size: 18px;
    }
}

.annonce {
    background-image: url(./divers/banniere.png);
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 125px 20px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #fff;
}

.contenu-annonce {
    background: #3333336d;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
    border: 2px solid #fff;
}

.annonce h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.annonce p {
    margin-bottom: 20px;
}

.annonce .bouton {
    background: #692FA0;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.annonce .bouton:hover {
    background: #002D74;
}

.vedette {
    padding: 25px 20px;
    background: linear-gradient(0deg, #692FA0, #002D74);
}

.vedette h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
}

.produits {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.produit {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 300px;
}


.vedette .produit .image {
    width: auto;
    height: 300px;
    border-radius: 5px;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
}

.produit h3 {
    margin: 10px 0;
}

.produit p {
    color: #333;
}



.produit .prix {
    margin-top: 10px;
}

.produit .prix .prix-base {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.produit .prix .prix-nouveau {
    color: #e03e00;
    font-weight: bold;
}

.produit .prix .promotion {
    font-size: 0.9rem;
    color: #007b00;
    margin-top: 5px;
}

.collection {
    padding: 25px;
    padding-bottom: 0px;
    background: linear-gradient(180deg, #692FA0, #5E3A95, #4A327F);
    color: #333;
}

.collection h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.collection p {
    margin-bottom: 20px;
    line-height: 1.5;
    color: white;
}

.collection .bouton {
    background: #0077b6;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.collection .block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.collection .texte {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.collection .image {
    flex: 1;
    min-width: 300px;
}

.collection .bouton:hover {
    background: #005f86;
}

.collection .modif {
    width: 95%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-size: cover;
    background-position: center;
}

footer {
    background: #002D74;
    color: #fff;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
}

footer .section-pied {
    flex: 1;
    margin: 10px;
    min-width: 200px;
}

footer .section-pied h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 1.1rem;
}

footer .section-pied ul {
    list-style: none;
    padding: 0;
}

footer .section-pied ul li {
    margin: 5px 0;
}

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

footer .section-pied ul li a:hover {
    color: #E6A700;
}

footer .icones-sociaux {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

footer .icones-sociaux a {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s;
}

footer .icones-sociaux a:hover {
    color: #E6A700;
}

@media (max-width: 768px) {
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    footer .section-pied {
        text-align: center;
    }

    footer .icones-sociaux {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
