@charset "UTF-8";
#ba * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#ba .container {
  padding: 20px;
}
#ba .banner {
  border-radius: 10px;
}
#ba .banner-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#ba .text-content {
  flex: 1;
  min-width: 300px;
  margin-right: 20px;
  z-index: 2;
  /* Espacement entre le texte et l'image */
}
#ba .text-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 400;
}
#ba .text-content .highlight {
  color: #C58602;
  font-weight: 900;
}
#ba .text-content p {
  font-size: 1.375rem;
  line-height: 1.3;
  margin-bottom: 20px;
}
#ba .contact-button {
  background-color: #C58602;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 700;
}
#ba .image-content {
  flex: 1;
  width: auto;
  text-align: center;
  align-self: flex-start;
  height: auto;
  position: relative;
}
#ba .image-content img {
  max-width: 100%;
  height: auto;
  transform: scale(1.2) translateX(10px);
}
#ba .hoverimg {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, #1E1E1E, transparent);
  transform: scale(1.25);
}
@media (max-width: 768px) {
  #ba .banner-content {
    flex-direction: column; /* Organiser les éléments en colonne */
  }
  #ba .text-content,
  #ba .image-content {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%; /* Pour qu'ils occupent toute la largeur */
  }
  #ba .text-content {
    order: 1; /* Le texte en premier */
  }
  #ba .image-content {
    order: 2; /* L'image en second */
    text-align: center; /* Réaligner l'image au centre */
    position: relative; /* Ajout de la position relative */
  }
  #ba .text-content h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
  }
  #ba .text-content p {
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  #ba .image-content img {
    transform: scale(0.9) translateY(15px); /* Ajouter une translation en Y */
  }
  #ba .hoverimg {
    position: absolute; /* Position absolue */
    bottom: -25px; /* En bas de l'image */
    left: 0;
    right: 0;
    height: 50%; /* Hauteur de 50% */
    background: linear-gradient(to top, #1E1E1E, transparent);
    transform: scale(0.9);
  }
}

/*# sourceMappingURL=ba.css.map */
