/* Conteneur principal */
#volton-banner {
  position: relative;
  font-family: 'Arial', sans-serif;
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
}

.volton-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Texte centré verticalement */
.volton-banner-text.centered-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 80%;
  color: #333;
}

/* Ligne 1 : spécialités */
.volton-banner-text.centered-text p {
  margin: 0.5em 0;
  font-size: 2em;
  line-height: 1.5;
}

.volton-banner-text .sophro {
  color: #1a38d3; /* bleu */
  font-weight: bold;
}

.volton-banner-text .hypnose {
  color: #2e7d32; /* vert */
  font-weight: bold;
}

.volton-banner-text .yoga {
  color: #e65100; /* orange */
  font-weight: bold;
}

/* Ligne 2 : saison */
.volton-banner-text .saison {
  font-size: 2.2em;
  font-weight: bold;
  color: #1a38d3;
  font-family: 'Georgia', serif;
}

/* Ligne 3 : infos */
.volton-banner-text .infos {
  font-size: 1.2em;
  color: #666;
  font-weight: normal;
  font-family: 'Georgia', serif;
  margin-top: 1em;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .volton-banner-text.centered-text {
    left: 5%;
    width: 90%;
  }

  .volton-banner-text.centered-text p {
    font-size: 1.2em;
  }

  .volton-banner-text .saison {
    font-size: 1.4em;
  }

  .volton-banner-text .infos {
    font-size: 1em;
  }
}
