.content{
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: transparent;
    color: #fff;
}
.underline{
    width: 70%;
    height: 5px;
    background-color: #B10000;
    margin: auto;
}
.reseauxContainer{
    border-radius: 5px;
    background-color: #202020;
    padding: 1%;
    font-family: Poppins;
    display: flex;
    width: 80%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}
.reseauxList{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 1%;
}
.reseau{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    background-color: #121212;
}
.reseau a{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reseau svg{
    transition: 0.5s;
    display: flex;
    height: 80%;
    fill: #fff;
}
.reseau svg:hover{
    transition: 0.5s;
    fill: #B10000;
}
.staffContainer{
    margin-top: 150px;
    margin-bottom: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}
.staffPresentation{
    padding: 1%;
    border-radius: 5px;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #202020;
}
.staffPresentationHeader{
    display: flex;
    flex-direction: row;
    color: #fff;
    font-family: Poppins;
    font-size: 1.7rem;
}
.staffContent{
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 96%;
    padding: 0 2%;

}
.staffHead{
    width: 33%;
}
.staffMainTitle{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.staffMainTitle .line{
    margin: 0;
    margin-bottom: 10px;
}
.staffMainTitle p{
    margin: 0;
    font-weight: 600;
    font-size: 2rem;
}
.staffReadMore{
    display: flex;
    justify-content: end;
    align-items: center;
}
.staffReadMore a{
    text-decoration: none;
    font-size: 1.3rem;
    color: #fff;
    font-family: Poppins;
}
.staffCard{
    transition: 0.5s;
    font-family: Poppins;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
    background-color: #6c6565;
    padding: 2%;
    margin: 1%;
    border-radius: 15px;
    min-width: 150px;
}
.staffCard:hover{
    box-shadow: 0 0 10px #490000;
    transition: 0.5s;
}
.staffCard img{
    width: 50%;
    border-radius: 50%;
    border: 1px solid #B10000;
}
.staffCard h2{
    color: #fff;
    margin-bottom: 5px;
}
.staffCard p{
    text-align: center;
    margin-top: 0;
    color: #5A5A5A;
}
.roles-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}
.role-primary{
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
}
.roles-secondary{
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    align-items: center;
}
.role-badge{
    font-size: 0.7rem;
    font-weight: 400;
    text-align: center;
    padding: 2px 6px;
    border: 1px solid;
    border-radius: 3px;
    opacity: 0.7;
    background-color: transparent;
    white-space: nowrap;
    transition: 0.3s;
}
.role-clickable{
    cursor: pointer;
    transition: 0.3s;
}
.role-clickable:hover{
    opacity: 1;
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #202020;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(177, 0, 0, 0.3);
}

.modal-close {
    color: #fff;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.modal-close:hover {
    color: #B10000;
}

.modal-content h2 {
    color: #fff;
    font-family: Poppins;
    margin-top: 0;
    margin-bottom: 15px;
}

.modal-content p {
    color: #ccc;
    font-family: Roboto;
    line-height: 1.6;
}

.titleContainer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    
}
.titleContainer p{
    margin: 0;
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    font-family: Poppins;
}

@media screen and (max-width: 500px){
    .staffCard{
        width: 80%;
    }
    
}