/* Section À Propos - Design moderne et professionnel */

#about {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    margin-bottom: 67vh; /* Espace pour laisser voir le Canvas (2/3 de page) */
}

#about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1rem;
    font-weight: 700;
}

#about .subTitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--secondary-color, #6c757d);
    margin-bottom: 2rem;
    font-style: italic;
}

#about > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color, #333);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Grid principal */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Section personnelle */
.about-personal {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-personal h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color, #007bff);
    padding-bottom: 0.5rem;
}

.about-content p {
    font-size: 1rem;
    color: var(--text-color, #333);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Highlights */
.about-highlights {
    margin-bottom: 2rem;
}

.highlight-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--secondary-color, #6c757d);
    margin: 0;
    line-height: 1.4;
}

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

/* Section valeurs */
.about-values {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-values h3 {
    font-size: 1.4rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color, #007bff);
    padding-bottom: 0.5rem;
}

.values-list {
    display: grid;
    gap: 1rem;
}

.value-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color, #007bff);
    transition: background-color 0.3s ease;
}

.value-item:hover {
    background: #e9ecef;
}

.value-item h4 {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.value-item p {
    font-size: 0.9rem;
    color: var(--secondary-color, #6c757d);
    margin: 0;
    line-height: 1.4;
}

/* Section mission */
.about-mission {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-mission h3 {
    font-size: 1.5rem;
    color: var(--primary-color, #007bff);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-color, #007bff);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-mission p {
    font-size: 1.1rem;
    color: var(--text-color, #333);
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Statistiques mission */
.mission-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #007bff);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color, #6c757d);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section site */
.about-site {
    background: linear-gradient(135deg, var(--primary-color, #007bff) 0%, #0056b3 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.about-site h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-site p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.about-site strong {
    color: #fff;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    #about {
        padding: 2rem 1rem;
    }
    
    #about h2 {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-personal,
    .about-values {
        padding: 1.5rem;
    }
    
    .about-mission {
        padding: 2rem 1.5rem;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-site {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    #about h2 {
        font-size: 1.8rem;
    }
    
    .about-personal h3,
    .about-values h3 {
        font-size: 1.2rem;
    }
    
    .value-item h4 {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}
