.cursor {/*Cette section est dédié à l'animation de la souris*/
  width: 20px;
  height: 20px;
  background-color: #0d6efd;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
}
  nav h4{
    color: #ffffff;
  }
  nav ul{
    list-style: none;
    text-align: center;
   
  }
  nav ul li{
    display: inline;
    padding: 0 45px;
    font-size: 20px;
    
  }
  .navbar-nav .nav-link {
    color: #0d6efd !important; /* Bleu Bootstrap */
}

.navbar-nav .nav-link:hover {
    color: #0a58ca !important; /* Bleu légèrement plus foncé au survol */
}
.navbar-nav .nav-link:hover {
  color: white !important;
}

  .btn-primary:hover {
    background-color: white !important;
    color: #0d6efd !important; /* Bleu Bootstrap */
    border-color: #0d6efd !important;
  }
 
  .btn-primary {
    transition: all 0.3s ease-in-out;/*c'est pour rendre l'animation plus fluide*/
  }
 #hero {
  height: 100vh;
  background: linear-gradient(rgba(252, 252, 252, 0.938), rgb(255, 255, 255)), url('your-image.jpg') no-repeat center center/cover;
  color: rgb(21, 24, 18);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
    }
    .bubble {
      position: absolute;
      bottom: -50px;
      background-color: rgb(63, 143, 249);
      border-radius: 50%;
      animation: floatUp linear forwards;
    }
    @keyframes floatUp {
      0% {
        transform: translateY(0);
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh);
        opacity: 0;
      }
}

#hero h1 {
  font-size: 4rem;
}
#hero p {
  font-size: 1.5rem;
} 
#hero .texte {
  opacity: 0; /* Caché au départ */
  animation: fadeIn 2s ease-in-out forwards;
}

@keyframes fadeIn {/*C'est pour animer la page d'accueil*/
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}
 #about img {
height: 400px;
opacity: 0;
    animation: fadeInUp 3s ease forwards;
 }
 @keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

#about{
  opacity: 0;
  animation: fadeInUp 3s ease forwards; 
  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }
}



  .skill-bubble {
    font-size: 2rem;           /* Texte plus grand */
    padding: 0.75rem 1.5rem;   /* Plus de padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
  }

  .skill-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }




.gallery img {
  transition: transform 0.3s ease-in-out;
}
.gallery img:hover {
  transform: scale(1.1);
}
footer {
  position: relative;
  overflow: visible !important;
}
.zoom-effect {
  transition: transform 0.3s ease-in-out;
}
.zoom-effect:hover {
  transform: scale(1.1);
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top left, #d0f0ff, #f0eaff);
  z-index: -2;
}

.bubble2 {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: white;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      margin: 1rem auto;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      transition: transform 0.3s ease;
      cursor: pointer;
      position: relative;
    }

    .bubble2 img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius:100%;
      transition: opacity 0.3s ease;
    }

    .bubble2:hover {
      transform: scale(1.05);
    }

    .filter-btn {
      margin: 0.2rem;
    }

    .modal-img {
      width: 50%;
      border-radius: 10px;
      margin-bottom: 1rem;
    }