/* ═══════════════════════════════════════════════
   GRADIANT THEME — Couleurs EduWeb
   Charte graphique officielle EduWeb v2.0
   Remplace la palette rose/violet par vert/orange EduWeb
═══════════════════════════════════════════════ */

:root {
    /* Dégradé principal EduWeb : Vert principal → Vert foncé */
    --sp-gradient1: linear-gradient(-137deg, #3aaf7f 0%, #1e7d55 100%);

    /* Dégradé secondaire : Vert foncé → Fond sombre logo */
    --sp-gradient2: linear-gradient(137deg, #2d3e36 0%, #1a3328 100%);

    /* Blanc */
    --sp-green:  #3aaf7f;
    --sp-white:  #ffffff;

    /* Fond clair EduWeb */
    --sp-primary-light: #eaf7f1;

    /* ─── COULEUR PRIMAIRE : Vert EduWeb ─── */
    --sp-primary:  #3aaf7f;
    --sp-primary2: #2a9d6f;

    /* ─── COULEUR SECONDAIRE : Fond sombre logo ─── */
    --sp-secondary:  #2d3e36;
    --sp-secondary2: #1a3328;
    --sp-secondary-dark: #1a1f1c;

    /* ─── BORDURES ─── */
    --sp-border-dark:        #c0ddd0;
    --sp-border-light:       #dff0e6;
    --sp-border-extra-light: #eaf7f1;

    /* Scrollbar */
    --sp-scrollbar-thumb: #5cc99a;

    /* Typographie : Montserrat (titres) + Inter (corps) — conformes charte EduWeb */
    --sp-font-sans-serif: "Inter", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --sp-font-monospace:  SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

    /* Ombre EduWeb */
    --sp-shadow:     2px 5px 20px rgba(58, 175, 127, 0.15);
    --sp-radius:     6px;
    --sp-transition: all .3s cubic-bezier(.645,.045,.355,1);

    /* ─── VARIABLES BONUS EduWeb ─── */
    --ew-green:        #3aaf7f;
    --ew-green-dark:   #1e7d55;
    --ew-green-light:  #5cc99a;
    --ew-green-pale:   #eaf7f1;
    --ew-orange:       #f5a623;
    --ew-orange-dark:  #d4891a;
    --ew-dark-bg:      #2d3e36;
    --ew-dark:         #1a1f1c;
}

/* ---//--- */

/* --- Selection Colors — EduWeb Orange --- */
::-webkit-selection {
    background-color: var(--ew-orange);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}
::selection {
    background-color: var(--ew-orange);
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
}

/* ---//--- */

/* --- Scrollbar Colors — EduWeb Green --- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: var(--sp-border-extra-light);
}
::-webkit-scrollbar-thumb {
    background-color: var(--ew-green);
    border-radius: 8px;
}
::-webkit-scrollbar-corner {
    background-color: var(--sp-border-extra-light);
}

/* ---//--- */

/* ─── ACCENTUATION ORANGE SUR LES CTA ─── */
/* Les boutons CTA, liens d'action, badges importants
   utilisent l'orange EduWeb (#f5a623) conformément à la charte */

.gradiant-btn-primary,
.gradiant-btn,
input[type="submit"],
button[type="submit"],
.wp-block-button__link {
    background: linear-gradient(135deg, #3aaf7f, #1e7d55) !important;
    border-color: #3aaf7f !important;
    color: #ffffff !important;
}

.gradiant-btn-primary:hover,
.gradiant-btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.wp-block-button__link:hover {
    background: linear-gradient(135deg, #f5a623, #d4891a) !important;
    border-color: #f5a623 !important;
}

/* Liens */
a { color: var(--ew-green-dark); }
a:hover { color: var(--ew-orange); }
