/* Bloc Entête - Styles */
.bloc-entete {
    padding: 60px 0;
    background: #ffffff;
    position: relative;
}

.bloc-entete strong{
    font-weight: 600;
}

.bloc-entete__content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.bloc-entete__title {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 32px;
    line-height: 1.2;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2.88px;
    margin: 0 0 30px 0;
    position: relative;
}

.bloc-entete__title span {
    font-weight: 700;
}

.bloc-entete__button {
    margin-top: 20px;
}



.bloc-entete .btn:hover {
    background-color: #a00000;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
}

.bloc-entete .btn:focus {
    outline: 2px solid #be0000;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .bloc-entete {
        padding: 40px 0;
    }
    
    .bloc-entete__title {
        font-size: 6vw;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
    }
    
    .bloc-entete .btn {
        font-size: 16px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .bloc-entete__title {
        font-size: 8vw;
        letter-spacing: 1px;
    }
    
    .bloc-entete .btn {
        font-size: 14px;
        padding: 6px 12px;
    }
}
