body {
  margin: 0;
  font-family: sans-serif;
  background: #121d2b url('/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}
header nav {
  background: rgba(0, 0, 0, 0.6);
  padding: 1em;
  text-align: center;
}
header nav a {
  color: white;
  margin: 0 1em;
  text-decoration: none;
}
header nav a:hover {
  text-decoration: underline;
}
.hero {
  padding: 1em 1em;
  text-align: center;
}
.titles {
  background: rgba(40, 40, 40, 0.5); /* noir semi-transparent */
  backdrop-filter: blur(8px);          /* Flou de ce qu'il y a derrière */
  -webkit-backdrop-filter: blur(8px);  /* Compatibilité Safari */
  padding: 2rem;
  border-radius: 12px;
  
  margin: 2rem auto;
  color: #fff;
  text-align: center;

  width: fit-content;
  min-width: 300px;                     /* Minimum souhaité */
  max-width: 90vw;                      /* Max 90% de la largeur écran */
  margin: 2rem auto;

}
.descriptif {
  background: rgba(40, 40, 40, 0.5); /* noir semi-transparent */
  backdrop-filter: blur(3px);          /* Flou de ce qu'il y a derrière */
  -webkit-backdrop-filter: blur(3px);  /* Compatibilité Safari */
  padding: 1rem;
  border-radius: 12px;
  
  margin: 2rem auto;
  color: #fff;

  width: fit-content;
  min-width: 300px;                     /* Minimum souhaité */
  max-width: 90vw;                      /* Max 90% de la largeur écran */
  margin: 2rem auto;


}
.content {
  background: rgba(40, 40, 40, 0.5); /* noir semi-transparent */
  backdrop-filter: blur(3px);          /* Flou de ce qu'il y a derrière */
  -webkit-backdrop-filter: blur(3px);  /* Compatibilité Safari */
  padding: 1rem;
  border-radius: 12px;
  
  margin: 2rem auto;
  color: #fff;

  width: fit-content;
  min-width: 300px;                     /* Minimum souhaité */
  max-width: 90vw;                      /* Max 90% de la largeur écran */
  margin: 2rem auto;

}
.cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 0.5em;
}
.cta2 {
  display: inline-block;
  margin-top: 1em;
  padding: 0.5em 1em;
  background: #ec1212;
  color: white;
  text-decoration: none;
  border-radius: 0.5em;
}
.prestations {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.break {
  flex-basis: 100%;
  height: 0;
}
.service-btn {
  display: inline-block;
  background: rgba(80, 80, 80, 0.3); /* gris translucide */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s, transform 0.2s;
  backdrop-filter: blur(5px);
}
.service-btn:hover {
  background: rgba(100, 100, 100, 0.6);
  transform: scale(1.05);
}
h1 {
  color: #FF00FF;
  font-size: 2.5em;
}
.tarif {
  font-size: 1.5em;
  color: #00FFFF;
}
.btn {
  background: #FF00FF;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  border-radius: 5px;
}
.btn:hover {
  background: #00FFFF;
}
footer {
  text-align: center;
  padding: 2em;
  background: rgba(0, 0, 0, 0.4);
}
