/* equipes.css - Style pour la page Nos équipes */

body {
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #f8fafc 0%, #e0e7ff 100%);
}
.team-section {
    background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
    padding-bottom: 6rem;
}
.team-section h1 {
    font-weight: 700;
    color: #2563eb;
    font-size: 3rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #4f8cff20;
    margin-bottom: 1.5rem;
}
.team-section .lead {
    font-size: 1.35rem;
    color: #374151;
    font-weight: 400;
    margin-bottom: 2.5rem;
}
.team-card {
    border-radius: 1.7rem;
    border: none;
    transition: box-shadow 0.2s, transform 0.2s;
    background: linear-gradient(120deg, #fff 60%, #e0e7ff 100%);
    box-shadow: 0 2px 16px #4f8cff20;
    position: relative;
    overflow: hidden;
}
.team-card:hover {
    box-shadow: 0 12px 40px #4f8cff40;
    transform: translateY(-8px) scale(1.04);
}
.team-img {
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 1.7rem;
    border-top-right-radius: 1.7rem;
    border-bottom: 4px solid #4f8cff;
    filter: brightness(1.05) saturate(1.1);
    transition: filter 0.2s;
}
.team-card:hover .team-img {
    filter: brightness(1.15) saturate(1.3);
}
.card-title {
    font-weight: 600;
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.card-text {
    color: #1a237e;
    font-size: 1.13rem;
    font-weight: 400;
    margin-bottom: 0.7rem;
}
.card-text i {
    font-size: 1.5rem;
    margin-right: 0.7rem;
    color: #4f8cff !important;
    filter: drop-shadow(0 2px 8px #4f8cff30);
}
.team-card ul {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 1.05rem;
    font-weight: 400;
}
.team-card ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #6ee7b7;
    margin-right: 0.5em;
    font-size: 1.1em;
}
@media (max-width: 991px) {
    .team-img {
        height: 200px;
    }
    .team-section h1 {
        font-size: 2.1rem;
    }
}
@media (max-width: 767px) {
    .team-img {
        height: 160px;
    }
    .team-section h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 991px) {
    .team-img {
        height: 200px;
    }
}
@media (max-width: 767px) {
    .team-img {
        height: 160px;
    }
}
