body {
  display: block;
  margin: 0;
  background-color: #333333;
  color: #F4E6D9;
  font-family: 'Arial', sans-serif;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
}



a {
  color: #FAE9DC; /* couleur par défaut du lien */
  text-decoration: none; /* enlève le soulignement (facultatif) */
}

a:hover {
  color: #333333; /* couleur au survol */
  text-decoration: underline; /* ajoute un effet au survol */
}

a:visited {
  color: #F4E6D9; /* couleur une fois le lien visité */
}

a:active {
  color: #FFFFFF; /* couleur pendant le clic */
}


.site-web {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #234555;
  padding: 0px;
  overflow: hidden; /* ✅ Masque les débordements visuels */
  position: relative; /* utile pour les flèches ou pagination */
}

h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 30px;
}





/* Conteneur de l’image d’en-tête */
.header-image {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center; /* centre l'image horizontalement */
  align-items: center;
}

/* Image en-tête elle-même */
.header-image img {
  width: 100%;
  height: auto;
  min-height: 200px;         /* ne descend jamais en dessous */
  object-fit: cover;         /* garde le cadrage propre */
  display: block;
}






/* Swiper Slide */
.swiper-container {
  width: 100%;         /*  Prend la largeur dispo sans dépasser */
  overflow: hidden;    /*  Masque tout débordement interne */
  box-sizing: border-box;
  padding: 20px;
  position: relative;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}


/***********/
/************/
/*************/
/*   Flèches  */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #333; /* couleur par défaut */
  width: 30px;
  height: 30px;
  font-size: 20px;
  background: none; /* enlève le fond */
  border: none;
  box-shadow: none; /* enlève le carré ou l'ombre */
  cursor: pointer;
  transition: color 0.3s ease;
}

/* Espacement horizontal */
.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Au survol */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  color: #F4E6D9; /* couleur au survol (rouge par exemple) */
}
/*   Flèches  */
/*************/
/************/
/***********/



/* Pagination */
.swiper-pagination-bullet {
  background-color: #F4E6D9;
}

.TexteNormal{
  color: #F4E6D9;
  background-color: #234555;
  font-family: 'Varela Round', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 100; 
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}



.copyright{
  color: #111111;
  font-family: 'Varela Round', sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 100; 
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}








@media screen and (max-width: 991px) {
  .body {
    margin-right: 140px;
    margin-left: 140px;
  }
}

@media screen and (max-width: 767px) {
  .body {
    margin-right: 60px;
    margin-left: 60px;
  }
}

@media screen and (max-width: 479px) {
  .body {
    margin-right: 0px;
    margin-left: 0px;
  }
}