/* Styles généraux */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #ff6700; /* Orange */
    color: white;
    padding: 20px 10px;
    text-align: center;
}

header h1 {
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.team-section {
    text-align: center;
    margin-bottom: 40px;
}

.team-section h2 {
    color: #0056b3; /* Bleu */
    font-size: 30px;
    margin-bottom: 10px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 100%;
    height: auto;
}

.member-info {
    padding: 15px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 10px;
    color: #ff6700; /* Orange */
}

.member-info p {
    margin-bottom: 5px;
    color: #555;
}

footer {
    background-color: #0056b3; /* Bleu */
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 40px;
}

/* Styles responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

   .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
   }

   .member-info h3 {
       font-size: 18px;
   }

   footer {
       font-size: 14px;
       padding: 8px 0;
   }
}
