/* 
   Projet 4IWPB - Site de presse El Universal Venezuela
   Auteur: NDAYE BEYA Christian
   Date: Mars 2026
   
   J'ai essayé de respecter toutes les consignes :
   - Couleur dominante : violet
   - Polices : Georgia (texte), Open Sans (titres), Consolas (menu)
   - Pas de border-radius
   - Pas de @media (Bootstrap fait le job)
*/

/* ===== RESET SIMPLE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f5f0f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== HEADER - COULEUR VIOLET ===== */
header {
    background-color: #6a1b9a;
}

.navbar {
    background-color: #6a1b9a;
    padding: 0.8rem 0;
}

.navbar-brand .logo {
    height: 50px;
    width: auto;
}

/* Menu : police Consolas comme demandé */
.navbar-nav .nav-link {
    font-family: Consolas, monospace;
    color: white !important;
    font-size: 1rem;
    padding: 0.5rem 1.2rem;
}

.navbar-nav .nav-link:hover {
    background-color: #4a0072;
}

/* ===== MAIN ===== */
main {
    flex: 1;
    padding: 2rem 0;
}

/* ===== TITRES DE SECTION ===== */
.section-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #6a1b9a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6a1b9a;
}

/* ===== PAGE ACCUEIL ===== */
.main-article {
    background: white;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-article h3 {
    font-family: 'Open Sans', sans-serif;
    margin: 1rem 0 0.5rem;
}

.lire-suite {
    font-family: Consolas, monospace;
    color: #6a1b9a;
    text-decoration: none;
    font-weight: bold;
}

.side-articles {
    background: white;
    padding: 0.5rem;
}

.side-item {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
}

.side-item h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.card-article {
    background: white;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.card-article h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    margin: 0.7rem 0 0.3rem;
}

.card-article .date {
    font-family: Consolas, monospace;
    font-size: 0.75rem;
    color: #888;
}

/* ===== PAGE ARTICLE ===== */
.article-header h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.meta {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.auteur, .date-article {
    font-family: Consolas, monospace;
    margin-right: 1rem;
}

.tag {
    background: #eee;
    padding: 0.2rem 0.5rem;
    margin-right: 0.5rem;
    font-family: Consolas, monospace;
    font-size: 0.8rem;
}

.chapo {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    border-left: 3px solid #6a1b9a;
    padding-left: 1rem;
}

.contenu-article h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

/* Widget PDF en marge */
.widget-pdf {
    background: #f0e6f5;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.widget-pdf button {
    background: #6a1b9a;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    font-family: Consolas, monospace;
    cursor: pointer;
}

.widget-pdf h3 {
    font-family: 'Open Sans', sans-serif;
    color: #6a1b9a;
}

.widget-populaires {
    background: white;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.widget-populaires h3 {
    font-family: 'Open Sans', sans-serif;
}

.widget-populaires ul {
    list-style: none;
}

.widget-populaires li {
    margin: 0.8rem 0;
}

/* ===== PAGE PERSONNALISATION ===== */
.sidebar-gauche, .sidebar-droite {
    background: #f8f0f8;
    padding: 1rem;
    min-height: 500px;
}

.widgets h3 {
    font-family: 'Open Sans', sans-serif;
    color: #6a1b9a;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid #6a1b9a;
}

.widget {
    margin-bottom: 1.2rem;
}

.widget label {
    display: