*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
}
header {
    background-color: #bf0000;
    color: Black;
    padding: 10px 20px;
}

header h1 {
    margin: 0;
    font-size: 24px;
}
.nav {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 20px 0;
    font-size: 18px;
}


.nav a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    border-radius: 20px;
}

.nav a:hover{
        text-decoration: bold;
        border: 2px solid black;
        border-radius: 8px;
        color : white;
}

body {
    font-family: Arial, sans-serif;
    background-color: #bf0000;
    color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about {
    max-width: 980px;        
    margin: 40px auto 0;     
    padding: 24px 16px;      
    border-top: 1px solid rgba(0,0,0,.25); 
}

.about h2 {
    margin: 0 0 12px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.6rem;       
}

.about h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: rgba(0,0,0,.6);   
    margin: 10px auto 0;
    border-radius: 2px;
}

.about p {
    margin: 0 auto;
    max-width: 70ch;        
    text-align: center;
    line-height: 1.7;
    color: #000;             
    opacity: .9;             
}




.news > h2 {

    max-width: 980px;
    margin: 40px auto 12px;  
    padding-top: 24px;       
    border-top: 1px solid rgba(0,0,0,.25);

    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.6rem;
}


.news > h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: rgba(0,0,0,.6);
    margin: 10px auto 0;
    border-radius: 2px;
}




h1 {
    margin-top: 20px;
    font-size: 2rem;
}
.articles {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px;
}
.article {
    background-color: #fff;
    border: 1px solid #bf0000;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    padding: 10px;
}
.illus {
    max-width: 100%;
    border-radius: 8px 8px 0 0;
}
.article h2 {
    font-size: 1.2rem;
    margin: 10px 0;
}
.article p {
    font-size: 0.9rem;
    color: #555;
}
.article a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

.boutique {
    margin: 40px auto;
    max-width: 1200px;
}


.boutique > h2 {
    max-width: 980px;
    margin: 40px auto 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,.25);

    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1.6rem;
}

.boutique > h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    background: rgba(0,0,0,.6);
    margin: 10px auto 0;
    border-radius: 2px;
}


.products {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product {
    background: #000;
    border: 2px solid #600;
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product img {
    width: 180px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto 10px;
}

.product h3 {
    margin: 5px 0 0;
    font-size: 1rem;
    color: #fff;
}

.product p {
    margin: 3px 0;
    font-size: 0.9rem;
    color: #fff;
}


.products:hover .product {
    filter: blur(2px) brightness(0.7);
    transform: scale(0.95);
}


.products .product:hover {
    filter: none;
    transform: scale(1.05);
    z-index: 2;
}

footer {
    background-color: #bf0000; /* Rouge vif */
    overflow: hidden;
    position: relative;
    height: 60px;
}

.bandeau {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.logos {
    display: flex;
    gap: 60px;
    animation: defilement 20s linear infinite;
}

.logos img {
    height: 40px;
    object-fit: contain;
}

@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

