/**
 * ADEQUATION PACA - Dégradé Global
 * Dégradé symétrique : jaune foncé (gauche) → jaune clair (centre) → violet clair (centre) → violet foncé (droite)
 * Couleurs pastelles de la carte de visite
 */

body {
    background: linear-gradient(to right,
        #fde68a 0%,
        #fef3c7 20%,
        #fffbeb 40%,
        #ffffff 50%,
        #f3e8ff 60%,
        #e9d5ff 80%,
        #c084fc 100%) fixed !important;
    background-attachment: fixed !important;
    min-height: 100vh;
}

html {
    background: linear-gradient(to right,
        #fde68a 0%,
        #fef3c7 20%,
        #fffbeb 40%,
        #ffffff 50%,
        #f3e8ff 60%,
        #e9d5ff 80%,
        #c084fc 100%) fixed !important;
}

/* Pour les sections qui doivent rester transparentes et laisser voir le dégradé */
#middle {
    background: transparent !important;
}

.middle_inner {
    background: transparent !important;
}

.content_wrap {
    background: transparent !important;
}
