.content-conciergerie{
  max-width: 400px;
  margin: 2rem auto;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.04));
}

.fond-conciergerie {
  background-image: url("../images/fonds/fond_conciergerie.webp");
  background-size: cover;          /* L’image couvre tout l’écran */
  background-position: center;     /* Centrée */
  background-attachment: fixed;    /* Reste fixe pendant le scroll */
  background-repeat: no-repeat;    /* Pas de répétition */
  color: #fff;                     /* Texte en blanc pour contraster */
}

.texte-conciergerie {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

/* --- STYLE DU FORMULAIRE --- */
form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(20, 20, 20, 0.8);
  padding: 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
}

label {
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: #e0d3b8;
}

input, textarea {
  width: 100%;
  padding: 0.6rem;
  border: none;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  color: #f9f6ef;
  font-family: "Cormorant Garamond", serif;
}

input:focus, textarea:focus {
  outline: 2px solid #b2945b;
  background: rgba(255,255,255,0.15);
}

/* --- BOUTON STEAMPUNK --- */
.btn-missive {
  background: linear-gradient(145deg, #4b3a25, #2a1e13);
  color: #f3e6c4;
  border: 2px solid #a58b5f;
  padding: 0.7rem 1.2rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 8px rgba(255, 223, 150, 0.2), 0 0 10px rgba(0,0,0,0.5);
}
  
.btn-missive:hover {
  background: linear-gradient(145deg, #5e452b, #3b2b19);
  box-shadow: inset 0 0 12px rgba(255, 240, 180, 0.4), 0 0 15px rgba(255,215,100,0.3);
  transform: scale(1.03);
}