/* PLC Forge & Games - Formation Stylesheet avec style Forum */

/* Variables de couleurs reprises du thème du forum */
:root {
    /* Palette principale - Thème de flamme */
    --primary-color: #e63900;    /* Rouge feu plus profond */
    --secondary-color: #ff7700;   /* Orange flamme vif */
    --accent-color: #ffb700;      /* Jaune doré */
    --dark-color: #2a2a2a;        /* Noir charbon */
    --light-color: #f8f4e8;       /* Blanc cassé chaud */
    --danger-color: #cc2936;      /* Rouge danger ajusté */
    --success-color: #2a9d4a;     /* Vert succès ajusté */
    
    /* Couleurs pour effets pixel art */
    --pixel-red: #e63900;         /* Aligné avec primary */
    --pixel-orange: #ff7700;      /* Aligné avec secondary */
    --pixel-yellow: #ffb700;      /* Aligné avec accent */
    --pixel-dark: #1a1a1a;        /* Noir plus profond pour contraste */
    --pixel-light: #fff8e8;       /* Blanc chaud pour pixel art */
    
    /* Couleurs additionnelles pour dégradés */
    --flame-dark: #992600;        /* Rouge foncé pour dégradés profonds */
    --flame-highlight: #ffcc55;   /* Jaune clair pour effets de brillance */
}

/* Styles généraux */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

/* Bannière principale */
.formation-banner {
    background: linear-gradient(135deg, var(--dark-color), #3a3a3a);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    border-top: 4px solid var(--secondary-color);
    border-bottom: 4px solid var(--secondary-color);
}

/* Particules animées pour l'effet de flamme */
.formation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M0 0h4v4H0V0zm8 0h4v4H8V0zm8 0h4v4h-4V0zm-16 8h4v4H0V8zm8 0h4v4H8V8zm8 0h4v4h-4V8zm-16 8h4v4H0v-4zm8 0h4v4H8v-4zm8 0h4v4h-4v-4z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    image-rendering: pixelated;
}

/* Ajout d'une ligne pixelisée animée en bas de la section hero */
.formation-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(to right, var(--primary-color), var(--secondary-color) 20px, var(--accent-color) 20px, var(--accent-color) 40px);
    opacity: 0.5;
    animation: pixel-slide 10s linear infinite;
    image-rendering: pixelated;
}

@keyframes pixel-slide {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 0;
    }
}

.formation-banner-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.formation-banner-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
    color: var(--light-color);
}

.formation-banner-text h1 {
    font-family: cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 4px 4px 0 var(--flame-dark);
    animation: text-flicker 3s infinite alternate;
}

/* Animation de flamme pour le texte */
@keyframes text-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        text-shadow: 4px 4px 0 var(--flame-dark),
                   -2px -2px 0 var(--flame-dark),
                   0 0 8px var(--secondary-color),
                   0 0 12px var(--accent-color);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.8;
        text-shadow: none;
    }
}

.formation-banner-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 var(--flame-dark);
}

.formation-banner-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.formation-banner-image img {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    filter: drop-shadow(0 0 10px rgba(255, 119, 0, 0.3));
}

/* Boutons */
.btn-primary {
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 25px;
    font-family: cursive;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.2s steps(2);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px) translateX(-2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0) translateX(0);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

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

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    padding: 10px 22px;
    font-family: cursive;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s steps(2);
    border: 2px solid var(--accent-color);
    margin-left: 15px;
    cursor: pointer;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 183, 0, 0.1);
    transform: translateY(-2px) translateX(-2px);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.btn-secondary:active {
    transform: translateY(0) translateX(0);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Section des caractéristiques */
.features-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: cursive;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color), var(--accent-color));
}

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

.feature-card {
    background-color: var(--light-color);
    border: 4px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ff7700'/%3E%3C/svg%3E") 2 stretch;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    image-rendering: pixelated;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px) translateX(-5px);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ffcc00'/%3E%3C/svg%3E") 2 stretch;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    background: var(--light-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 0;
    border: 2px solid var(--primary-color);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: cursive;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 1rem;
    color: var(--dark-color);
    flex-grow: 1;
}

/* Section des statistiques */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M0 0h4v4H0V0zm8 0h4v4H8V0zm8 0h4v4h-4V0zm-16 8h4v4H0V8zm8 0h4v4H8V8zm8 0h4v4h-4V8zm-16 8h4v4H0v-4zm8 0h4v4H8v-4zm8 0h4v4h-4v-4z' fill='%23ffffff' fill-opacity='0.1'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
    image-rendering: pixelated;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.stat-item {
    flex: 1 1 200px;
    max-width: 250px;
    margin: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 10px;
    border: 4px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ffffff'/%3E%3C/svg%3E") 2 stretch;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    image-rendering: pixelated;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--light-color);
    margin-bottom: 15px;
}

.stat-number {
    font-family: cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.not-stat-number {
    font-family: cursive;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section des formations */
.courses-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

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

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

.course-card {
    background-color: white;
    border: 4px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ff7700'/%3E%3C/svg%3E") 2 stretch;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    image-rendering: pixelated;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-5px) translateX(-5px);
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2);
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ffcc00'/%3E%3C/svg%3E") 2 stretch;
}

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.course-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-family: cursive;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.course-description {
    font-size: 0.95rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px dashed var(--secondary-color);
}

.course-rating {
    display: flex;
    align-items: center;
}

.course-rating i {
    color: var(--accent-color);
    margin-right: 2px;
}

.course-rating span {
    margin-left: 5px;
    font-weight: bold;
}

.course-students {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.course-students i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Section des témoignages */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath d='M0 0h4v4H0V0zm8 0h4v4H8V0zm8 0h4v4h-4V0zm-16 8h4v4H0V8zm8 0h4v4H8V8zm8 0h4v4h-4V8zm-16 8h4v4H0v-4zm8 0h4v4H8v-4zm8 0h4v4h-4v-4z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
    image-rendering: pixelated;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title h2 {
    color: var(--accent-color);
}

.testimonials-section .section-title p {
    color: var(--light-color);
}

.testimonials-slider {
    position: relative;
    margin-top: 50px;
}

.testimonials-track {
    display: flex;
    overflow: hidden;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 15px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    background-color: var(--light-color);
    border: 4px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ff7700'/%3E%3C/svg%3E") 2 stretch;
    padding: 30px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
    image-rendering: pixelated;
    position: relative;
}

.testimonial-content {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 0;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: cursive;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-nav-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.testimonial-nav-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--secondary-color);
}

/* Section CTA */
.cta-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: var(--dark-color);
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding-right: 40px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 119, 0, 0.1);
    border: 3px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-icon i {
    font-size: 36px;
    color: var(--accent-color);
}

.cta-title {
    font-family: cursive;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent-color);
    text-shadow: 3px 3px 0 var(--flame-dark);
    animation: text-flicker 3s infinite alternate;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--light-color);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 0;
    font-weight: bold;
    transition: all 0.2s steps(2);
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
    font-family: cursive;
    font-size: 0.9rem;
}

.cta-btn i {
    margin-right: 10px;
    font-size: 18px;
}

.cta-btn:hover {
    transform: translateY(-3px) translateX(-3px);
    box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.2);
}

.cta-btn:active {
    transform: translateY(0) translateX(0);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.cta-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 4px solid transparent;
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3E%3Cpath d='M0 0h8v1H0V0zm0 7h8v1H0V7zm0-1h1v1H0V6zm7 0h1v1H7V6zM0 1h1v5H0V1zm7 0h1v5H7V1z' fill='%23ff7700'/%3E%3C/svg%3E") 2 stretch;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
    image-rendering: pixelated;
}

.cta-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.cta-stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.2);
}

.cta-stat-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 183, 0, 0.1);
    border: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.cta-stat-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.cta-stat-value {
    font-family: cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 5px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.cta-stat-label {
    font-size: 1rem;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animation pour les particules */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    animation: float-up 8s linear infinite;
    image-rendering: pixelated;
    box-shadow: 0 0 5px var(--accent-color);
}

/* Responsive */
@media (max-width: 992px) {
    .formation-banner {
        padding: 60px 0;
    }
    
    .formation-banner-text h1 {
        font-size: 2rem;
    }
    
    .formation-banner-image {
        margin-top: 30px;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .formation-banner-text,
    .formation-banner-image {
        flex: 100%;
        padding-right: 0;
    }
    
    .formation-banner-image {
        margin-top: 40px;
    }
    
    .formation-banner-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 100%;
        margin: 10px 0;
    }
    
    .btn-primary,
    .btn-secondary {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .cta-container {
        flex-direction: column;
    }
    
    .cta-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .cta-icon {
        margin: 0 auto 20px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-stats {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .cta-stat-item {
        padding: 15px;
    }
    
    .cta-stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .formation-banner {
        padding: 40px 0;
    }
    
    .formation-banner-text h1 {
        font-size: 1.5rem;
    }
    
    .formation-banner-text p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .not-stat-number {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}