.nav__itemlvl1 {
  text-transform: uppercase !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px;
}

.header::after {
  content: "";
  display: block;
  height: 4px; /* Épaisseur de la ligne */
  background: linear-gradient(to right, #F1582F, #FDB23E);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}


.macaron {
  background: linear-gradient(to right, #F1582F, #FDB23E);
  color: #ffffff;
  border: 2px solid #20432A;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  margin: 10px auto 30px auto;
  box-shadow: 0 4px 10px rgba(32, 67, 42, 0.2);
  font-weight: 500;
  max-width: 90%;
  line-height: 1.5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.macaron:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(32, 67, 42, 0.35);
}

.fond1 {
  background-image: url("https://media.cdnws.com/_i/410713/RAW-63/966/63/fond-orange-degrade-min.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0; /* ajustable si besoin */
  position: relative;
  z-index: 1;
}

.fond2 {
  background-image: url("https://media.cdnws.com/_i/410713/RAW-65/320/65/fond-vert-min.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0; /* ajustable si besoin */
  position: relative;
  z-index: 1;
}

.wizi-imgtxt--TextSmallLeftTextRight .wizi-imgtxt__left--large img,.wizi-imgtxt--TextSmallLeftTextRight .wizi-imgtxt__left--medium img,.wizi-imgtxt--TextSmallLeftTextRight .wizi-imgtxt__left--small img {
                position: absolute;
                top: 51%;
                left: 41%;
                -webkit-transform: translate(-50%,-50%);
                -ms-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
                min-width: 100%;
                min-height: 100%;
                max-width: 108%;
                width: auto;
                height: auto;
                -o-object-fit: cover;
                object-fit: cover;
                opacity: 1;
                background-position: top;
                background-size: cover;
                background-repeat: no-repeat
            }

@media (max-width: 768px) {
  .wizi-imgtxt__left.wizi-imgtxt__left--medium {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .wizi-imgtxt__left.wizi-imgtxt__left--medium picture {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .wizi-imgtxt__left.wizi-imgtxt__left--medium img {
    max-width: 100%;
    height: auto;
    display: block;
  }
}

/* Animation générale pour tous les boutons */
@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    transform: scale(1.03);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}

/* ANIMATION hover pour tous les boutons */
@keyframes hoverGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
  }
}

/* === BOUTONBOIS === */
.boutonbois .wiziBtn {
  background: #20432B !important;
  color: white !important;
  border-radius: 20px;
  padding: 14px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: pulseButton 2s infinite;
}
.boutonbois .wiziBtn:hover {
  animation: hoverGlow 1s infinite alternate;
}

/* === BOUTONALLUMEFEU === */
.boutonallumefeu .wiziBtn {
  background: linear-gradient(135deg, #F1582F, #FDB23E);
  color: white;
  border-radius: 20px;
  padding: 14px 30px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  animation: pulseButton 2s infinite;
}
.boutonallumefeu .wiziBtn:hover {
  animation: hoverGlow 1s infinite alternate;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  .boutonbois .wiziBtn,
  .boutonallumefeu .wiziBtn {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

.powered {
    background: #20432B!important;
}










