body {
    font-family: 'Roboto Slab', serif; /* Utilisation de la police 'Roboto Slab' */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #6FCF97; /* Couleur verte pastel pour le header */
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

#banner {
    background: url('default/images/banner-image.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 5rem 1rem;
}

.banner-text h2 {
    font-size: 2.5rem;
    margin: 0;
}

.banner-text p {
    font-size: 1.25rem;
}

#latest-news {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0; /* Ajustement des paddings */
    background-color: #f9f9f9;
    flex-wrap: wrap;
}

#latest-news .column {
    width: 45%;
    padding: 0 1rem; /* Ajustement du padding */
    box-sizing: border-box;
}

#latest-news h3 {
    text-align: center;
    color: #6FCF97; /* Couleur verte pastel */
}

#latest-news ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#latest-news ul li {
    margin: 0.5rem 0;
}

#latest-news ul li a {
    color: #333;
    text-decoration: none;
}

#latest-news ul li a:hover {
    text-decoration: underline;
}

main {
    padding: 2rem;
}

#highlights {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.highlight {
    background-color: #f1f1f1;
    padding: 1rem;
    margin: 1rem;
    border-radius: 8px;
    width: calc(25% - 2rem);
    box-sizing: border-box;
    text-align: center;
}

.highlight img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

footer {
    background-color: #6FCF97; /* Couleur verte pastel pour le footer */
    color: white;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 10px;
    margin-top: 2rem;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.photo-item img {
    width: 100%; /* Fixe la largeur de l'image à 100% du conteneur */
    height: auto; /* Fixe la hauteur de l'image pour maintenir le ratio */
    max-height: 100px; /* Assure que la hauteur maximum est de 200px */
    object-fit: cover; /* Pour s'assurer que les images remplissent bien la zone définie */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}