#banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 100px 20px;
}
#banner .text {
  padding: 10px 30px 10px 80px;
}
#banner .text h1 {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  font-size: 75px;
  font-weight: 800;
  letter-spacing: 1.1px;
  line-height: normal;
}

#banner .text h1 .line-3 {
  position: relative;
}
#banner .text h1 .line-3 img {
  width: 180px;
  height: 180px;
  z-index: -1;
  position: absolute;
  top: -67px;
  left: -126px;
}
#banner .text p {
  font-size: 1.2em;
  margin: 35px 50px 20px 0;
  line-height: normal;
  max-width: 775px;
}

#banner .text .button {
  display: inline-block;
  text-decoration: none;
  background-color: rgba(149, 82, 255, 0.5);
  font-size: 20px;
  font-weight: 200;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 13px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#banner .text .button:hover {
  background-color: #ff6347;
  transform: scale(1.05);
}

#banner .text .button:active {
  background-color: #ff4500;
  transform: scale(0.95);
}
#banner .container-photo {
  position: relative;
  height: fit-content;
  border-radius: 10px;
}

#banner .container-photo .about-image {
  padding: 42px;
  clip-path: circle(40% at 51% 49%);
  background-color: rgba(149, 82, 255, 0.5);
  height: auto;
  max-height: 380px;
  border-radius: 10px; /* Bord arrondi pour l'image */
}
#banner .container-photo .stars {
  width: 150px;
  height: 150px;
  position: absolute;
  top: -25px;
  left: -13px;
  z-index: 2;
}
#banner .container-photo .sticker1 {
  position: absolute;
  bottom: 10px;
  right: 33px;
  width: 150px;
  font-size: 20px;
  font-weight: 200;
  background-color: #9552ff;
  color: white;
  border-radius: 14px;
  padding: 13px 20px;
}

@media (max-width: 780px) {
  #banner {
    flex-direction: column;
  }

  #banner .text {
    padding: 0;
    text-align: center;
  }

  #banner .text h1 {
    font-size: 40px;
    padding-left: 0;
    align-items: center;
  }
  #banner .text h1 .line-1 img {
    display: none;
  }
  #banner .text h1 .line-3 img {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
  }

  #banner .text p {
    font-size: 21px;
    margin: 40px 0;
  }

  #banner .container-photo {
    margin-top: 20px;
  }
  #banner .container-photo .about-image {
    max-height: 250px;
    padding: 10px;
  }
  #banner .container-photo img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
  }
}
