@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0e7f4; 
    animation: fadeIn 1s ease-in-out;
    overflow-x: hidden; /* Empêche le défilement horizontal */
}


header {
    background-color: #003366; 
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed; /* Fixe le header en haut */
    top: 0; /* Positionne le header en haut de la page */
    width: 100%; /* Assure que le header prend toute la largeur de la page */
    z-index: 1000; /* Assure que le header reste au-dessus des autres éléments */
}

h1 {
    margin: 0;
    padding-left: 20px;
}

h2 {
    margin: 1;
    flex-grow: 1;
    text-align: center;
    font-size: 130px; /* Taille */
    color: #003366; 
}

nav ul {
    background-color: #003366; 
    color: #fff;
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
}

nav ul li a:hover {
    background-color: #336699; 
}


.entreprise-image {
    width: 100%;
    height: auto;
}


.academie-container {
    display: flex;
    align-items: flex-start;
    margin-top: 150px; 
    padding-left: 40px; /* Déplacer un peu plus à droite */
    margin-bottom: 150px; 
}

.academie-image {
    width: 30%; /* Agrandir l'image */
    height: auto;
}

.academie-text {
    margin-left: 40px; 
    max-width: 65%;
}

.academie-text h2 {
    color: #003366; 
    font-size: 28px; /* Agrandir la taille du titre */
}

.academie-text p {
    color: #333; 
    font-size: 18px; /* Agrandir la taille du texte */
    line-height: 1.5; /* Hauteur de ligne pour une meilleure lisibilité */
}


.blue-rectangle {
    width: 100%;
    height: 80px; /* Hauteur du rectangle */
    background-color: #003366; 
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    margin-bottom: 0px; 
}


.organigramme-image {
    width: 100%;
    height: auto;
    margin-top: 0px; 
    margin-bottom: 80px;
}

.organigramme-title {
    color: #fff; 
    font-size: 28px; /* Taille du texte */
    margin: 0; /* Supprime les marges par défaut */
}


.text-overlay {
    position: absolute;
    top: 30%;
    right: 10%;
    transform: translateY(-50%);
    color: #003366; 
    font-size: 130px; /* Taille beaucoup plus grande */
    font-weight: bold;
}


.team-image {
    margin-left: 80px;
}


.missions h2 {
    font-size: 40px; 
    margin-bottom: 40px; 
    margin-top: 180px;
}

.missions-images {
    display: flex;
    justify-content: space-around; /* Espace les images de manière égale */
    align-items: center;
    margin-top: 20px;
}

.mission-image {
    width: 28%; /* Taille des images */
    height: auto;
    border-radius: 10px; /* Coins arrondis pour les images */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Ombre pour les images */
    margin: 0 5px; /* Réduit l'espace entre les images */
    transition: transform 0.3s ease-in-out; /* Transition pour l'effet de zoom */
    margin-bottom: 150px;
}

.mission-image:hover {
    transform: scale(1.1); /* Effet de zoom */
}


footer {
    background-color: #003366; 
    color: #fff;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}
