/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Thème enfant Hello Elementor, personnalisé par Jean Levatic
Author: Jean Levatic
Author URI: https://jlevatic.fr
Template: hello-elementor
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hello-elementor-child
*/

@import url("../hello-elementor/style.css");

/* Ajoutez vos styles personnalisés ci-dessous */
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #FFFFFF!important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

a {
  color: #1e73be;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

.hidden {
	display:none;
}


/*bannière cookies*/
.size-cmplz_banner_image {
  height: 70px !important;
  width: 100px !important;
  max-height: 100px !important;
}

.cmplz-title {
  font-size: 2em !important;
  font-weight: 800 !important;
  margin-left: 40px;

}

.cmplz-message h3 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1em;
  margin: 0;
  padding: 0 0 10px 0;
}

.cmplz-links {
  display: none !important;
}

.cmplz-message p {
  margin-bottom: 10px;
}

.cmplz-manage-consent {
    min-width:220px !important;
    right: 10px !important;
    border:none !important;
}

#cmplz-manage-consent .cmplz-manage-consent {
    background-color: #616161 !important;
}



/*menu*/
/* La div hors de l'écran */
.menu {
  position: absolute;
  top: 0;
  right: -100%; /* Positionnée à droite, hors de la vue */
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Exemple : couleur noire semi-transparente */
  transition: right .5s ease; /* Animation pour le glissement */
}

/* Classe pour faire apparaître la div */
.menu.show {
  right: 0; /* Amène la div dans la fenêtre visible */
}


.elementor-nav-menu .current_page_item.menu-item-has-children .sub-arrow .e-font-icon-svg path {
  fill:white !important;
}

.elementor-nav-menu .menu-item-has-children:hover path {
  fill:white !important;
}

.elementor-nav-menu .menu-item-has-children .highlighted path {
  fill:white !important;
}

.sub-menu  {
    background-color: rgb(247,247,247) !important;
}


.size-cmplz_banner_image {
  position:absolut;
  height: 50px !important;
  width: 200px !important;
}


.burger {
  position: relative;
  width: 40px;
  height: 30px;
  background: transparent;
  cursor: pointer;
  display: block;
}

.burger input {
  display: none;
}

.burger span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.burger span:nth-of-type(1) {
  top: 0px;
  transform-origin: left center;
}

.burger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  transform-origin: left center;
}

.burger span:nth-of-type(3) {
  top: 100%;
  transform-origin: left center;
  transform: translateY(-100%);
}

.burger input:checked ~ span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
    background: red;
}

.burger input:checked ~ span:nth-of-type(2) {
  width: 0%;
  opacity: 0;

}

.burger input:checked ~ span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 29px;
  left: 5px;
  background: red;
}

.bg-burger:has(.burger input:checked) {
    background: rgba(0,2,255,0) !important; /* Exemple : change l'opacité */
}