.hero_container {
  position: relative;
  background-image: url("../assets/imgs/photo_header.webp");
  background-size: cover;
  background-position: center;
  min-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.my_profile_container {
  position: relative;
  align-self: flex-end;
  margin: 20px 20px 0 0;
  z-index: 2;
}

.btn_edit {
  text-decoration: none;
  color: inherit;
  padding: 10px;
  text-align: center;
}
.text-center {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero_container h1 {
  font-size: 150px;
  margin: 0;
}

.greetings_container h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 50px;
  border-radius: 50px;
  color: #333;
  font-size: 40px;
  display: inline-block;
  margin: 0;
}

.circle_profile {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  position: absolute;
  top: -10%;
  left: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle_profile::before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 20;
  left: 20;
}

.inner_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner_circle::before {
  content: "";
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: white; /* Couleur du cercle blanc */
  position: absolute;
  top: 20;
  left: 20;
}

.my_profile_container h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 10px 40px;
  border-radius: 50px;
  color: #333;
  font-size: 2.5rem;
  display: inline-block;
  margin: 0;
  width: 280px;
  height: 65px;
}

.player {
  width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.triangle {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid black;
  position: absolute;
}

.performance_container p {
  font-size: 20px;
}

.circle_performance {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f805fe, #548cdd);
  position: absolute;
  left: 40%;
  bottom: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.circle_performance::before {
  content: "";
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: black;
  position: absolute;
  top: 20;
  left: 20;
}

.inner_circle_performance {
  width: 70px;
  height: 70px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inner_circle_performance::before {
  content: "";
  width: 80%;
  height: 80%;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 20;
  left: 20;
}

.about_me_container {
  background-image: url("../assets/imgs/bg_about_me.png");
  background-size: cover;
  background-position: center;
  height: auto;
  overflow: hidden;
}

.card {
  height: 200px;
  width: 200px;
}

.btn_edit {
  border: none;
  width: 120px;
  height: 40px;
  margin-top: 20px;
  background: linear-gradient(to right, #f805fe, #548cdd);
  font-size: 20px;
}

.availability_date {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.availability_date:focus {
  border-color: #f805fe;
  box-shadow: 0 0 5px rgba(84, 140, 221, 0.5);
  outline: none;
}

.availability-time {
  background-color: #f805fe;
  color: white;
  border: none;
  font-weight: bold;
}

.availability-time option {
  background-color: #f805fe;
  color: white;
  text-align: center;
}

.form-check-input {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.photos_container {
  background-color: black;
  color: white;
}

.custom-carousel-img {
  object-fit: cover; /* Garder l'image bien centrée */
  height: 100%; /* Hauteur fixée pour les images */
  width: 100%; /* Remplir toute la largeur de la colonne */
  border-radius: 10px; /* Arrondir les coins des images */
}

.carousel-item {
  padding: 10px 0; /* Espacement pour bien séparer les images */
}

.carousel-item .row {
  display: flex;
  justify-content: center; /* Centrer les images horizontalement */
}

.carousel-item .col-md-4 {
  display: flex;
  justify-content: center;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: black; /* Améliore la visibilité des icônes de navigation */
}

@media (min-width: 768px) {
  .mb4 {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 600px) {
  .greetings_container h1 {
    font-size: 4rem;
  }

  .greetings_container h2 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  .circle_profile {
    width: 60px;
    height: 60px;
    top: -5%;
    left: 70%;
  }

  .circle_profile::before {
    width: 85%;
    height: 85%;
    top: 15;
    left: 15;
  }

  .inner_circle {
    width: 20px;
    height: 20px;
  }

  .inner_circle::before {
    width: 70%;
    height: 70%;
    top: 15;
    left: 15;
  }

  .my_profile_container h2 {
    font-size: 2rem;
    width: 200px;
    height: 50px;
    padding: 10px 15px;
  }
}
