/* Styles de base */ 
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3f2fd; /* Bleu très clair pour un arrière-plan doux */
}

/* Header avec le logo */
header {
    background-color: #2196F3; /* Bleu pour uniformiser avec le footer */
    padding: 15px;
    text-align: center;
}

.logo {
    width: 150px;
    background-color: #ffffff; /* Garde le fond blanc autour du logo pour plus de lisibilité */
    border-radius: 50%; /* Garde le logo circulaire */
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    text-decoration: none;
    color: white; /* Texte blanc pour contraster avec le bleu */
    font-weight: bold;
}

nav ul li a:hover {
    color: #FFD700; /* Jaune vif pour l'effet hover */
}

/* Sections */
section {
    padding: 20px;
    background-color: #fff;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 8px; /* Ajoute des coins arrondis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Légère ombre pour un effet moderne */
}

h1, h2 {
    color: #2196F3; /* Bleu pour les titres */
}

/* Photos dans la section accueil */
.photos {
    display: flex;
    overflow-x: auto; /* Permet le défilement horizontal */
    white-space: nowrap; /* Évite les retours à la ligne */
    margin-top: 20px;
}

.photos img {
    width: 200px; /* Ajustez la taille des images */
    height: auto; /* Gardez les proportions */
    border-radius: 10px;
    margin-right: 10px; /* Espace entre les images */
}

/* Section équipe */
.team-members {
    display: flex;
    justify-content: space-around;
}

.member {
    text-align: center;
    margin: 10px;
}

.member img {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Rendre les images circulaires */
}

.member p {
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    background-color: #2196F3; /* Bleu uniforme avec le header */
    color: white;
    padding: 10px;
}

/* Responsive design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    .team-members {
        flex-direction: column;
    }

    .carousel img {
        width: 80%;
    }

    .member {
        margin-bottom: 20px;
    }
}

/* Table pour les frais de scolarité */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    text-align: center; /* Centre le texte dans la table */
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 10px;
}

th {
    background-color: #FFD700; /* Jaune pour l'en-tête de table */
}

tr:hover {
    background-color: #f1f1f1; /* Effet hover plus léger */
}

/* Footer */
footer {
    text-align: center;
    background-color: #2196F3; /* Bleu harmonisé */
    color: white;
    padding: 10px;
}

/* Responsive design */
@media (max-width: 600px) {
    nav ul li {
        display: block;
        text-align: center;
        margin: 10px 0;
    }

    .photos {
        flex-direction: column;
    }

    .photos img {
        width: 90%;
        margin: 10px auto;
    }
}
