/* ===== PAGE ÉQUIPE ÉPURÉE ===== */

/* Navigation active */
nav ul li a.active {
    color: #2c5530;
    font-weight: bold;
    position: relative;
}

nav ul li a.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5530;
}


/* Sections équipe */
.team-section {
    margin-bottom: 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2.2em;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.section-header p {
    color: #666;
    font-size: 1.1em;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #2c5530, #4a7c59);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    font-weight: 600;
}

.photo-placeholder {
    font-size: 2em;
    font-weight: 600;
    color: white;
}

.team-member h3 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 1.3em;
    font-weight: 600;
}

.team-member .role {
    color: #4a7c59;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95em;
}

.member-contact {
    padding-top: 20px;
    border-top: 1px solid #e8f4ea;
    color: #666;
    font-size: 0.9em;
}

/* Section valeurs */
.values-section {
    margin: 100px 0;
    padding: 60px 0;
    background: #f8f9fa;
    border-radius: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.value-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
    margin: 0;
}

/* CTA discret */
.team-cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #e8f4ea;
    margin-top: 60px;
}

.cta-content h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.5em;
    font-weight: 600;
}

.cta-content p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.btn-outline {
    background: transparent;
    color: #2c5530;
    border: 2px solid #2c5530;
    padding: 12px 30px;
}

.btn-outline:hover {
    background: #2c5530;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 1.8em;
    }
    
    .team-member {
        padding: 30px 25px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    .values-section {
        margin: 60px 0;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .member-photo {
        width: 100px;
        height: 100px;
        font-size: 1.5em;
    }
    
    .team-member {
        padding: 25px 20px;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 1.6em;
    }
    
    .team-cta {
        padding: 40px 0;
    }
}