/**
 * Bundle Acteurs — Styles pages acteurs/metiers (28+ pages)
 * Sources : auteur + auteur-quick-nav + acteurs
 * Sprint 4 — Consolidation CSS
 */

/* ============================================================
 * SOURCE: components/auteur.css
 * ============================================================ */
/* Fichier : assets/css/components/auteur.css */
/* Description : Styles pour la page guide de l'auteur */

/* Variables CSS */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e9ecef;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset et base */
.auteur-guide {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Hero Section */
.hero-auteur {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 180px;
}

.hero-auteur::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/pattern-overlay.png') repeat;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-auteur h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-auteur h1 i {
    margin-right: 1rem;
    color: var(--warning-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Navigation rapide - Styles déplacés vers quick-nav.css */

/* Sections communes */
.interaction-section {
    padding: 80px 0;
}

/* Compensation pour la navigation fixe */
.interaction-section:first-of-type {
    padding-top: 80px;
}

.alt-bg {
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h2 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Grilles de fonctionnalités */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Parcours de publication */
.publication-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

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

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

.path-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    text-align: center;
}

.path-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.path-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.path-content {
    padding: 2rem;
}

.path-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.path-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

/* Outils de promotion */
.promotion-tools {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.tool-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.tool-category h3 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tool-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.tool-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.tool-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.tool-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tool-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Réseau */
.network-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.network-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.network-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.network-icon i {
    font-size: 2rem;
    color: white;
}

.network-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.network-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.network-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.action-tag {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Formation */
.formation-categories {
    max-width: 1000px;
    margin: 0 auto;
}

.formation-tab-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    border: 2px solid var(--border-color);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.course-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--text-light);
}

.course-meta i {
    color: var(--secondary-color);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-category {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.service-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.service-category h3 i {
    margin-right: 1rem;
    color: var(--secondary-color);
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.service-item:hover {
    border-color: var(--secondary-color);
    background: var(--light-bg);
}

.service-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.service-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    background: var(--secondary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    height: 80px;
    min-height: 80px;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary,
.btn-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    font-size: 1rem;
    text-align: center;
    box-sizing: border-box;
}

.btn-primary {
    height: 100%;
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
    width: 400px;
}

.btn-primary:hover {
    background: white;
    color: var(--primary-color);
    
}

.btn-secondary {
    height: 100%;
    background: transparent;
    color: white;
    border: 2px solid white;
    box-shadow: none;
    width: 400px;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-auteur h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .quick-nav {
        gap: 1rem;
    }
    
    .nav-item {
        padding: 0.8rem 1rem;
        min-width: 80px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .publication-paths,
    .network-features,
    .courses-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .formation-tab-nav {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-auteur {
        padding: 60px 0;
    }
    
    .hero-auteur h1 {
        font-size: 2rem;
    }
    
    .interaction-section {
        padding: 60px 0;
    }
    
    .feature-card,
    .path-content,
    .network-card,
    .service-category {
        padding: 1.5rem;
    }
}

/* ============================================================
 * SOURCE: components/auteur-quick-nav.css
 * ============================================================ */
/* Fichier : assets/css/components/auteur-quick-nav.css */
/* Description : Navigation rapide spécifique à la page Guide de l'Auteur */

/* Variables CSS spécifiques à la navigation auteur */
:root {
    --auteur-nav-bg: white;
    --auteur-nav-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --auteur-nav-border: #e9ecef;
    --auteur-nav-text: #333;
    --auteur-nav-text-light: #666;
    --auteur-nav-primary: #3498db;
    --auteur-nav-hover-bg: #f8f9fa;
    --auteur-nav-transition: all 0.3s ease;
    --auteur-nav-radius: 8px;
}

/* Navigation rapide spécifique à la page auteur */
.auteur-quick-nav-section {
    background: var(--auteur-nav-bg);
    padding: 1rem 0;
    box-shadow: var(--auteur-nav-shadow);
    position: sticky;
    top: 180px;
    left: 0;
    right: 0;
    z-index: 999;
    width: 100%;
    border-bottom: 1px solid var(--auteur-nav-border);
}

.auteur-quick-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.auteur-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 1.2rem;
    text-decoration: none;
    color: var(--auteur-nav-text);
    border-radius: var(--auteur-nav-radius);
    transition: var(--auteur-nav-transition);
    min-width: 90px;
}

.auteur-nav-item:hover {
    background: var(--auteur-nav-hover-bg);
    transform: translateY(-2px);
    color: var(--auteur-nav-primary);
}

.auteur-nav-item.active {
    background: var(--auteur-nav-primary);
    color: white;
}

.auteur-nav-item.active:hover {
    background: var(--auteur-nav-primary);
    color: white;
    opacity: 0.9;
}

.auteur-nav-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--auteur-nav-primary);
    transition: var(--auteur-nav-transition);
}

.auteur-nav-item:hover i,
.auteur-nav-item.active i {
    color: inherit;
}

.auteur-nav-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Design pour la navigation auteur */
@media (max-width: 768px) {
    .auteur-quick-nav-section {
        top: 200px; /* Ajustement pour mobile si nécessaire */
        padding: 0.8rem 0;
    }
    
    .auteur-quick-nav {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .auteur-nav-item {
        padding: 0.6rem 1rem;
        min-width: 80px;
    }
    
    .auteur-nav-item i {
        font-size: 1.3rem;
    }
    
    .auteur-nav-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .auteur-quick-nav {
        gap: 0.5rem;
        justify-content: space-around;
    }
    
    .auteur-nav-item {
        padding: 0.5rem 0.8rem;
        min-width: 70px;
    }
    
    .auteur-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .auteur-nav-item span {
        font-size: 0.75rem;
    }
}

/* Animation pour l'apparition de la navigation auteur */
.auteur-quick-nav-section {
    animation: auteurSlideDown 0.3s ease-out;
}

@keyframes auteurSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Styles pour les indicateurs de progression auteur */
.auteur-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--auteur-nav-primary);
    transition: var(--auteur-nav-transition);
    transform: translateX(-50%);
}

.auteur-nav-item.active::after {
    width: 80%;
}

.auteur-nav-item {
    position: relative;
}

/* Amélioration de l'accessibilité pour la navigation auteur */
.auteur-nav-item:focus {
    outline: 2px solid var(--auteur-nav-primary);
    outline-offset: 2px;
}

.auteur-nav-item:focus:not(:focus-visible) {
    outline: none;
}

/* Support pour les thèmes sombres - navigation auteur */
@media (prefers-color-scheme: dark) {
    :root {
        --auteur-nav-bg: #2c3e50;
        --auteur-nav-text: #ecf0f1;
        --auteur-nav-text-light: #bdc3c7;
        --auteur-nav-border: #34495e;
        --auteur-nav-hover-bg: #34495e;
    }
}

/* ============================================================
 * SOURCE: components/acteurs.css
 * ============================================================ */
/* ===================================================================
   ACTEURS PAGE - Styles pour la page des acteurs de la chaîne du livre
   =================================================================== */

:root {
    --acteurs-bg: #f8fafc;
    --acteurs-card: #ffffff;
    --acteurs-text: #0f172a;
    --acteurs-muted: #64748b;
    --acteurs-border: #e2e8f0;
    --acteurs-shadow: rgba(0, 0, 0, 0.1);
    --acteurs-hover-shadow: rgba(0, 0, 0, 0.15);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */

.hero-acteurs {
    background: linear-gradient(135deg, var(--acteurs-bg) 0%, #e0f7fa 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--acteurs-border);
}

.hero-acteurs .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--acteurs-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-acteurs .hero-content h1 i {
    color: #0ea5e9;
    font-size: 2.2rem;
}

.hero-acteurs .hero-subtitle {
    font-size: 1.1rem;
    color: var(--acteurs-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================================================
   LAYOUT PRINCIPAL
   =================================================================== */

.acteurs-page {
    background: var(--acteurs-bg);
    min-height: 100vh;
}

.acteurs-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.acteurs-page h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--acteurs-text);
    margin: 30px 0 20px 0;
    text-align: center;
}

/* ===================================================================
   SECTION FILTRES
   =================================================================== */

.filtres-section {
    margin-bottom: 40px;
    text-align: center;
}

.filtres {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.filtre-btn {
    padding: 10px 20px;
    background: var(--acteurs-card);
    border: 2px solid var(--acteurs-border);
    border-radius: 25px;
    color: var(--acteurs-text);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filtre-btn:hover,
.filtre-btn.active {
    background: #0ea5e9;
    border-color: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

/* ===================================================================
   GRILLE DES ACTEURS
   =================================================================== */

.acteurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.acteur-card {
    background: var(--acteurs-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--acteurs-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.acteur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px var(--acteurs-hover-shadow);
}

/* ===================================================================
   HEADER DE CARTE
   =================================================================== */

.acteur-header {
    padding: 25px;
    border-bottom: 1px solid var(--acteurs-border);
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 4px solid;
}

.acteur-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.acteur-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--acteurs-text);
}

/* ===================================================================
   CONTENU DE CARTE
   =================================================================== */

.acteur-content {
    padding: 25px;
}

.acteur-description {
    color: var(--acteurs-muted);
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-size: 15px;
}

.acteur-etapes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.etape-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(14, 165, 233, 0.1);
    color: #0369a1;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

/* ===================================================================
   FOOTER DE CARTE
   =================================================================== */

.acteur-footer {
    padding: 0 25px 25px 25px;
}

.btn-acteur {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-acteur:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.btn-acteur i {
    transition: transform 0.3s ease;
}

.btn-acteur:hover i {
    transform: translateX(3px);
}

/* ===================================================================
   NOTE
   =================================================================== */

.note {
    background: var(--acteurs-card);
    border: 2px dashed var(--acteurs-border);
    padding: 20px;
    border-radius: 12px;
    margin-top: 40px;
    text-align: center;
    color: var(--acteurs-muted);
}

.note strong {
    color: #0ea5e9;
}

/* ===================================================================
   ANIMATIONS ET FILTRES
   =================================================================== */

.acteur-card[data-hidden="true"] {
    display: none;
}

.acteur-card {
    animation: fadeInUp 0.6s ease forwards;
}

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

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

@media (max-width: 768px) {
    .hero-acteurs .hero-content h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-acteurs .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .filtres {
        gap: 8px;
    }
    
    .filtre-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .acteurs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .acteur-header {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .acteur-content {
        padding: 20px;
    }
    
    .acteur-footer {
        padding: 0 20px 20px 20px;
    }
    
    .acteurs-page .container {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .hero-acteurs {
        padding: 40px 0;
    }
    
    .hero-acteurs .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .acteur-header {
        padding: 15px;
    }
    
    .acteur-content {
        padding: 15px;
    }
    
    .acteur-footer {
        padding: 0 15px 15px 15px;
    }
    
    .btn-acteur {
        padding: 10px 16px;
        font-size: 13px;
    }
}
