/* Styles responsifs pour mes-favoris.html */

/* Tablettes */
@media (max-width: 992px) {
  .favorites-container {
    max-width: 90%;
    margin: 3rem auto 2rem;
    padding: 0 25px;
  }
  
  .favorites-container h1 {
    font-size: 28px;
    margin-bottom: 25px;
  }
  
  /* Système de filtrage */
  .favorites-filters {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  
  .filter-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
  
  /* Section de catégorie */
  .favorites-category-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1.2rem;
  }
  
  .favorites-category-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  
  /* Grille pour les événements */
  .favorites-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  /* Style des cartes d'événements */
  .sidebar-img-container {
    height: 160px;
  }
  
  .sidebar-text {
    padding: 1rem 1.2rem;
  }
  
  .sidebar-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .sidebar-venue {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .sidebar-date {
    font-size: 0.8rem;
    padding-top: 0.6rem;
  }
  
  /* Badge de catégorie */
  .category-badge {
    font-size: 0.65rem;
    padding: 4px 8px;
  }
  
  /* Message "Aucun favori" */
  .no-favorites {
    padding: 4rem 1.5rem;
  }
  
  .no-favorites p {
    font-size: 1.1rem;
  }
  
  .no-favorites .btn {
    padding: 0.9rem 1.8rem;
  }
}

/* Mobiles larges */
@media (max-width: 768px) {
  /* Conteneur principal */
  .favorites-container {
    max-width: 100%;
    margin: 2rem auto;
    padding: 0 20px;
  }
  
  .favorites-container h1 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Système de filtrage */
  .favorites-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 10px 0;
    gap: 8px;
    margin-bottom: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    max-width: 100%;
  }
  
  .favorites-filters::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  
  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
  
  /* Section de catégorie */
  .favorites-category-section {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  }
  
  .favorites-category-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
  }
  
  .favorites-category-title::before {
    width: 15px;
    height: 15px;
    margin-right: 0.6rem;
  }
  
  /* Grille pour les événements */
  .favorites-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 1rem;
  }
  
  /* Style des cartes d'événements */
  .sidebar-img-container {
    height: 140px;
  }
  
  .sidebar-text {
    padding: 0.9rem 1rem;
  }
  
  .sidebar-title {
    font-size: 0.95rem;
    -webkit-line-clamp: 2;
    max-height: 2.6rem;
  }
  
  .sidebar-venue {
    font-size: 0.85rem;
  }
  
  .sidebar-date {
    font-size: 0.75rem;
  }
  
  /* Bouton pour supprimer des favoris */
  .btn-remove {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }
  
  /* Message "Aucun favori" */
  .no-favorites {
    padding: 3rem 1.5rem;
    margin-top: 1.5rem;
  }
  
  .no-favorites p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .no-favorites .sub-message {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
  
  .no-favorites .btn {
    width: 100%;
    max-width: 300px;
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
  }
  
  /* Animation de chargement */
  .favorites-loading {
    font-size: 1rem;
    padding: 3rem 0;
  }
  
  /* Message d'erreur */
  .error-message {
    font-size: 0.9rem;
    padding: 0.9rem 1.2rem;
  }
  
  /* Ajout d'espace pour la barre de recherche */
  .spacer {
    height: 40px;
    display: block;
  }
}

/* Petits écrans mobiles */
@media (max-width: 576px) {
  .favorites-container {
    padding: 0 15px;
    margin: 1.5rem auto;
  }
  
  .favorites-container h1 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  
  /* Système de filtrage */
  .filter-tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }
  
  /* Section de catégorie */
  .favorites-category-section {
    margin-top: 1.2rem;
    margin-bottom: 1.2rem;
    padding: 12px;
  }
  
  .favorites-category-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
  
  /* Grille pour les événements */
  .favorites-list {
    grid-template-columns: 1fr; /* Une seule colonne sur les petits écrans */
    gap: 1rem;
  }
  
  /* Style des cartes d'événements */
  .sidebar-event-item {
    display: flex;
    flex-direction: row;
    height: auto;
    max-height: 130px;
  }
  
  .sidebar-event-content {
    flex-direction: row;
  }
  
  .sidebar-img-container {
    width: 35%;
    height: 130px;
    min-width: 100px;
  }
  
  .sidebar-text {
    width: 65%;
    padding: 0.8rem;
  }
  
  .sidebar-title {
    font-size: 0.9rem;
    -webkit-line-clamp: 1;
    max-height: 1.3rem;
  }
  
  .sidebar-venue {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
  }
  
  .sidebar-date {
    font-size: 0.7rem;
    padding-top: 0.4rem;
  }
  
  /* Badge de catégorie */
  .category-badge {
    top: 5px;
    left: 5px;
    padding: 3px 6px;
    font-size: 0.6rem;
  }
  
  /* Bouton pour supprimer des favoris */
  .btn-remove {
    width: 24px;
    height: 24px;
    font-size: 0.7rem;
    top: 0.5rem;
    right: 0.5rem;
  }
  
  /* Message "Aucun favori" */
  .no-favorites {
    padding: 2.5rem 1rem;
  }
  
  .no-favorites p {
    font-size: 0.95rem;
  }
  
  .no-favorites .sub-message {
    font-size: 0.8rem;
  }
  
  .no-favorites .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
  
  /* Message d'erreur */
  .error-message {
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    margin: 1rem 0;
  }
}

/* Très petits écrans */
@media (max-width: 360px) {
  .favorites-container {
    padding: 0 10px;
  }
  
  .favorites-container h1 {
    font-size: 20px;
  }
  
  /* Système de filtrage */
  .filter-tab {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
  }
  
  /* Section de catégorie */
  .favorites-category-section {
    padding: 10px;
  }
  
  .favorites-category-title {
    font-size: 1rem;
  }
  
  /* Style des cartes d'événements */
  .sidebar-event-item {
    max-height: 110px;
  }
  
  .sidebar-img-container {
    width: 35%;
    height: 110px;
    min-width: 90px;
  }
  
  .sidebar-text {
    padding: 0.6rem;
  }
  
  .sidebar-title {
    font-size: 0.8rem;
  }
  
  .sidebar-venue {
    font-size: 0.7rem;
  }
  
  .sidebar-date {
    font-size: 0.65rem;
  }
  
  /* Message "Aucun favori" */
  .no-favorites {
    padding: 2rem 0.8rem;
  }
  
  .no-favorites p {
    font-size: 0.9rem;
  }
  
  .no-favorites .sub-message {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .no-favorites .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}