/* HERO */
.coordinator-hero {
    background: linear-gradient(rgba(0, 85, 150, 0.75),
            rgba(0, 85, 150, 0.75)),
        url("../images/mot-du-coordinnateur.png") center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 200px;
    margin: 20px;
    border-radius: 5px;

}

.coordinator-hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Sansation';
    font-weight: 400;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 20px 0;
    font-size: 13px;
    color: #777;

}

.breadcrumb a {
    text-decoration: none;
    color: #777;
    font-family: sans-serif;

}

.breadcrumb span {
    color: #0066cc;
    font-family: sans-serif;
}

.breadcrumb i {
    margin: 20px;
    font-size: small;
}

/* SECTION */
.coordinator-section {
    /* max-width: 1100px; */
    margin: var(--section-margin);
    padding: 0px;
}

.coordinator-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-dot {
    width: 10px;
    height: 10px;
    background: #0066cc;
    border-radius: 50%;
}

.coordinator-section h2 {
    font-size: 25px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* CONTENT */
.coordinator-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: flex-start;
}

.coordinator-image img {
    width: 100%;
    border-radius: 10px;
}


/* TEXT */


.coordinator-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 5px;
    text-align: justify;
}

.signature {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;

}


/* Responsive Design */
@media (max-width: 992px) {

    .coordinator-content {
        display: flex;
        flex-direction: column;
        /* Empile l'image et le texte verticalement */
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .coordinator-content {
        display: flex;
        flex-direction: column;
        /* Empile l'image et le texte verticalement */
        gap: 20px;
    }

    .coordinator-hero {
        margin: 0px;
        border-radius: 0px;
    }

    .coordinator-image {
        width: 100%;
        /* L'image prend toute la largeur */
    }

    .coordinator-hero h1 {
        font-size: 24px;
        /* Réduit la taille du titre sur mobile */
    }

    .coordinator-section h2 {
        font-size: 20px;
        /* Réduit le titre du message */
    }
}


/* Ajustements spécifiques pour très petits écrans */
@media (max-width: 480px) {
    .coordinator-section {
        margin:calc(var(--section-margin) * 0.5);
        /* padding: 0px; */
        /* margin-top: 20px; */
    }

    .breadcrumb {
        margin: 0 !important;
        margin: 20px !important;
        /* height: 20px; */
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
        font-size: 12px !important;
    }

    .breadcrumb i {
        margin: 8px !important;
    }

    .coordinator-content {
        display: flex;
        flex-direction: column;
        /* Empile l'image et le texte verticalement */
        gap: 10px;
    }


}