.hero-personnel{
    height: 50vh;
    background: url("../images/personnel.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}
.hero-overlay{
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.45));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    animation: fadeIn 1.3s ease;
}
@keyframes fadeIn{
    from{
        opacity: 0;
        transform: translateY(-40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-overlay h1{
    font-size: 55px;
    font-weight: bold;
    margin-top: 50px;
}
.hero-overlay h1::after{
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background: #d4af37;
    margin: 18px auto 0;
    border-radius: 5px;
}
.hero-overlay p{
    font-size: 22px;
    max-width: 700px;
    margin-top: 20px;
}

.titre{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}
#Staff {
    margin-top: 100px;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.staff-card {
    width: 100%;
    min-height: 300px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    text-align: center;
    overflow: hidden;
    transition: 0.4s;
}

.staff-card:hover{
    transform:translateY(-12px);
}

.profil {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 190px;
    background-color: #C89B3C;
    margin-bottom: 25px;
}

.profil i {
    font-size: 100px;
    color: white;
}

.staff-name{
    font-size: 18px;
    font-weight: bold;
    font-family: 'Times new Roman', sans-serif;
}
.staff-role{
    font-size: 14px;
    color: #C89B3C;
    font-family: 'Times new Roman', sans-serif;
}
.staff-mail{
    font-size: 14px;
    color: #979292;
    font-family: 'Times new Roman', sans-serif;
}
@media (max-width: 900px) {
    .staff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    #Staff {
        padding: 50px 15px;
    }

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .staff-card {
        min-height: 320px;
    }

    .profil {
        height: 160px;
    }

    .profil i {
        font-size: 80px;
    }
}