/* PAGE ÉQUIPE */

.bodyequipe {
    min-height: 100vh;
    background: url("../imageequipe/bannerfont.png") center/cover no-repeat fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

/* Container */
.equipe-container {
    margin-top: 120px;
    max-width: 1100px;
    width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Titre */
.equipe-title {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}

.equipe-subtitle {
    color: #ffffff;
    margin-bottom: 60px;
}

/* Grid */
.equipe-credits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Carte */
.equipe-card {
    background: linear-gradient(145deg, #7dd4e787, #000e41);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: -1px 1px 30px rgb(0 0 0 / 20%), inset 0 1px 0 rgba(255, 0, 0, 0.05);
}

/* Hover */
.equipe-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 15px 40px rgb(0, 225, 250),
        0 0 20px rgb(0, 229, 255);
}

/* Nom */
.equipe-name {
    font-size: 20px;
    color: white;
    margin-bottom: 5px;
}

.equipe-role {
    font-size: 14px;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer */
.equipe-footer {
    margin-top: 60px;
    color: #5c6c80;
    font-size: 13px;
}

/* Avatar */
.equipe-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: -1px 0px 10px 2px #27386d, 0px 0px 15px rgb(0 0 0);
}

/* ---- MOBILE (≤ 768px) ---- */
@media (max-width: 768px) {

    .bodyequipe {
        background-attachment: scroll;
        padding: 70px 16px 60px;
        align-items: flex-start;
    }

    .equipe-container {
        margin-top: 80px;
    }

    .equipe-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .equipe-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    .equipe-credits {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .equipe-card {
        padding: 24px 16px;
    }
}