/* COULEURS (à partir du logo et page du de HVDB)*/

:root{
  --rose-fonce:     #f02233;
  --rose-clair:     #fb808a;
  --vert:           #009543;
  --vert-clair:      #04ff8d;

  --gris-pale: #eeeeee;
  --gris-moyen: gray;
  --gris-fonce: #444444;

}

/* ********** Formatage textes ********** */
h1 {
  font-size: 200%;
  font-weight: bold;
  text-align: center;
  margin-top:5px;
  margin-bottom:35px;
  padding-bottom: 10px;
}
h2 {
  color: black;
  background-color: var(--vert-clair);
  font-size: 150%;
  font-weight: bold;
}
h3 {
  font-size: 110%;
  color:#f02233
  margin-left: 40px;
  font-style: italic;
  padding-left: 20px;
}
h2,h3 {
  display:inline;
}
h4 {
  font-style: italic;
  text-align: center;
  color:#f02233;
  padding-left: 20px;
}
/* Boutons */
.button {
    display: inline-block;
    background-color: #2D5A3D;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}
.button:hover {
    background-color: #a71513;
}

/* ------------------------------------------ */


p.clear {
  clear: both;
}
body {
    font-family: Arial;
	font-size: large;
	background-color: white;
	color: black;
    max-width: 1200px;
    margin: auto;
}
/* ********** Bandeau supérieur ********** */
.header {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
/* *********** En-tête **************** */
#en_tete {
  width: 100%;
  top: 0;
  margin-left: 0;
  margin-right: 0;
  background-image: url(../img/banniere.jpg);
  /* background-repeat: no-repeat; */
  background-color: var(--gris-pale);
}

#logo {
  border: 0;
  width: 80px; 
  height: 80px; 
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #2D5A3D;
/*    font-weight: bold;*/
}

.nav-menu a:hover {
    color: white;
    background-color: var(--vert);
}

.nav-menu a.active {
    color: #000;
}

.nav-menu a.active:hover {
    color: white;
    background-color: var(--rose-fonce);
}
/* Contenu principal */

div.contenu_page {
  margin: 0;
  /*Margin-top: 10%;*/
  padding: 10%;
  background-image: url(../img/fond_vertical.png);
  background-repeat: no-repeat;
}

/* Section Événement à venir */
.event-coming {
    display: flex;
    margin-bottom: 30px;
    gap: 20px;
    align-items: center;
}

.event-info {
    flex: 1;
}

.event-poster img {
    max-width: 300px;
    border: 1px solid #ddd;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-height: 400px;
    margin-bottom: 0;
}

.last-event {
    margin-bottom: 30px;
}

/* Galerie d'images */
.gallery {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.gallery img {
    width: 170px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gallery_large {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.gallery_large img {
    width: 270px;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Témoignages */
.testimonial {
    font-style: italic;
    margin: 15px 0;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #2D5A3D;
}
/* Section Appels à l'action */
.cta-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-box {
    flex: 1;
    padding: 20px;
    background-color: #f5f5f5;
    text-align: center;
    border-radius: 5px;
}

/* Partenaires */
.partners {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partner {
    flex: 1;
    min-width: 200px;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.partner img {
    max-width: 150px;
    margin-bottom: 10px;
}

/* Style pour le footer */
.footer {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px 20px 10px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
/* Modifié par moi */
.footer-section {
    flex: 1;
    min-width: 150px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: small;
    text-align: center ;
    line-height: 1;
    
}
/* fin modif*/

.footer-section h3 {
    margin-bottom: 10px;
    color: #2D5A3D;
    font-size: 1.1em;
}

.footer-links, .footer-social, .footer-legal {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-legal li {
    margin-bottom: 5px;
}

.footer-links a, .footer-legal a {
    color: #2D5A3D;
    text-decoration: none;
}

.footer-links a:hover, .footer-legal a:hover {
    text-decoration: underline;
}

.footer-social a {
    color: #2D5A3D;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: small /* modifié par moi*/;
    color: #666;
}

