* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

#song-info,
#lyrics-container {
    display: none; /* Masque ces éléments par défaut */
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Assurez-vous que la vidéo reste en arrière-plan */
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* La vidéo couvre tout l'écran sans déformation */
}

@font-face {
    font-family: 'Autography';
    src: url('fonts/autography-webfont.woff2') format('woff2'),
         url('fonts/autography-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.logo {
    font-family: 'Autography', cursive;
    font-size: 4rem;
    color: white;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Assurez-vous que le titre est visible au-dessus de la vidéo */
    background: rgba(0, 0, 0, 0.5); /* Assombrir légèrement la vidéo pour que le texte soit lisible */
}

.display-3 {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Lobster', cursive;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.hero-section {
    margin-top: 20px; /* Décalage entre le titre et la section inférieure */
}

#playlist-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

#playlist .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#playlist .list-group-item a {
    color: inherit; /* Hérite de la couleur du parent */
    text-decoration: none; /* Retire le soulignement */
    display: block; /* Permet de rendre tout l'élément <li> cliquable */
    width: 100%;
    height: 100%;
}

#playlist .list-group-item.active {
    background-color: #00c4cc;
    color: #fff;
    font-weight: bold;
}

#playlist .list-group-item:hover {
    background-color: #f4f4f4;
}

#lyrics-container {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    max-height: calc(100vh - 200px);
    box-sizing: border-box;
}

.highlight {
    background-color: rgb(183, 227, 253);
    font-weight: bold;
}


#song-info {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#song-title {
    font-size: 1.5rem;
    font-weight: bold;
}

#song-details {
    font-size: 1rem;
    color: #555;
}

#song-description {
    font-size: 0.9rem;
    color: #777;
}
