/* Correction de la bande noire entre les sections */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section {
    margin: 0 !important;
    display: block;
}

/* Section Hero - couvrir tout l'écran */
#hero-section {
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
}

/* Section Nouveauté - supprimer l'espace du haut */
#nouveaute {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 5rem;
}

/* Toutes les autres sections */
#playlists, #tournee, #merch, #contact {
    margin: 0 !important;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

/* Footer */
footer {
    margin: 0 !important;
}