
/* Mettre des colonnes côtes à côtes */

.bandeau-salon-suivant {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; 
  text-align: center;
  flex-wrap: wrap;
  /* border: 1px solid blue; */
  height: 30vw;
  background-color: #C69C6D;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bandeau-salon-suivant .logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 30%;
  z-index: 1;
  /* Logo derrière le texte et l'image */
  /* border: purple solid; */
}

.bandeau-salon-suivant .logo-container img {
  max-width: 100%;
  /* Ajustez la taille comme nécessaire */
  height: auto;
  opacity: 0.6;
  /* Rend le logo semi-transparent */
}

.bandeau-salon-suivant .column {
  flex: 1;
  display: flex; /* Ajout pour le flexbox dans la colonne */
  flex-direction: column; /* Direction de la flexbox */
  justify-content: center; /* Centrage vertical du contenu de la colonne */
  /* padding: 0 30px;  */
  /* Ajusté pour simplifier */
  /* max-width: var(--width); */
  max-height: 100%;
  font-weight: var(--font-weight);
  /* border: 1px solid red; */
}


.bandeau-salon-suivant  .column P {

  padding-left: 0px;
}

.bandeau-salon-suivant  .column h1 {

  color: inherit;
  text-align: left;
  padding-bottom: 5px;
}

/* .column figure img {
  max-width: var(--width);
  display: block;
  margin-left: auto;
  margin-right: auto;
} */

.bandeau-salon-suivant .column img {
  max-width: 100%;
  max-height: 100%;
  width: 15vw;
  height: auto;
  margin: 0 auto; /* Centrage horizontal */

  border: 10px solid white;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
  /* Ajustez la rotation si nécessaire */
  transform: rotate(20deg);
  
}









.bandeau-salon-test img {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  /* width: 200px; */
}

.image-ordinateur {
  display: block;
}
.image-telephone {
  display: none;
}

/* Media query pour les petits écrans (téléphones) */
@media screen and (max-width: 600px) {
  .image-ordinateur {
      display: none;
  }
  .image-telephone {
      display: block;
  }
}


