/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.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
*/

/* Add your custom styles here */


body ul:not(.hfe-nav-menu) {
    list-style: none; /* Supprime la puce par défaut */
    padding-left: 0;
  }
  
  body ul li:not(.menu-item)::before {
    content: "✨"; /* ou un symbole, un caractère Unicode, etc. */
    margin-right: 8px;
  }

/* Fixe la section du menu en haut */
#nav-bar {
    position: absolute;
    top: 0;
    z-index: 999;
}

/* Transition fluide */
#nav-bar {
    transition: all 0.3s ease !important;
}


#nav-bar a {
    transition: all 0.3s ease !important;
}

#nav-bar a:hover, .elementor-button:hover {
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .image-desktop {
        background-image: none !important;
        background-attachment: scroll !important;
        background-color: #ffffff; /* couleur de fond de remplacement */
    }
}

/* Menu responsive */

#menu-responsive ul {
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
}

#menu-responsive ul li:last-child {
    border-radius: 2em;
    background-color: var(--e-global-color-text );
    padding: 0px 15px;
}
#menu-responsive ul li:last-child a {
    color: #fff !important;
}

#menu-responsive ul li a {
    font-size: 16px !important;
    text-align: center !important;
}

#menu-responsive .elementskit-menu-close {
    font-size: 20px !important;
}

/* CONTACT FORM */

#contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    color: #fff;
  }

  #contact-form label span {
    margin-top: 10px;
  }
  
  #contact-form input[type="text"],
  #contact-form input[type="email"],
  #contact-form input[type="tel"],
  #contact-form select,
  #contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.6rem;
    background: #fff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  #contact-form input:focus,
  #contact-form select:focus,
  #contact-form textarea:focus {
    border-color: #87c9c0;
    box-shadow: 0 0 5px rgba(135, 201, 192, 0.4);
    outline: none;
  }
  
  #contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  #contact-form .checkbox-group {
    margin-bottom: 1.5rem;
  }
  
  
  #contact-form .wpcf7-acceptance,  #contact-form .wpcf7-acceptance span label {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
    flex-direction: row;
   
  }

  #contact-form .wpcf7-acceptance span label input {
    margin-bottom: 0;
    margin-right: 20px;
  }

  #contact-form .wpcf7-acceptance span label span {
      
      color: #fff;
      font-size: 14px;
  }

  #contact-form .wpcf7-not-valid-tip {
    color: Red;
  }


  .wpcf7-response-output {
    background-color: #fff !important;
    color: rgb(46, 58, 89) !important;
    border-color: rgb(46, 58, 89) !important;
  }