/* Section Conseil d'Administration */
.admin-section {
    padding: 60px 20px;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-comite {
    text-align: center;
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--gray-dark);
    margin-bottom: 20px;
    position: relative;
}

.section-title-comite::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: var(--blue-primary);
    margin: 20px auto 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.admin-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: var(--gray-light);
}

.admin-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.admin-info {
    padding: 20px;
    text-align: center;
    background-color: var(--white);
}

.admin-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gray-dark);
    margin-bottom: 8px;
}

.admin-role {
    font-size: 0.95rem;
    color: var(--blue-primary);
    font-weight: 500;
}


/* Section Projet Associatif */
.projet-section {
    padding: 60px 20px;
    background-color: var(--gray-light);
}

.projet-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.projet-text {
    flex: 1;
}

.ambition-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--red-primary);
    font-weight: bold;
}

.projet-image-container {
    flex: 1;
}

.projet-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .projet-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .ambition-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .projet-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .ambition-intro {
        font-size: 1rem;
    }
    
    .projet-section {
        padding: 30px 10px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .section-title-comite {
        font-size: 1.8rem;
    }

    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .section-title-comite {
        font-size: 1.5rem;
    }

    .admin-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }

    .admin-name {
        font-size: 1rem;
    }

    .admin-role {
        font-size: 0.9rem;
    }
}

/* Animation au chargement */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.admin-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.admin-card:nth-child(1) { animation-delay: 0.1s; }
.admin-card:nth-child(2) { animation-delay: 0.2s; }
.admin-card:nth-child(3) { animation-delay: 0.3s; }
.admin-card:nth-child(4) { animation-delay: 0.4s; }
.admin-card:nth-child(5) { animation-delay: 0.5s; }
.admin-card:nth-child(6) { animation-delay: 0.6s; }
.admin-card:nth-child(7) { animation-delay: 0.7s; }
.admin-card:nth-child(8) { animation-delay: 0.8s; }