:root {
    /* Couleurs principales MIND */
    --mind-primary: #2563eb;       /* Bleu vif */
    --mind-primary-dark: #1d4ed8;  /* Bleu foncé */
    --mind-secondary: #7c3aed;     /* Violet */
    --mind-accent: #10b981;        /* Vert émeraude */
    --mind-light: #f8fafc;         /* Gris très clair */
    --mind-dark: #0f172a;          /* Bleu nuit */
    --mind-text: #334155;          /* Gris foncé pour le texte */
    
    /* Couleurs d'états */
    --mind-success: #10b981;
    --mind-warning: #f59e0b;
    --mind-error: #ef4444;
    --mind-info: #3b82f6;
    
    /* Dégradés */
    --mind-gradient: linear-gradient(135deg, var(--mind-primary), var(--mind-secondary));
    
    /* Espacements */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Rayons de bordure */
    --radius-sm: 0.25rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Styles de base pour le thème MIND */
body {
    color: var(--mind-text);
    background-color: var(--mind-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
}

/* Titres */
h1, h2, h3, h4, h5, h6 {
    color: var(--mind-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Liens */
a {
    color: var(--mind-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--mind-primary-dark);
    text-decoration: underline;
}

/* Boutons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--mind-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--mind-primary);
    border: 1px solid var(--mind-primary);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* Conteneur */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Section */
.section {
    padding: var(--space-xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: var(--mind-gradient);
    margin: var(--space-sm) auto 0;
    border-radius: var(--radius-full);
}

/* Cartes */
.card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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