﻿/* Styles pour la page À propos */

/* Section principale */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Animation d'entrée */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation de présentation */
@keyframes borderPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Entête avec animation */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out forwards;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-header p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Section présentation */
.about-presentation {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .about-presentation {
        flex-direction: row;
        align-items: center;
    }
}

/* Image de profil */
.profile-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: 50% 20%;                            /* Recentrage vers le haut pour voir les cheveux */
    border: 5px solid #10b981;
    animation: borderPulse 2s infinite;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.profile-image:hover {
    transform: scale(1.05);
}

/* Bio */
.about-bio {
    flex: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-bio:hover {
    transform: translateY(-5px);
}

.about-bio h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.about-bio p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Parcours */
.about-parcours {
    margin-bottom: 3rem;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
    opacity: 0;
}

.parcours-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.parcours-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #10b981;
    position: relative;
    display: inline-block;
}

.parcours-container h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #10b981, #06b6d4);
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

.parcours-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.parcours-item:hover {
    transform: translateX(10px);
}

.parcours-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: linear-gradient(to right, #10b981, #06b6d4);
    border-radius: 50%;
    left: 0;
    top: 7px;
}

.parcours-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.parcours-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Objectifs de parcours */
.parcours-objectives {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.parcours-objectives h3 {
    color: #10b981;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.objective-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
    border-left: 4px solid #10b981;
    transition: all 0.3s ease;
}

.objective-item:hover {
    background: rgba(16, 185, 129, 0.1);
    transform: translateX(5px);
}

.objective-item h4 {
    color: #10b981;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.objective-item p {
    line-height: 1.7;
    margin: 0;
}

/* Compétences */
.about-competences {
    animation: fadeInUp 1.4s ease-out 0.6s forwards;
    opacity: 0;
}

.competences-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.competences-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #10b981;
    position: relative;
    display: inline-block;
}

.competences-container h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #10b981, #06b6d4);
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

.competences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.competence-category {
    margin-bottom: 2rem;
}

.competence-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #06b6d4;
}

.competence-list {
    list-style: none;
    padding: 0;
}

.competence-item {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.competence-item:hover {
    transform: translateX(5px);
}

.competence-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.5rem;
    line-height: 1;
    top: 0;
}

/* Centres d'intérêt */
.about-interets {
    margin-top: 3rem;
    animation: fadeInUp 1.6s ease-out 0.8s forwards;
    opacity: 0;
}

.interets-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.interets-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #10b981;
    position: relative;
    display: inline-block;
}

.interets-container h2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #10b981, #06b6d4);
    bottom: -8px;
    left: 0;
    border-radius: 3px;
}

.interets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.interet-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.interet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.interet-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #10b981;
}

.interet-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.interet-item p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Dark mode adjustments */
[data-theme="dark"] .about-bio,
[data-theme="dark"] .parcours-container,
[data-theme="dark"] .competences-container,
[data-theme="dark"] .unified-container,
[data-theme="dark"] .infrastructure-container,
[data-theme="dark"] .interets-container,
[data-theme="dark"] .interet-item {
    background: rgba(30, 30, 30, 0.7);
}

/* Mode clair */
[data-theme="light"] .about-bio,
[data-theme="light"] .parcours-container,
[data-theme="light"] .competences-container, 
[data-theme="light"] .unified-container,
[data-theme="light"] .infrastructure-container,
[data-theme="light"] .interets-container,
[data-theme="light"] .interet-item {
    background: rgba(240, 240, 240, 0.7);
}

/* Section Soft Skills */
.about-soft-skills {
    animation: fadeInUp 1.5s ease-out 0.7s forwards;
    opacity: 0;
    margin: 4rem 0;
}

.soft-skills-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.soft-skills-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.soft-skills-intro {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.soft-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.soft-skill-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.8rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.soft-skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.15);
}

.soft-skill-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: transform 0.3s ease;
}

.soft-skill-item:hover .soft-skill-icon {
    transform: scale(1.1);
}

.soft-skill-icon i {
    font-size: 1.5rem;
    color: white;
}

.soft-skill-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #10b981;
    font-weight: 600;
}

.soft-skill-item p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Section Unifiée : Centres d'Intérêt & Infrastructure */
.about-unified-section {
    animation: fadeInUp 1.6s ease-out 0.8s forwards;
    opacity: 0;
    margin: 4rem 0;
}

.unified-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.unified-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4, #10b981);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

.section-block {
    margin-bottom: 3rem;
}

.section-block:last-child {
    margin-bottom: 0;
}

.section-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(to right, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Centres d'Intérêt Styles */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.interest-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
    text-align: center;
}

.interest-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.interest-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.interest-icon i {
    font-size: 1.8rem;
    color: white;
}

.interest-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.interest-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.interest-content p:last-child {
    margin-bottom: 0;
}

.interest-content strong {
    color: #10b981;
    font-weight: 600;
}

.interest-content a {
    color: #10b981;
    text-decoration: underline;
    font-weight: bold;
}

/* Séparateur visuel */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 1rem;
}

.divider-line {
    height: 2px;
    flex: 1;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    border-radius: 1px;
}

.divider-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.divider-icon i {
    font-size: 1.2rem;
    color: white;
}

/* Infrastructure Styles dans le bloc unifié */
.infrastructure-intro {
    text-align: center;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.15);
    margin-bottom: 2rem;
}

.infrastructure-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
    font-style: italic;
}

.infrastructure-skills {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.category-icon i {
    font-size: 1.8rem;
    color: white;
}

.skill-category h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(6, 182, 212, 0.2));
    color: #10b981;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(16, 185, 129, 0.3);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(6, 182, 212, 0.3));
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.infrastructure-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.infrastructure-highlight i {
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1rem;
    display: block;
}

.infrastructure-highlight p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.infrastructure-highlight strong {
    color: #10b981;
    font-weight: 600;
}

/* Responsive pour Section Unifiée */
@media (max-width: 768px) {
    .about-container {
        padding: 1rem;
    }
    
    .about-header h1 {
        font-size: 2.2rem;
    }
    
    .soft-skills-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .soft-skills-container h2 {
        font-size: 1.8rem;
    }
    
    .soft-skills-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .soft-skill-item {
        padding: 1.5rem;
    }
    
    .soft-skill-icon {
        width: 50px;
        height: 50px;
    }
    
    .soft-skill-icon i {
        font-size: 1.3rem;
    }
    
    .soft-skill-item h3 {
        font-size: 1.1rem;
    }
    
    .unified-container {
        padding: 2rem;
    }
    
    .interests-grid,
    .infrastructure-skills {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-block h2 {
        font-size: 1.8rem;
    }
    
    .interest-icon,
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .interest-icon i,
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .skill-tags {
        gap: 0.3rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-divider {
        margin: 2rem 0;
    }
    
    .divider-icon {
        width: 35px;
        height: 35px;
    }
} 

/* Section Contact & Disponibilité */
.about-contact-availability {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(16, 185, 129, 0.2);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.contact-container h2 {
    color: #10b981;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.2rem;
    position: relative;
}

.contact-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #10b981, #06b6d4);
    border-radius: 2px;
}

.contact-content {
    text-align: center;
    line-height: 1.8;
}

.contact-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-highlight {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-highlight i {
    color: #10b981;
    font-size: 1.5rem;
}

.contact-highlight a {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-highlight a:hover {
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

/* Responsive pour Contact & Disponibilité */
@media (max-width: 768px) {
    .about-contact-availability {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-container h2 {
        font-size: 1.8rem;
    }
    
    .contact-highlight {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-highlight a {
        font-size: 1rem;
        word-break: break-all;
    }
}