body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333333;
}

header {
  width: 100%;
  background-image: url('./header_background.jpg');
  background-size: cover;
  /* Cette ligne redimensionne l'image pour couvrir tout l'élément */
  background-position: center;
  /* Cette ligne centre l'image */
  background-repeat: no-repeat;
  padding: 20px;
  text-align: center;
}

header h1,
header p {
  color: #ffcc00;
  /* Couleur jaune pour le titre et les informations principales */
}
.prix {
  color: #ffcc00;
  font-weight: bold;
  font-size: 1.5rem;

}
.text-background {
  background-color: rgba(122, 100, 122, 0.8); /* Fond violet avec transparence */
  padding: 10px;
  display: inline-block; /* Pour ajuster la taille de la div au contenu */
  border-radius: 15px;
}
nav.menu {
  background-color: #666666;
  padding: 10px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

nav.menu a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  text-align: center;
}

nav.menu a:hover {
  color: #cccccc; /* Couleur plus claire */
  text-decoration: underline; /* Traie dessous */
}

.content {
  margin: 20px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
}

.content h2 {
  color: #ffcc00;
  /* Couleur jaune pour les sous-titres */
}

#a-propos p {
  font-size: 18px;
  /* Augmentez la taille de la police */
  line-height: 1.6;
  /* Améliorez l'espacement des lignes */
  text-indent: 20px;
  /* Ajoutez une indentation au début de chaque paragraphe */
  margin-bottom: 20px;
  /* Donnez un peu d'espace en dessous du paragraphe */
  text-align: justify;
  /* Justifiez le texte */
}

.carousel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel img {
  width: 70%;
  height: auto;
  display: block;
}

.carousel .prev,
.carousel .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50%;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.carousel .prev {
  left: 10px;
}

.carousel .next {
  right: 10px;
}

.video-section {
  text-align: left;
}

.video-section video {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Centrer la vidéo horizontalement */
}

iframe {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: 600px;
}

.documents a {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  text-decoration: none;
  color: #333333;
}

.documents img {
  margin-right: 10px;
  width: 36px;
  /* Adjust the width of the icon */
  height: 36px;
  /* Adjust the height of the icon */
}

