body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F0F8FF; /* Nouvelle couleur de fond */
    color: #333; /* Couleur principale du texte */
}

header, footer {
    background-color: #607D8B; /* Nouvelle couleur de fond pour l'en-tête et le pied de page */
    color: #fff; /* Couleur du texte pour l'en-tête et le pied de page */
    text-align: center;
    padding: 10px 0;
}

.contact-banner {
    background-color: #FFA500; /* Couleur de la bannière de contact */
    padding: 5px 0;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.menu {
    background-color: #03A9F4; /* Nouvelle couleur de fond du menu */
    text-align: left; /* Alignement à gauche */
    padding: 10px;
}

.menu ul {
    list-style-type: none;
    padding: 0;
    text-transform: uppercase; /* Texte en majuscules */
}

.menu ul li {
    margin: 0 10px;
}

.menu ul li a {
    text-decoration: none;
    color: #fff;
    padding: 5px 10px;
    display: block;
}

.menu ul li a:hover {
    background-color: #FFC107; /* Couleur au survol */
}

.titre-principal {
    font-size: 2.5em; /* Plus gros titre */
    margin: 10px;
    /* La couleur du titre est spécifiée individuellement dans chaque page */
}

main {
    padding: 20px;
}

section {
    margin-bottom: 20px;
}

section div {
    margin-bottom: 20px;
    text-align: center;
}

section img.img-responsive {
    max-width: calc(100% - 20px); /* Largeur maximale ajustée pour les photos */
    height: auto;
    display: block;
    margin: 0 auto;
}

footer {
    background-color: #607D8B; /* Couleur de fond du pied de page */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
