* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('/static/Images/Fond_article.png'); 
    background-color: #261a12; 
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    
    color: #e2d1c3; 
    font-family: 'Lora', serif;
    margin: 0;

}

.Title-Bande h1 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    color: #f1e4d1;
    font-size: 3.5rem;
    margin: 50px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.Article-Option {
    text-align: center;
    margin-bottom: 40px;
}

.Article-Option button {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #8c7662;
    padding: 8px 20px;
    margin: 0 10px;
    border-radius: 4px;
}

.Article-Option button a {
    color: #e2d1c3;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.Articles {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.article-card {
    display: flex;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
    padding: 10px;
}

.article-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.article-card img {
    width: 240px;
    height: 160px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
}

.article-card h5, .article-card p, .article-card small {
    display: block;
}

.article-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #faf9f7;
    margin: 0 0 10px 0;
}

.article-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 8px;
    max-width: 600px;
}

.article-card small {
    color: #fffffe;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .article-card {
        flex-direction: column;
    }
    .article-card img {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
}