/* assets/css/hero.css */
.hero-home {
    height: 90vh; 
    display: flex;
    align-items: flex-start; 
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8)), 
                url('/views/img/banderole.jpg')  center/cover no-repeat;
    margin-top: -76px;
    /* C'EST ICI : on augmente pour descendre le texte */
    padding-top: 35vh; 
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
}

/* GUITARE : Puissant, blanc et aéré */
.hero-title .main-word {
    display: block;
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: 20px; /* Encore plus d'espace pour le style */
    line-height: 1;
    margin-bottom: 20px;
}

/* CHANT • PERCUSSIONS : Rouge, sans le &, très aéré */
.hero-title .sub-word {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 15px; 
    color: #e63946;
    margin-top: 10px;
}

.hero-divider {
    width: 60px;
    height: 3px;
    background: #fff;
    margin: 40px auto;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

/* Bouton COMMENCER plus sobre */
.btn-rock {
    background: #e63946;
    color: #fff;
    border: none;
    padding: 15px 50px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: 0.3s;
}

.btn-rock:hover {
    background: #fff;
    color: #e63946;
}