/*
Theme Name: Evolution
Theme URI: https://evolution-mouvement.fr
Description: Thème personnalisé pour le mouvement Evolution - Design vibrant et moderne, optimisé mobile-first
Author: Vincent Marcé
Author URI: https://evolution-mouvement.fr
Template: twentytwentyfive
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: evolution-theme
Tags: politique, modern, responsive, mobile-first
*/

:root {
    --primary-blue: #3b82f6;
    --vibrant-green: #10b981;
    --warm-gold: #f59e0b;
    --fresh-cyan: #06b6d4;
    --deep-purple: #7c3aed;
    --warm-coral: #f97316;
    --dark: #1f2937;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:focus {
    color: var(--vibrant-green);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
    p { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
    h1 { font-size: 5rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2rem; }
    p { font-size: 1.1rem; }
}


/* HEADER */
#evolution-header {position:fixed;top:-200px;background-color:transparent;width:100%;/*border-bottom:1px solid #ddd;*/z-index:999;transition:all .3s}
#evolution-header.show {top:0;}
#evolution-header-container {width:100%;max-width:1140px;display:flex;flex-wrap:wrap;align-items:center;margin:auto;padding:20px}
#evolution-header-logo {width:150px;}
#evolution-header-logo img {width:100%}
#evolution-header-nav {width:calc(100% - 175px);text-align:right;font-size:16px}
#evolution-header-nav ul {list-style-type:none;margin:0;padding:0}
#evolution-header-nav ul > li {display:inline-block;padding:12px 0;margin-left:20px}
#evolution-header-nab ul > li.current-menu-item a {font-weight:600}
#evolution-header-nav ul > li a {color:#1f2937;text-decoration:none}
#evolution-header-nav ul > li > ul {display:none;position: absolute;left: 0;top:100%;width: 225px;background-color: #02162f;text-align: left;border:0;padding: 25px;}
#evolution-header-nav ul > li > ul > li {display:block;padding:0;margin-left:0;margin-bottom:0.5em}
#evolution-header-nav ul > li > ul > li a {color:#1f2937;font-size:14px} 
#evolution-header-nav ul > li > ul > li > ul {position:relative;width:auto;border:0;padding:0}
#evolution-header-nav ul > li > ul > li > ul > li {padding:0;margin-left:33px}
#evolution-header-nav ul > li > ul > li > ul > li a {font-size:12px}

/* BURGER */
#evolution-header-burger {display:none;position: absolute;top: 25px;right: 20px;width: 30px;height: 30px;padding: 4px;transition: .25s;z-index: 10;}
.header-burger-bar {position: absolute;border-radius: 3px;width: 80%;transition: .5s;}
.header-burger-bar-top {height: 1px;background-color: #138584;border-bottom: none;top: 0;}
.header-burger-bar-middle {width:50%;height: 1px;background-color:#138584;top: 8px;}
.header-burger-bar-bottom {height: 1px;background-color:#138584;border-top: none;top: 16px;}
.header-burger-open .header-burger-bar-top {transform: rotate(45deg) translate(6px,5px);transition: .5s;background-color:#138584}
.header-burger-open .header-burger-bar-middle {transform: translate(230px);transition: .1s ease-in;opacity: 0;background-color:#138584}
.header-burger-open .header-burger-bar-bottom {transform: rotate(-45deg) translate(6px, -5px);transition: .5s;background-color:#138584}

@media all and (max-width:1024px){

	/* HEADER */
	#evolution-header-container {display:block}
	#evolution-header-nav {display:none;width:100%;text-align:left}
	#evolution-header-nav ul > li {display:block;margin-left:0;margin-bottom:0.5em;background-color:#02162f;padding:12px}
	#evolution-header-burger {display:block}
	.evolution-header-button {background-color:#02162f !important}
	#evolution-header-nav ul > li > a {color:#fff}
	#evolution-header-nav ul > li > ul {position:relative;display:block;background:transparent}
	#evolution-header-nav ul > li > ul > li a {color:#fff;}
    
}
@media all and (max-width:768px){

}


.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1400px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
}

.content-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .content-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1024px) {
    .content-section {
        padding: 6rem 0;
    }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.visible {
    transform: translateY(0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 1rem 2rem;
    }
}

.site-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--vibrant-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 1001;
}

@media (min-width: 768px) {
    .site-logo {
        font-size: 1.8rem;
    }
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle span {
    width: 2rem;
    height: 0.2rem;
    background: var(--dark);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 300px;
    background: white;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
    z-index: 1000;
}

.main-navigation.active {
    transform: translateX(0);
}

.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-navigation li {
    margin-bottom: 1.5rem;
}

.main-navigation a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--dark);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-height: 44px;
}

.main-navigation a:hover,
.main-navigation a:focus {
    color: var(--primary-blue);
    background: rgba(59, 130, 246, 0.05);
}

@media (min-width: 1024px) {
    .main-navigation {
        position: static;
        width: auto;
        max-width: none;
        transform: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
        overflow-y: visible;
    }
    
    .main-navigation ul {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .main-navigation li {
        margin-bottom: 0;
    }
    
    .main-navigation a {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 999;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 1024px) {
    .menu-overlay {
        display: none;
    }
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 8px;
    height: 8px;
    background: rgba(59, 130, 246, 0.6);
    top: 20%;
    left: 10%;
}

.floating-shape:nth-child(2) {
    width: 12px;
    height: 12px;
    background: rgba(16, 185, 129, 0.5);
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 6px;
    height: 6px;
    background: rgba(245, 158, 11, 0.7);
    top: 40%;
    left: 5%;
    animation-delay: 4s;
}

.floating-shape:nth-child(4) {
    width: 10px;
    height: 10px;
    background: rgba(124, 58, 237, 0.4);
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.floating-shape:nth-child(5) {
    width: 14px;
    height: 14px;
    background: rgba(6, 182, 212, 0.5);
    top: 15%;
    left: 75%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: heroAppear 1.5s ease-out;
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3); }
    to { text-shadow: 0 2px 30px rgba(255, 255, 255, 0.2); }
}

.hero-tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .hero-tagline { font-size: 1.6rem; }
}

@media (min-width: 1024px) {
    .hero-tagline {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

@media (min-width: 768px) {
    .hero-subtitle { font-size: 1.2rem; }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
    }
}

.hero-cta {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: callToActionPulse 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .hero-cta {
        padding: 1.75rem 2rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .hero-cta {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }
}

@keyframes callToActionPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.4); }
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s;
    cursor: pointer;
    border: none;
    min-height: 44px;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vibrant-green), var(--primary-blue));
    color: white;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.6);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

@media (min-width: 640px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .content-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        margin: 3rem 0;
    }
}

.content-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .content-card {
        padding: 2.5rem;
    }
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
}

.content-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .content-card h4 {
        font-size: 1.3rem;
    }
}

.modern-toc {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .modern-toc {
        padding: 3rem;
        margin: 4rem 0;
    }
}

.modern-toc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--vibrant-green), var(--warm-gold));
}

.modern-toc h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .modern-toc h3 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .toc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.toc-card {
    background: linear-gradient(135deg, var(--light), white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .toc-card {
        padding: 2.5rem;
    }
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-blue);
    transform: scaleY(0);
    transition: transform 0.4s;
}

.toc-card:nth-child(2)::before { background: var(--vibrant-green); }
.toc-card:nth-child(3)::before { background: var(--warm-gold); }

.toc-card:hover::before {
    transform: scaleY(1);
}

.toc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.toc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--fresh-cyan));
    color: white;
}

.toc-card:nth-child(2) .toc-icon {
    background: linear-gradient(135deg, var(--vibrant-green), var(--fresh-cyan));
}

.toc-card:nth-child(3) .toc-icon {
    background: linear-gradient(135deg, var(--warm-gold), var(--warm-coral));
}

.quote-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .quote-highlight {
        padding: 2.5rem;
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .quote-highlight {
        padding: 2rem 3rem;
        font-size: 1.2rem;
    }
}

.quote-highlight strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.engaging-question {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (min-width: 768px) {
    .engaging-question {
        margin: 4rem 0;
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .engaging-question {
        margin: 5rem 0;
        padding: 3rem;
    }
}

.engaging-question p {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-blue);
}

@media (min-width: 1024px) {
    .engaging-question p {
        font-size: 1.6rem;
    }
}

.engaging-question strong {
    color: var(--vibrant-green);
}

.principle-list {
    max-width: 1000px;
    margin: 0 auto;
}

.principle-item {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--vibrant-green);
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .principle-item {
        padding: 2.5rem;
        margin: 2.5rem 0;
    }
}

@media (min-width: 1024px) {
    .principle-item {
        margin: 3rem 0;
    }
}

.principle-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 40px rgba(16, 185, 129, 0.15);
}

.principle-item h4 {
    color: var(--vibrant-green);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@media (min-width: 1024px) {
    .principle-item h4 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
}

.bg-light {
    background: linear-gradient(180deg, #ffffff, var(--light));
}

.bg-gray {
    background: var(--gray-50);
}

.bg-pattern {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.bg-vibrant {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
}

.bg-vibrant h2,
.bg-vibrant h3 {
    color: white;
}

.bg-vibrant .content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.1);
}

.bg-vibrant .content-card h4 {
    color: var(--fresh-cyan);
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center { text-align: center; }

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .section-intro {
        font-size: 1.4rem;
        margin-bottom: 4rem;
    }
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .content-text {
        font-size: 1.1rem;
    }
}

.content-text strong {
    color: var(--dark);
    font-weight: 600;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

*:focus-visible {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 4rem 0 2rem;
    }
}

.site-footer a {
    color: var(--gray-200);
}

.site-footer a:hover {
    color: white;
}


/**
 * Elementor Compatibility Styles
 * 
 * Ce fichier complète le style.css principal pour assurer
 * une bonne intégration avec Elementor.
 * À ajouter dans style.css ou charger séparément.
 */

/* ==========================================================================
   RESET ELEMENTOR - Éviter les conflits
   ========================================================================== */

/* Laisser Elementor gérer ses propres containers */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px;
}

.elementor-section.elementor-section-full_width > .elementor-container {
    max-width: 100%;
}

/* Page Elementor : pleine largeur sans marges parasites */
body.elementor-page .site-main {
    padding: 0;
    margin: 0;
    max-width: 100%;
}

/* ==========================================================================
   CLASSES UTILITAIRES POUR ELEMENTOR
   Utilise ces classes dans le champ "CSS Classes" des widgets Elementor
   ========================================================================== */

/* Fond dégradé violet (identique au thème) */
.bg-evolution-gradient {
    background: linear-gradient(135deg, #2D1B4E 0%, #1a1a2e 50%, #0d0d15 100%) !important;
}

/* Fond violet semi-transparent */
.bg-evolution-purple {
    background: rgba(138, 43, 226, 0.1) !important;
}

/* Texte couleur accent */
.text-evolution-accent {
    color: #E87A41 !important;
}

/* Texte couleur primaire */
.text-evolution-primary {
    color: #9D4EDD !important;
}

/* Bordure accent */
.border-evolution-accent {
    border-color: #E87A41 !important;
}

/* ==========================================================================
   BOUTONS - Styles Evolution pour Elementor
   ========================================================================== */

/* Bouton primaire */
.elementor-widget-button .elementor-button.btn-evolution-primary,
.btn-evolution-primary {
    background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px 40px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.4) !important;
}

.elementor-widget-button .elementor-button.btn-evolution-primary:hover,
.btn-evolution-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 30px rgba(157, 78, 221, 0.6) !important;
}

/* Bouton secondaire (outline) */
.elementor-widget-button .elementor-button.btn-evolution-secondary,
.btn-evolution-secondary {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50px !important;
    padding: 14px 38px !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.elementor-widget-button .elementor-button.btn-evolution-secondary:hover,
.btn-evolution-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* ==========================================================================
   SECTIONS - Styles pour les sections Elementor
   ========================================================================== */

/* Section Hero */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Section standard avec padding */
.section-evolution {
    padding: 100px 0;
}

.section-evolution-small {
    padding: 60px 0;
}

/* ==========================================================================
   CARTES - Style pour les cards dans Elementor
   ========================================================================== */

.card-evolution {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 40px !important;
    transition: all 0.3s ease !important;
}

.card-evolution:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(157, 78, 221, 0.3) !important;
    transform: translateY(-5px) !important;
}

/* ==========================================================================
   TYPOGRAPHIE - Styles texte pour Elementor
   ========================================================================== */

/* Titre principal hero */
.elementor-widget-heading .title-hero,
.title-hero {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 300 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
}

/* Titre de section */
.elementor-widget-heading .title-section,
.title-section {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

/* Texte lead (introduction) */
.text-lead {
    font-size: 1.25rem !important;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8 !important;
}

/* ==========================================================================
   ANIMATIONS - Classes d'animation réutilisables
   ========================================================================== */

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délais d'animation */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ==========================================================================
   FORMULAIRE - Style du formulaire d'inscription
   ========================================================================== */

.evolution-form input[type="text"],
.evolution-form input[type="email"],
.evolution-form input[type="date"],
.evolution-form select,
.elementor-field-textual {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.evolution-form input:focus,
.elementor-field-textual:focus {
    outline: none !important;
    border-color: #9D4EDD !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.2) !important;
}

/* ==========================================================================
   ICÔNES - Style pour les icon boxes Elementor
   ========================================================================== */

.elementor-widget-icon-box.icon-evolution .elementor-icon {
    background: linear-gradient(135deg, #9D4EDD 0%, #7B2CBF 100%) !important;
    border-radius: 16px !important;
    padding: 20px !important;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 767px) {
    .section-evolution {
        padding: 60px 0;
    }
    
    .card-evolution {
        padding: 25px !important;
    }
}
