/* Bandeau du menu en haut de la page */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #222;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link.active {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s;
}

.nav-link.active::after {
    width: 100%;
}

.languages {
    display: flex;
    gap: 1rem;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.lang-btn.active {
    background-color: #ff6b6b;
}

/* Menu de filtrage pour la section Musique */
.music-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.music-menu-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 20px;
    margin: 0 10px;       /* Espacement horizontal entre les boutons */
    min-width: 120px;     /* Largeur minimale pour uniformiser la taille */
    height: auto;         /* Hauteur automatique pour s'adapter au contenu */
    cursor: pointer;
    color: #333;
    position: relative;
    transition: color 0.3s;
    font-family: HF Medium,Roboto,sans-serif;
    font-weight: bold;
}

.music-menu-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s;
}

.music-menu-btn.active {
    color: #ff6b6b;
}

.music-menu-btn.active::after {
    width: 100%;
}

/* Effet au survol des boutons */
.music-menu-btn:hover {
    color: #ff6b6b;                /* Couleur du texte (optionnel) */
    transform: scale(1.05);     /* Légèrement plus grand (optionnel) */
    transition: all 0.3s ease;  /* Animation fluide */
}

.ecouter-btn {
    background-color: #ffa07a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 10px;
    display: none; /* Par défaut, caché (géré par JS) */
    pointer-events: none; /* Désactive le clic sur le bouton */
}

.ecouter-btn.fr, .ecouter-btn.en {
    display: block; /* Affiché selon la langue */
}


