.banner {
    /* Remplacez 'votre-image.jpg' par le lien de votre image de bible */
    background-image: url('votre-image.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 250px; /* Ajustez la hauteur selon vos besoins */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    /* Création du filtre orange semi-transparent */
    background-color: rgba(186, 73, 34, 0.85); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    color: white;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.reference {
    font-family: 'Playfair Display', serif; /* Police élégante pour la référence */
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.verse {
    font-family: 'Montserrat', sans-serif; /* Police plus simple pour le verset */
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 300;
}

/* Version mobile */
@media (max-width: 600px) {
    .reference { font-size: 1.2rem; }
    .verse { font-size: 1rem; }
}