
.hero {
  background: rgba(0,80,120,0.95);
  color: white;
  padding: 70px 20px;
  text-align: center;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
  
  .hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    animation: fadeInDown 1s;
  }
  .hero p {
    animation: fadeInUp 1s;
  }
  
  /* Boîte de recherche */
  .search-box {
    position: relative;
    display: flex;
    align-items: center;
    border-radius: 50px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
  }
  
  
  /* Loupe */
  .search-box i {
    position: absolute;
    left: 20px;
    font-size: 1.2rem;
    transition: transform 0.4s ease;
  }
  
  /* Input personnalisé */
  .chic-input {
    flex: 1;
    border: none !important;
    outline: none;
    background: transparent;
    color: white;
    padding-left: 45px; 
    font-size: 1.1rem;
  }
  
  .chic-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
  }
  
  /* Effets au survol */

  
  /* Animation focus */
  .chic-input:focus {
    color: white;
  }
  
  .chic-input:focus + i {
    transform: translateY(-3px) rotate(-8deg);
  }
  
  
  
  .filtres .card {
      border-radius: 16px;
    }
    
    .filtres .btn {
      border-radius: 12px;
      padding: 6px 14px;
      font-size: 0.9rem;
    }
    
    .filtres .btn.active {
      background: #005078;
      color: #fff;
    }
    
    .filtres .badge {
      font-size: 0.75rem;
      border-radius: 8px;
    }
  
    /* Boutons filtres */
  .filtres .btn {
      border-radius: 12px;
      padding: 6px 14px;
      font-size: 0.9rem;
    }
    
    .filtres .btn.active {
      background: #005078;
      color: #fff;
    }
    
    /* État vide */
    .empty-state {
      max-width: 400px;
      margin: auto;
    }
    .empty-img {
      width: 120px;
      opacity: 0.8;
    }
    
  
    .btn-outline-custom {
      color: rgba(0, 80, 120, 0.7);         
      border: 1px solid rgba(0, 80, 120, 0.7);
      padding: 8px;
      background-color: transparent;         
      transition: all 0.3s ease;            
    }
    
    .btn-outline-custom:hover,
    .btn-outline-custom:focus {
      color: #fff;                         
      background-color: rgba(0, 80, 120, 0.7); 
  
      border-color: rgba(0, 80, 120, 0.7); 
    }
  
    .text-custom {
      color: rgba(0, 80, 120, 0.7);
      font-weight: 500;                         
      transition: color 0.3s ease;             
    }
    
    .text-custom:hover,
    .text-custom:focus { 
      color: rgba(0, 80, 120, 1);
    }
    
    