/* Styles pour la page Équipe */
.team-section {
    padding: 120px 20px 60px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Filtres */
.team-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(74, 144, 226, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Cartes d'équipe */
.team-card {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.15);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.25);
    border-color: rgba(74, 144, 226, 0.5);
}

.team-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.team-tag {
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(74, 144, 226, 0.3);
}

.team-card-body h3 {
    margin: 0;
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discord-tag {
    font-size: 0.9rem;
    color: #666;
    font-weight: normal;
    font-family: 'Manrope-Bold', sans-serif;
}

.team-card-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .team-card-header {
        flex-direction: column;
        text-align: center;
    }

    .team-avatar {
        width: 80px;
        height: 80px;
    }

    .team-tags {
        justify-content: center;
    }

    .team-social {
        justify-content: center;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .team-filters {
        padding: 0 20px;
    }
}

/* Message "Aucun membre trouvé" */
.no-members-message {
    text-align: center;
    padding: 40px;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-color);
    font-size: 18px;
    margin: 20px 0;
    opacity: 0.8;
}

@font-face {
    font-family: 'Manrope-Bold';
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(30, 58, 138, 0.1));
    backdrop-filter: blur(30px);
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(45deg, #4a90e2, #1e3a8a);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 25px;
    font-family: 'JosefReduced-Regular', sans-serif;
    letter-spacing: 0.15px;
}

.footer-section h4 {
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: 'Manrope-Bold', sans-serif;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-family: 'JosefReduced-Regular', sans-serif;
    letter-spacing: 0.15px;
}

.footer-links a:hover {
    color: #4a90e2;
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(74, 144, 226, 0.2);
    padding-top: 30px;
    text-align: center;
    opacity: 0.6;
}

.footer-bottom p {
    font-family: 'JosefReduced-Regular', sans-serif;
    letter-spacing: 0.15px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
} 