/* 
Theme Name: Hello Elementor Child
Theme URI: https://h14-lab.com/
Description: Le Bon Revenu Child Theme par Jimmy Tefit
Author: Jimmy Tefit > H14
Author URL: https://h14-lab.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Placer votre CSS ci-dessous */

/* Bouton Elementor : changer le texte au hover */
#bouton-bientot {
    position: relative;
    overflow: hidden; /* au cas où le texte est long */
}

/* Texte normal du bouton */
#bouton-bientot .elementor-button-text {
    transition: opacity 0.2s ease;
}

/* Masquer le texte normal au survol */
#bouton-bientot:hover .elementor-button-text {
    opacity: 0;
}

/* Texte "Bientôt disponible" au survol */
#bouton-bientot::after {
    content: "Bientôt disponible";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Afficher le texte de remplacement au survol */
#bouton-bientot:hover::after {
    opacity: 1;
}
