/* Styles pour la section "Pourquoi moi?" */

.about-section {
    padding: 100px 0;
    background-color: var(--background-dark);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

.about-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-muted);
}

/* Timeline */
.timeline-container {
    margin-bottom: 60px;
}

.timeline-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    text-align: center;
    padding: 5px 0;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.timeline-content {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.timeline-desc {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Skills */
.skills-container {
    margin-bottom: 60px;
}

.skills-container h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-category:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.skill-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.skill-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.skill-logos img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%);
}

.skill-logos img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.about-summary {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
}

.about-summary h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.about-summary ul {
    list-style-type: none;
    padding: 0;
}

.about-summary ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.about-summary ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-date {
        width: 60px;
        font-size: 0.8rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}


/* CV Download Button Styles */
.cv-download .download-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #8A2BE2, #9932CC);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
    border: 2px solid transparent;
}

.cv-download .download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
    background: linear-gradient(45deg, #9932CC, #8A2BE2);
    border-color: rgba(138, 43, 226, 0.3);
}

.cv-download .download-button i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .cv-download .download-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cv-download .download-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

