.home_container {
    position: relative;
    background-image: url("../assets/imgs/bg_looking_musician.webp");
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .home_container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
  }
  .my_choice_container {
    position: relative;
    align-self: flex-end;
    margin: 20px 20px 0 0;
    z-index: 2;
  }
  
  .im_musician_container {
    position: relative;
    align-self: flex-end;
    margin: 20px 20px 0 0;
    z-index: 2;
  }
  .bouton_tutor{
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px 40px;
    border-radius: 50px;
    color: #333;
    font-size: 30px;
    display: inline-block;
    margin: 0;
    width: 420px;
    height: 80px;
    display: flex;
    position: relative;
      
  }

.instrument-gallery {
    
    display: none;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    padding: 20px;
}
.instrument-gallery.show {
  display: block; /* Utilise block pour les petits écrans */
}

@media (min-width: 501px) {
  .instrument-gallery.show {
      display: flex; /* Affichage en flex sur les écrans plus larges */
  }
}

.instrument-item {
    flex: 0 1 calc(45% - 20px);
    max-width: 300px;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instrument-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.instrument-item img {
  width: 100%;
  height: 250px; /* Augmente la hauteur pour agrandir l'image */
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}

.instrument-item p {
    margin: 10px 0;
    font-size: 18px;
    color: #333;
}

.instrument-item a {
    text-decoration: none;
    color: inherit;
}
.form-container {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    max-width: 400px;
    background-color: #f9f9f9;
}

.form-container input {
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
}

.form-container button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #0056b3;
}


.circle_profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #f805fe, #548cdd);
    position: absolute;
    top: -10%;
    left: 82%;
    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%;
  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  .inner_circle::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    position: absolute;
    top: 20;
    left: 20;
  }

  @media (max-width: 500px) {

    .circle_profile {
      width: 60px;
      height: 60px;
      top: -5%;
      left: 80%;
    }
  
    .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;
    }
  
    .bouton_tutor {
    
    width: 250px;
    height: 50px;
    padding: 10px 50px;
    justify-content: center;
    }

    .bouton_tutor h2{
      font-size: 17px !important;
    }
    
  
    .home_container {
      height: 60vh;
    }
  }