/* About Page Styles */

/* ========== HERO ========== */
.about-hero {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    padding: 40px 0 30px;
    text-align: center;
    color: #fff;
}
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(70, 70, 70, 0.7);
    z-index: 1;
}
.about-hero .container {
    position: relative;
    z-index: 2;
}
.about-hero h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.5);
}
.about-hero-text {
    display: inline-block;
    max-width: 900px;
    text-align: left;
    border-left: 4px solid #dc3545;
    padding-left: 20px;
}
.about-hero-text .accroche {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}
.about-hero-text .description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* ========== SECTIONS ========== */
.about-section {
    padding: 30px 0;
}
.about-section.bg-light {
    background-color: #f5f5f5;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}
.section-title h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 12px;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #dc3545;
}

/* ========== MISSION ========== */
.mission-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.mission-block .mission-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}
.mission-block .mission-detail {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ========== FONCTIONNALITES ========== */
.feature-card {
    text-align: center;
    padding: 30px 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #28a745;
    color: #fff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}
.feature-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ========== AVANTAGES ========== */
.advantage-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}
.advantage-card:hover {
    transform: translateX(5px);
}
.advantage-card .adv-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #28a745;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-card h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 0 4px;
}
.advantage-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ========== POUR QUI ========== */
.audience-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #fff;
    border: 2px solid #28a745;
    color: #222;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.audience-tag:hover {
    background-color: #28a745;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}
.audience-tag i {
    font-size: 16px;
    color: #28a745;
}
.audience-tag:hover i {
    color: #fff;
}

/* ========== PARTENAIRES ========== */
.partner-marquee {
    overflow: hidden;
    width: 100%;
}
.partner-track {
    display: flex;
    animation: marquee 20s linear infinite;
    width: max-content;
}
.partner-marquee:hover .partner-track {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.partner-item {
    flex: 0 0 auto;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.partner-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.partner-item .partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.partner-item .partner-logo img {
    max-width: 70%;
    max-height: 80px;
    object-fit: contain;
}
.partner-item h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 1px;
}
.partner-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}
.partner-item a.partner-link {
    display: inline-block;
    color: #28a745;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #28a745;
    padding: 5px 16px;
    border-radius: 20px;
    transition: all 0.25s ease;
}
.partner-item a.partner-link:hover {
    background-color: #28a745;
    color: #fff;
}

/* ========== EQUIPE ========== */
.team-card {
    background: #fff;
    border-radius: 10px;
    padding: 15px 15px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #28a745;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}
.team-card:hover .team-photo {
    border-color: #dc3545;
}
.team-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}
.team-card .team-role {
    font-size: 13px;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 8px;
}
.team-card .team-desc {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}
.team-card .team-contact {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.team-card .team-contact a,
.team-card .team-contact span {
    font-size: 12px;
    color: #555;
    text-decoration: none;
}
.team-card .team-contact a:hover {
    color: #28a745;
}
.team-card .team-contact i {
    margin-right: 3px;
    color: #28a745;
}

.team-category {
    text-align: center;
    margin-bottom: 25px;
}
.team-category-label {
    display: inline-block;
    background-color: #28a745;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 6px 24px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========== CONTACT ========== */
.contact-split {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-height: 320px;
}
.contact-split-left {
    flex: 1;
    background-color: #2e2e2e;
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-split-left h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid #28a745;
}
.contact-split-left h3 i {
    color: #28a745;
    margin-right: 8px;
}
.contact-split-item {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    color: #fff;
    font-size: 14px;
}
.contact-split-item i {
    color: #5cb85c;
    width: 20px;
    margin-right: 12px;
    text-align: center;
}
.contact-split-item a {
    color: #28a745;
    text-decoration: none;
}
.contact-split-item a:hover { color: #5cb85c; }
.contact-split-socials {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.contact-split-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.2s ease;
}
.contact-split-socials a:hover {
    border-color: #28a745;
    color: #28a745;
}
.contact-split-right {
    flex: 0 0 300px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
}
.contact-split-right img {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
}
.contact-split-right h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.contact-split-right p {
    font-size: 12px;
    color: #888;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 30px;
        background-attachment: scroll;
    }
    .about-hero h1 {
        font-size: 26px;
    }
    .about-hero-text {
        max-width: 100%;
    }
    .about-hero-text .accroche {
        font-size: 17px;
    }
    .about-hero-text .description {
        font-size: 14px;
    }
    .about-section {
        padding: 35px 0;
    }
    .contact-box {
        padding: 25px 20px;
    }
    .contact-split {
        flex-direction: column;
    }
    .contact-split-right {
        flex: 0 0 auto;
    }
    .audience-tags {
        flex-direction: column;
        align-items: center;
    }
    .advantage-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
