
  /*Petit menu a droite*/
  .floating-box {
    position: fixed; /* Garde la boîte visible pendant le scroll */
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    top: 115px;
    transition: opacity 0.3s ease;
    
  }
  
  .floating-btn {
    display: flex;
    align-items: center;
    gap: 8px;
  
   background: #1976d2;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    font-size: 15px;
  }
  
  .floating-btn i {
    font-size: 18px;
  }
  
  .floating-btn:hover {
  background-color: #0caf8e; 
    color: blanchedalmond;
  }
  
  /* Responsive pour mobile/tablette */
  @media (max-width: 768px) {
    .floating-box {
      bottom: 10px;
      right: 10px;
      gap: 8px;
    }
  
    .floating-btn {
      padding: 8px 12px;
      font-size: 14px;
    }
  
    .floating-btn i {
      font-size: 16px;
    }
  }
  
  .floating-box.hidden {
    opacity: 0;
    pointer-events: none;
    
  }
  
 
  
 
  .btn-custom-blue {
    background: #b71c1c;
  color: #fff;
  padding: 5px 20px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Effet de survol */
.btn-custom-blue:hover {
  background-color: yellow;
  transform: scale(1.05);
   text-decoration: none;
}

/* Responsive pour les petits écrans */
@media (max-width: 576px) {
  .btn-custom-blue {
    width: 100%;
    font-size: 16px;
    padding: 12px 0;
    border-radius: 6px;
  }
}

 .titre-style {
    font-family: 'Roboto Slab', serif; /* ou 'Merriweather', ou 'Georgia' pour un style serif fort */
    font-weight: 700; /* Gras */
    font-size: 48px;
    color: white;
    background-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

 .text2 {
    font-family: 'Merriweather', serif; /* ou 'Merriweather', ou 'Georgia' pour un style serif fort */
    font-size: 30px;
    color: white;
    background-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.0; /* Valeur entre 1.1 et 1.3 donne un rendu plus compact */
}

