/* ========================================
   CSS POUR LA PAGE ABOUT (NOUS CONNAÎTRE)
   ======================================== */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    color: #202020;
    background-color: white;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Container principal englobant les deux sections */
.main-container {
    background-color: white;
    min-height: 100vh;
}

/* Section Hero About */
.hero-about {
    padding: 50px 0;
    background-color: white;
}

.hero-about__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    color: #202020;
    margin-bottom: 60px;
    line-height: 1.1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-about__text {
    padding-right: 40px;
}

.hero-about__paragraph {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #202020;
    margin-bottom: 24px;
}

.hero-about__video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.hero-about__video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
}

.hero-about__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Section Forces */
.forces-section {
    padding: 40px 0;
    background-color: white;
}

.forces-section__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #202020;
    margin-bottom: 30px;
}

.forces-section__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.forces-section__icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
}

.forces-section__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.forces-section__icon--blue {
    background-color: #FFEE32;
}

.forces-section__icon--green {
    background-color: #FFD100;
}

.forces-section__icon--yellow {
    background-color: #FFEE32;
}

.forces-section__text {
    max-width: 600px;
    margin: 0 auto;
}

.forces-section__paragraph {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #202020;
    margin-bottom: 15px;
    text-align: left;
}

.forces-section__highlight {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: black;
}

/* Section Réalisations */
.achievements-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.achievements-section__subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #4D4D4D;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.achievements-section__subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #FFEE32;
}

.achievements-section__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #202020;
    margin-bottom: 60px;
    line-height: 1.2;
}

.achievements-section__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievements-section__card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievements-section__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.achievements-section__card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
}

.achievements-section__card-icon--orange {
    background: linear-gradient(135deg, #FFEE32, #FFD100);
}

.achievements-section__card-icon--pink {
    background: linear-gradient(135deg, #FFD100, #FFEE32);
}

.achievements-section__card-icon--green {
    background: linear-gradient(135deg, #FFEE32, #FFD100);
}

.achievements-section__card-icon--purple {
    background: linear-gradient(135deg, #FFD100, #FFEE32);
}

.achievements-section__card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 15px;
    line-height: 1;
}

.achievements-section__card-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: #4D4D4D;
    line-height: 1.4;
}

/* Section Équipe */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: #202020;
    margin-bottom: 60px;
}

.team-category {
    margin-bottom: 60px;
}

.team-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #4D4D4D;
    margin-bottom: 15px;
}

.category-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #FFEE32, #FFD100);
    margin-bottom: 40px;
    width: 100px;
}

.team-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-row--grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.team-row--centered {
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.team-member-simple {
    text-align: center;
    flex-shrink: 0;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 4px solid #f3f4f6;
    transition: border-color 0.3s ease;
}

.member-avatar:hover {
    border-color: #FFEE32;
}

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

.member-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #202020;
    margin-bottom: 5px;
}

.member-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: #4D4D4D;
}

.member-linkedin {
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.member-linkedin a {
    display: flex;
    width: 28px;
    height: 28px;
    background-color: #202020;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.member-linkedin a:hover {
    background-color: #4D4D4D;
    transform: scale(1.1);
}

.member-linkedin i {
    font-size: 14px;
}

.member-quote {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    border-left: 4px solid #FFEE32;
}

.member-quote p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4D4D4D;
    font-style: italic;
    margin: 0;
}

/* Section Certifications */
.certifications-section {
    padding: 40px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.certifications-section h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4D4D4D;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.certifications-section .certification-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
    border: 2px solid #FFEE32;
    transition: all 0.3s ease;
}

.certifications-section .certification-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.2);
}

.certifications-section .certification-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.certifications-section .certification-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #202020;
}

/* Section Rejoignez notre équipe */
.join-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.join-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #202020;
    margin-bottom: 30px;
    line-height: 1.2;
}

.join-section p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4D4D4D;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.join-section .btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFEE32, #FFD100);
    color: #202020;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(255, 238, 50, 0.3);
}

.join-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 238, 50, 0.4);
}

.join-section .avatars {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.join-section .avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.join-section .avatars img:hover {
    transform: scale(1.1);
}

.join-section .reviews {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.join-section .stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.join-section .reviews span:last-child {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: #4D4D4D;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-about__title {
        font-size: 2.5rem;
        max-width: 100%;
    }

    .hero-about__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-about__text {
        padding-right: 0;
    }

    .forces-section__icons {
        gap: 20px;
    }

    .forces-section__icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .forces-section__title {
        font-size: 1.8rem;
    }

    .forces-section__paragraph {
        font-size: 0.95rem;
    }

    .achievements-section__title {
        font-size: 2.2rem;
    }

    .achievements-section__cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .achievements-section__card {
        padding: 30px 15px;
    }

    .achievements-section__card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .achievements-section__card-number {
        font-size: 2.5rem;
    }

    .team-section .section-title {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .team-row {
        flex-direction: column;
        gap: 30px;
    }

    .team-row--grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .member-avatar {
        width: 100px;
        height: 100px;
    }

    .member-quote {
        min-width: 100%;
        text-align: center;
    }

    .join-section h2 {
        font-size: 2.2rem;
    }

    .join-section p {
        font-size: 1rem;
    }

    .join-section .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .join-section .avatars {
        gap: 10px;
    }

    .join-section .avatars img {
        width: 35px;
        height: 35px;
    }

    .certifications-section h3 {
        font-size: 1rem;
    }

    .certifications-section .certification-item {
        padding: 12px 20px;
    }
}

@media (max-width: 480px) {
    .achievements-section__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-row--grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .join-section h2 {
        font-size: 1.8rem;
    }

    .join-section .avatars {
        flex-wrap: wrap;
        justify-content: center;
    }
}

