.elementor-kit-6{--e-global-color-primary:#FD7A00;--e-global-color-secondary:#363637;--e-global-color-text:#000000;--e-global-color-accent:#007410;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;font-family:"Poppins", Sans-serif;--e-page-transition-entrance-animation:e-page-transition-fade-out;--e-page-transition-exit-animation:e-page-transition-fade-in;--e-page-transition-animation-duration:100ms;--e-preloader-animation-duration:800ms;--e-preloader-delay:0ms;--e-preloader-color:#000000;--e-preloader-size:50px;--e-preloader-rotate:0deg;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 h1{color:#FD7A00;}.elementor-kit-6 h2{color:#FD7A00;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{font-family:"Poppins", Sans-serif;font-size:20px;color:#000000;box-shadow:0px 0px 10px 0px rgba(0,0,0,0.5);border-style:solid;border-width:1px 1px 1px 1px;border-color:#000000;border-radius:50px 50px 50px 50px;padding:10px 10px 10px 10px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.button-container {
    position: relative;
    display: flex;
    justify-content: center ; 
    align-items: center;
    
}

.fancy-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #FFE082, #FFC107);
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none; 
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    box-shadow: 5px 5px 0px #333!important;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    overflow: hidden;
    z-index: 1; 
}

.fancy-button .icon {
    margin-right: 8px;
}


.fancy-button:hover {
    box-shadow: 2px 2px 0px #333!important; 
    transform: translateY(2px); /* Bouton s'enfonce */
    color: black;
}


.fancy-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border: 2px solid #FFC107;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.3s ease-out;
}

.fancy-button:hover::before {
    width: 120%;
    height: 120%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.2);
}


.dog-image {
    position: absolute;
    top: -50%; 
    left: 50%;
    transform: translateX(-50%) translateY(50%); 
    width: 50px; 
    height: auto;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 0; 
}


.button-container:hover .dog-image {
    transform: translateX(-50%) translateY(-20%); /* Fait sortir la tête */
    opacity: 1; 
    z-index: 0; 
}


body {
    margin: 0;
    padding: 0;
    min-height: 200vh; /* Pour observer l'effet sur une page longue */
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 223, 186, 0.3), transparent 70%), /* Zone colorée subtile en haut à gauche */
        radial-gradient(circle at 80% 40%, rgba(186, 245, 255, 0.2), transparent 60%), /* Zone colorée subtile à droite */
        radial-gradient(circle at 50% 85%, rgba(255, 186, 217, 0.2), transparent 50%), /* Zone colorée subtile en bas */
        #F8F4E8; /* Couleur de fond principale */
    background-size: cover;
    background-attachment: fixed; /* Effet fixe lors du scroll */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

/* Ajout d’un effet granuleux */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px); /* Texture granuleuse générée */
    background-size: 3px 3px; /* Taille du grain */
    opacity: 0.6; /* Intensité de l'effet */
    z-index: 1; /* Par-dessus le fond */
}



/* Animation pour les bulles */
@keyframes floatUp {
    0% {
        transform: translate(-50%, 0) scale(1); /* Départ en bas */
        opacity: 1; /* Complètement visible */
    }
    70% {
        opacity: 1; /* Toujours visible pendant la montée */
    }
    100% {
        transform: translate(-50%, -300px) scale(1.2); /* Monte et grandit légèrement */
        opacity: 0; /* S'estompe */
    }
}

/* Div représentant une bulle */
.bubble {
    position: absolute;
    bottom: -50px; /* Position initiale sous la page */
    left: 50%; /* Centré horizontalement */
    transform: translateX(-50%); /* Ajuste pour centrer le div */
    width: 50px; /* Taille de la bulle */
    height: 50px;
    background-image: url('https://res.cloudinary.com/frontly/image/upload/v1732135319/neuronwriter-logo_hycmgy.png'); /* Remplacez par votre image */
    background-size: contain; /* Ajuste l'image dans la bulle */
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%; /* Forme circulaire */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); /* Effet lumineux */
    opacity: 0; /* Départ invisible */
    animation: floatUp 5s infinite ease-in-out;
    z-index: 100;
}/* End custom CSS */