/* ===== CORRECTION DE L'INTENSITÉ DU DÉGRADÉ DE FOND ===== */

/* 
 * Ajustement du dégradé bleu pour qu'il soit encore plus subtil
 * tout en conservant la teinte caractéristique
 */

/* Dégradé bleu plus subtil pour le fond du site */
body {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02) 0%, rgba(52, 152, 219, 0.01) 100%) !important;
    background-attachment: fixed !important;
}

/* Assurer que les sections avec background spécifique conservent leur couleur */
.activity-gallery-section,
.activity-info-section,
.similar-activities-section {
    background-color: var(--background-light) !important; /* Maintient le fond gris clair pour ces sections */
}

/* Sections qui doivent rester transparentes */
.categories-section,
.how-it-works-section,
.differentiators-section,
.mission-section {
    background-color: transparent !important;
}