/* =========================================
   STYLES SPÉCIFIQUES - ACCUEIL
   ========================================= */

/* En-tête de page */
.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background-color: var(--accent-dark);
    color: var(--bg-color);
    border-bottom: 5px solid var(--highlight-color);
}

.page-header h1 {
    color: var(--highlight-color);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header img {
    max-width: 1000px;
    max-height: 300px;
    height: auto;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .page-header .desktop {
        display: none;
    }
}

@media (min-width: 769px) {
    .page-header .mobile {
        display: none;
    }
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections communes de l'accueil */





/*
==============
Partenaires
==============
*/
.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}
.partners-logos img {
    max-width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}