/* Styles pour supprimer tous les arrière-plans et effets sur les textes */

/* Style pour le texte CTA final sans carte */
.cta-final.clean-text {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    margin-top: 40px !important;
    position: relative !important;
    z-index: 100 !important;
}

/* Supprimer tout pseudo-élément qui pourrait ajouter un fond */
.cta-final.clean-text::before,
.cta-final.clean-text::after,
.modal-content::after {
    display: none !important;
    content: none !important;
    background: none !important;
}

/* Style pour le texte */
.cta-final.clean-text h3 {
    color: #e06b76 !important; /* Couleur rose identique aux titres des cartes */
    font-size: 1.6rem !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important; /* Légère ombre comme pour les autres titres */
}

.cta-final.clean-text p {
    color: #FFFFFF !important;
    font-size: 1.1rem !important;
    line-height: 1.5 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important; /* Légère ombre pour lisibilité */
    background: none !important; /* Pas de fond */
    padding: 0 !important;
    margin-top: 5px !important; /* Espacement avec le titre */
}

/* Pour s'assurer que rien n'est placé derrière */
.modal-content {
    background: transparent !important;
}

/* Style pour le texte d'introduction sans arrière-plan */
.intro-text {
    color: #FFFFFF !important;
    font-size: 1.2rem !important;
    font-weight: normal !important;
    line-height: 1.5 !important;
    margin: 20px 0 35px !important;
    text-align: center !important;
    max-width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: none !important; /* Pas de fond */
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important; /* Espacement modéré entre les lignes */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important; /* Légère ombre pour lisibilité */
}

.intro-text span {
    display: block !important;
    color: #FFFFFF !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    line-height: 1.2 !important; /* Réduction de l'espacement interne des lignes */
    margin: 0 !important; /* Suppression des marges */
    padding: 0 !important; /* Suppression du padding */
}

/* Style spécifique pour les deux premiers spans avec un espacement plus équilibré et sans gras */
.intro-text span:nth-child(1),
.intro-text span:nth-child(2) {
    line-height: 1.3 !important;
    letter-spacing: normal !important;
    font-weight: 400 !important; /* Police normale, pas de gras */
}

/* Style spécifique pour la troisième ligne avec la couleur rose des titres */
.intro-text span:nth-child(3) {
    margin-top: 12px !important;
    color: #e06b76 !important; /* Couleur rose identique aux titres des cartes dans modal-dark.css */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2) !important; /* Légère ombre comme pour les titres */
    font-weight: 600 !important; /* Légèrement plus gras pour mieux ressortir */
}
