/* EN-TETE */
.header-img {
    width: 100%;
    height: auto;
}
.logo {
    position: absolute;
    width: 40%; /* Utiliser un pourcentage pour la largeur */
    top: 75%; /* Ajustez cette valeur pour positionner le logo */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}



/* BODY */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #E8EBF2;
}



/* CONTAINER */
.container {
    position: relative;
    text-align: center;
}
/* CONTAINER2 */
.container2 { 
    display: flex; 
    flex-direction: row;
    justify-content: space-between; /* Espace entre les deux zones de texte */ 
    align-items: top; 
    margin: 20px; 
    padding: 20px; 
    border: 1px solid #F4F9FF; 
    background-color: #F4F9FF;  
} 

.text-box { 
    width: 48%; 
    padding: 20px; border: 1px solid #F4F9FF; 
    background-color: #F4F9FF;  
} 

.text-box.left { 
    background-color: #F4F9FF; 
} 

.text-box.right { 
    background-color: #F4F9FF; 
}



/* SPACER */
.spacer {
    height: 10px;
}
.spacer2 {
    height: 50px;
}



/* MAIN */
.main-content {
    padding: 20px;
    text-align: center;
}




/* TEXT-BOX */
.text-box1 {
    background-color: rgba(255, 255, 255, 0.8); /* Fond blanc avec transparence */
    padding: 20px;
    border: 1px solid #ccc;
    max-width: 800px; /* Largeur maximale réglable */
    margin: 0 auto; /* Centrer la boîte */
}




/* IMAGE LINK */
.image-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}
.image-link {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 10px;
}
.image-link img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 15px; /* Bord arrondi */
    transition: transform 0.5s ease-in-out;
}
.image-link img:hover {
    transform: scale(1.1);
}

.mots_rouge {

    color: #aa3939;
    font-weight: 800;
    font-size: 1.5em;
}


/* LINKBOX */
.link-box {
    position: absolute;
    bottom: 96%; /* Ajustez cette valeur pour positionner la boîte */
    left: 50%;
    transform: translateX(-50%);
    background-color: #2F3033; /* Couleur de fond gris avec transparence */
    padding: 10px;
    text-align: center;
    width: 90%;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.link-box p {
    margin: 0;
    color: #aa3939;
}


/* PREFOOTER */
.prefooter1 {
    color: #000000;
    background-color: #F4F9FF;
    padding: 20px;
    text-align: center;
    max-width: 800px; /* Largeur maximale réglable */
    margin: 0 auto; /* Centrer la boîte */
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur totale */
}
.prefooter2 {
    color: #8A6D3B;
    background-color: #FCF8E3;
    padding: 20px;
    text-align: center;
    border: 1px solid #ccc;
    max-width: 800px; /* Largeur maximale réglable */
    margin: 0 auto; /* Centrer la boîte */
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur totale */
}

@media (max-width: 768px) {
    .prefooter1, .prefooter2 {
        padding: 10px;
        max-width: 100%; /* Prendre toute la largeur disponible */
    }
}

.texte_rouge {
    color: #aa3939;

}

.text-box.right a {
    color: black;
    text-decoration: underline;
}

/* FOOTER */
.footer {
    color: white;
    background-color: #2F3033;
    padding: 20px;
    text-align: center;
}
.footer a {
    color: white;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
