:root {
    --bg-color: #DEC6A5;
    --text-color: #000000;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- SECTION HEADER --- */
.header-picon {
    width: 100%;
    text-align: center;
    position: relative; /* Important pour placer la ligne */
}

.header-picon h1 {
    font-family: serif; /* Ou votre police préférée */
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

/* Le bloc de texte bleu à droite */
.mots-bleus-double {
    display: block;
    text-align: right;
    color: #0000FF;
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.6; /* Espace suffisant pour voir le trait au milieu */
    padding-right: 20px; /* Petit espace par rapport au bord droit */
    position: relative;
}

/* La ligne qui traverse tout */
.mots-bleus-double::before {
    content: "";
    position: absolute;
    left: 20px;  /* Départ de la ligne à gauche */
    right: 20px; /* Fin de la ligne à droite (va jusqu'au bout des mots) */
    top: 50%;    /* Centré verticalement dans le texte */
    height: 2px;
    background-color: #000; /* Couleur noire du trait */
    z-index: -1; /* Place la ligne DERRIÈRE le texte */
}

/* --- CONTENU PRINCIPAL --- */

main {
    flex: 1;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
h2 {
    font-size: 2.8rem; /* Modifiez ce chiffre pour ajuster la taille */
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}
.mini-logo {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: sub; /* Aligne l'icône sur la ligne de texte */
}

/* --- FOOTER --- */

footer {
    text-align: center;
    padding: 2rem;
    margin-top: auto;
    font-size: 1.2rem; /* Police augmentée */
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
    text-decoration: none;
    color: #0000FF;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
