/* Agrandir et mettre en majuscule les liens de navigation */
.nav__itemlvl1 {
  font-size: 1.2rem; /* tu peux augmenter selon ton besoin, ex. 1.2rem */
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
}

.header__content {
  border-bottom: 4px solid #ff0000; /* rouge vif */
}


/* Remonter et superposer le bloc menu (desktop) */
.wiziblocks__item.menu {
  position: relative;
  z-index: 100;
  margin-top: -130px; /* visible superposition sur desktop */
  background: transparent !important;
  padding-top: 0;
}

/* Centrage des 3 blocs d'images */
.menu .wizi-img__content {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Ajustement des images */
.menu .wizi-img__item {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* 🎯 Adaptation mobile : désactive le chevauchement */
@media (max-width: 768px) {
  .wiziblocks__item.menu {
    margin-top: 0; /* ou +10px si tu veux un petit espacement vers le haut */
    padding-top: 20px; /* pour respirer sous la section précédente */
  }
}


/* Remonter et superposer le bloc menu */
.wiziblocks__item.menu2 {
  position: relative;
  z-index: 100;
  margin-top: -90px; /* ajuste selon ta courbe */
  background: transparent !important;
  padding-top: 0;
}

/* Centrage des 3 blocs d'images */
.menu2 .wizi-img__content {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

/* Ajustement des images */
.menu2 .wizi-img__item {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Appliquer un fond transparent au bloc menu */
.wiziblocks__item.menu,
.wiziblocks__item.menu .wiziblocks__item__maxWidth,
.wiziblocks__item.menu .wizi-wrapper,
.wiziblocks__item.menu .wizi-img {
  background: transparent !important;
}

/* Appliquer un fond transparent au bloc menu2 */
.wiziblocks__item.menu2,
.wiziblocks__item.menu2 .wiziblocks__item__maxWidth,
.wiziblocks__item.menu2 .wizi-wrapper,
.wiziblocks__item.menu2 .wizi-img {
  background: transparent !important;
}

/* Animation continue (déjà en place) */
@keyframes floatBounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.wiziblocks__item.menu .wizi-img__content {
  animation: floatBounce 3s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effect complémentaire */
.wiziblocks__item.menu .wizi-img__content:hover {
  transform: scale(1.05) translateY(-8px);
  filter: brightness(1.4);
  z-index: 1;
}

/* Animation continue pour menu2 */
@keyframes floatBounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Bloc menu2 - animation infinie */
.wiziblocks__item.menu2 .wizi-img__content {
  animation: floatBounce 3s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Hover effect pour menu2 */
.wiziblocks__item.menu2 .wizi-img__content:hover {
  transform: scale(1.05) translateY(-8px);
  filter: brightness(1.4);
  z-index: 1;
}

/* Animation de lévitation personnalisée */
@keyframes levitate {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Appliquer uniquement au bloc central du menu */
.wiziblocks__item.menu .wizi-img__content:nth-child(2),
.wiziblocks__item.menu2 .wizi-img__content:nth-child(2) {
  animation: levitate 2.5s ease-in-out infinite;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Hover encore plus marqué sur celui du milieu */
.wiziblocks__item.menu .wizi-img__content:nth-child(2):hover,
.wiziblocks__item.menu2 .wizi-img__content:nth-child(2):hover {
  transform: scale(1.07) translateY(-12px);
  filter: brightness(1.15);
}

/* Animation flottante continue */
@keyframes levitateRotate {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* Ciblage de l’image centrale uniquement */
.wiziblocks__item.rotate .wizi-imgtxt__center {
  animation: levitateRotate 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  z-index: 2;
}

/* Animation lévitation + rotation */
@keyframes levitateRotateCombo {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Appliquer à l’image centrale de la section .rotate */
.wiziblocks__item.rotate .wizi-imgtxt__center {
  animation: levitateRotateCombo 4s ease-in-out infinite;
  transition: transform 0.3s ease;
  z-index: 2;
}


.footer__wrapper__left {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}