/* ------------------------------------ *
 CSS
 vendredi 17 juillet 2026 08:51:24
 HAPedit 3.1.11.111
 * ------------------------------------ */
 /* ------------------------------
   HEADER MODERNE
--------------------------------*/
#header-container {
    width: 95%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Colonnes */
#header-left, #header-center, #header-right {
    flex: 1;
    min-width: 280px;
}

/* Logo */
.header-logo {
    width: 100%;
    max-width: 180px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

/* Cartes d'information */
.info-card {
    background: var(--blanc);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 5px solid var(--bleu-moyen);
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--bleu-fonce);
    margin-bottom: 8px;
}

.info-content {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 900px) {
    #header-container {
        flex-direction: column;
        align-items: center;
    }

    #header-left, #header-center, #header-right {
        width: 100%;
    }
}


