/**
 * Theme Name:     Divi Child
 * Author:         Elegant Themes
 * Template:       Divi
 * Text Domain:       divi-child
 * Description:    Smart. Flexible. Beautiful. Divi is the most powerful theme in our collection.
 */

#menu-header a.is-active{
  color: #ea4335 !important;
  font-weight: 700 !important;
}

/* =====================================================
   CTA MOBILE FIXES EN BAS D’ÉCRAN
   - Visible uniquement < 980px
   - 2 boutons (40% / 40%)
   - Centrées + space-between
   - Fond #ea4335, texte & icônes blancs
   - FIXED au scroll
===================================================== */

/* Caché par défaut (desktop) */
.bwc-mobile-cta{
  display: none !important;
	top:0;
}

@media (max-width: 980px){

  /* ===== CONTENEUR GLOBAL ===== */
  .bwc-mobile-cta { 
	  display: flex !important; 
	  position: fixed !important; 
	  left: 49% !important; 
	  transform: translateX(-50%) !important; 
	  /*bottom: 0px!important; */
	  top:150vw!important;
	  width: min(560px, calc(100vw - 28px)) !important;
	  justify-content: space-between !important;
	  align-items: center !important; /* gap: 12px !important; */
	  padding: 0 !important;
	  margin: 0 !important;
	  z-index: 2147483647 !important;
	  pointer-events: auto !important;
	justify-content:space-between;}

  /* ===== BOUTONS CTA ===== */
  .bwc-mobile-cta .bwc-cta-btn{
    width: 160px !important;
    min-width: 0 !important;
margin-left:3px;
	  margin-right:3px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 3px !important;

    padding: 6px 5px !important;
    border-radius: px !important;

    background: #ea4335 !important;
    color: #ffffff !important;
    text-decoration: none !important;

    font-weight: 600 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    text-align: center !important;

    box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
  }

	
  /* ===== TEXTE ===== */
  .bwc-mobile-cta .bwc-cta-txt{
    white-space: nowrap !important;
  }

  /* ===== ICONES SVG ===== */
  .bwc-mobile-cta .bwc-cta-ico svg{
    width: 14px !important;
    height: 14px !important;
    display: block !important;
    fill: currentColor !important;
    flex-shrink: 0 !important;
  }

  /* ===== EMPÊCHE LE CONTENU D’ÊTRE MASQUÉ ===== */
  body{
    padding-bottom: 90px !important;
  }
}



/* =====================================================
   DIVI MOBILE MENU — OFFCANVAS + "MENU" + WHITE LINKS
   (Sans modifier le builder)
===================================================== */

@media (max-width: 980px) {

  :root{
    --bwc-panel-w: 360px;
    --bwc-top-offset: 0px;      /* mets 60px/80px si ton header fixe recouvre */
    --bwc-header-h: 64px;       /* bandeau interne */
    --bwc-bg: #111;             /* fond menu */
  }

  /* Panneau menu Divi */
  .et_mobile_menu{
    display: block !important;
    visibility: visible !important;

    position: fixed !important;
    top: var(--bwc-top-offset) !important;
    right: 0 !important;
    left: auto !important;

    width: min(var(--bwc-panel-w), 86vw) !important;
    height: calc(100vh - var(--bwc-top-offset)) !important;

    margin: 0 !important;

    /* On laisse de la place pour le bandeau "MENU" */
    padding: calc(var(--bwc-header-h) + 18px) 22px 22px !important;

    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    background: var(--bwc-bg) !important;
    box-shadow: -24px 0 48px rgba(0,0,0,.35) !important;

    /* Fermé par défaut (Chrome iOS safe) */
    transform: translate3d(110%,0,0) !important;
    transition: transform .35s ease !important;
    will-change: transform;

    z-index: 999999 !important;
  }

  /* Ouvert : tu as bien .mobile_nav.opened */
  .mobile_nav.opened .et_mobile_menu{
    transform: translate3d(0,0,0) !important;
  }

  /* Bandeau "MENU" au-dessus du ul (CSS only => inratable) */
  .et_mobile_menu::before{
    content: "MENU";
    position: absolute;
    top: 0;
    left: 0; right: 0;
    height: var(--bwc-header-h);

    display: flex;
    align-items: center;

    padding: 0 22px;
    background: var(--bwc-bg);
    border-bottom: 1px solid rgba(255,255,255,.15);

    color: #fff;
    font-size: 13px;
    letter-spacing: .2em;
    text-transform: uppercase;

    z-index: 2;
    pointer-events: none;
  }

  /* Liens en blanc */
  .et_mobile_menu a{
    color: #fff !important;
  }

  .et_mobile_menu li a{
    font-size: 18px;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  /* Overlay (créé en JS) */
  .bwc-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 999998;
  }
  .bwc-overlay.is-open{
    opacity: none;
    pointer-events: none;
  }

  /* Lock scroll */
  html.bwc-lock, body.bwc-lock{
    overflow: hidden !important;
  }

  /* Le bouton X (créé en JS) : style de base */
  #bwc-close{
    position: fixed;
    top: calc(var(--bwc-top-offset) + 10px);
    right: 12px;

    width: 44px;
    height: 44px;

    display: none; /* affiché par JS quand ouvert */
    align-items: center;
    justify-content: center;

    background: transparent;
    border: 0;
    color: #fff;

    font-size: 34px;
    line-height: 1;
    z-index: 1000001;

    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
}






/* Ajouter votre code CSS ici.*/
          body{
  --c-blue:   #4285F4;
  --c-yellow: #FBBC05;
  --c-red:    #EA4335;
  --c-green:  #34A853;

  --text-main:#111827;
  --text-soft:#4b5563;
  --bg-main:  #ffffff;
  --bg-soft:  #f8fafc;

  /* Corporate */
  --link:     #1d4ed8;
  --border:   #e5e7eb;
}
body:not(.et-fb):not(.et_fb) #main-content #hero-title h1{
	color:white!important;
}
body:not(.et-fb):not(.et_fb) #main-content h1,
body:not(.et-fb):not(.et_fb) .et_builder_inner_content h1{
  color: var(--c-blue) !important;
}

body:not(.et-fb):not(.et_fb) #main-content h2,
body:not(.et-fb):not(.et_fb) .et_builder_inner_content h2{
  color: var(--c-yellow) !important;
}

body:not(.et-fb):not(.et_fb) #main-content h3,
body:not(.et-fb):not(.et_fb) .et_builder_inner_content h3{
  color: var(--c-red) !important;
}


body:not(.et-fb):not(.et_fb) a{ color: var(--link); }
body:not(.et-fb):not(.et_fb) a:hover{ color: var(--c-blue); }

body:not(.et-fb):not(.et_fb) .et_pb_button{
  background: var(--c-blue);
  color:#fff !important;
  border:none;
}
body:not(.et-fb):not(.et_fb) .et_pb_button:hover{
  background: var(--link);
  color:#fff !important;
}

body:not(.et-fb):not(.et_fb) a{ color: var(--link); }
body:not(.et-fb):not(.et_fb) a:hover{ color: var(--c-blue); }

body:not(.et-fb):not(.et_fb) .et_pb_button{
  background: var(--c-blue)!important;
  color:#fff !important;
  border:none;
}
body:not(.et-fb):not(.et_fb) .et_pb_button:hover{
  background: var(--link)!important;
  color:#fff !important;
}

#menu-premier a{
	font-weight:700;
}
#menu-premier a:hover {
  color: #ea4335 !important;
  opacity: 1 !important;
}

#menu-premier a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background-color: #fbbc05;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

#menu-premier a:hover::after {
  width: 100%;
}

.et_pb_testimonial:before{
    color:red!important;
}
#temoignages .et_pb_testimonial_author {

    color: var(--h2-color)!important;
}
#temoignages .et_pb_testimonial{
    background:white;
    font-weight:600!important;
}
#temoignages .et_pb_testimonial_content{
        font-weight:600!important;
}
/****** footer ****/

footer{
	font-size:18px;
}
footer h3{
	font-size:24px!important;
}
footer a::after{
  content: "\f054";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  display: inline-block;
  margin-left: 8px;
  opacity: .6;
}
footer i{
	color:#ba2203;
}

/* ===== Horaires dynamiques ===== */

.bwc-hours__list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.bwc-hours__list li{
  display: flex;
  justify-content: space-between;
 
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.12); /* adapte si footer clair */
  opacity: .85;
}

.bwc-hours__list li.is-today{
  font-weight: 700;
  opacity: 1;
}

.bwc-hours__status{
  margin-top: 10px;
  font-weight: 600;
}

.bwc-hours__status.is-open{
  color: #3ccf91; /* vert */
}

.bwc-hours__status.is-closed{
  color: #ea4335; /* rouge */
}

/* page eervices*/
.card-service .dtq-card-title{
  font-size:20px!important;
  position:absolute;
  border-radius:20px;
  width:50%;
  display:flex;
  justify-content:center;
  margin-top:-25px;
   padding-top:15px;
  left:25%;
  z-index:10!important;
}
.dtq-card-desc{
  margin-top:40px!important;
}

#card-service1 h4{
  background-color:var(--c-blue)!important;
  color:white!important;
}
#card-service2 h4{
  background-color:var(--c-yellow)!important;
  color:white!important;
}
#card-service3 h4{
  background-color:var(--c-red)!important;
  color:white!important;
}
#card-service4 h4{
  background-color:var(--c-green)!important;
  color:white!important;
}
.dtq-btn-default {
  border:none;
  font-size:16px;
  float:right;
    margin-right:30px;
		
}

/*telephone au clic*/
/* État par défaut : numéro caché */
.bwc-phone-toggle .bwc-phone-hidden{
  display: none !important;
}

/* Après clic : on montre le numéro et on cache le bouton */
.bwc-phone-toggle.is-revealed .bwc-phone-hidden{
  display: inline !important;
}
.bwc-phone-toggle.is-revealed .bwc-phone-trigger{
  display: none !important;
}

/* Optionnel : style du bouton */
.bwc-phone-toggle .bwc-phone-trigger{
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  font: inherit !important;
  color: inherit !important;
  cursor: pointer !important;
  text-decoration: underline !important;
}

/* Optionnel : style du lien tel */
.bwc-phone-toggle .bwc-phone-hidden a{
  color: inherit !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
#adresse{
  text-align: center !important;
  align-self: center;
	text-align: center !important;
  font-style: normal;
}
#adresse2 .et_pb_text_inner{
 	display:flex;
}
#adresse2 address{
   
	font-style: normal!important;
}