/* Header de base */
.header-dynamique {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: white;

  transition: all 0.3s ease;
}

/* État après scroll */
.header-dynamique.header-scroll {
  padding: 12px 0;

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Logo */
.header-dynamique img {
  max-height: 80px;
  transition: all 0.3s ease;
}

.header-dynamique.header-scroll img {
  max-height: 50px;
}

/* Compensation du header */
body {
  margin-top: 140px; /* à ajuster */
}


/* Pour enlever le soulignement des boutons */
.elementor-button,
.elementor-button:hover,
.elementor-button:focus {
    text-decoration: none !important;
}

/* Enlever le soulignement des breadcrumbs */
/* Suppression forcée */

.breadcrumbs a,
.breadcrumb a,
.rank-math-breadcrumb a,
.yoast-breadcrumb a {

  text-decoration: none !important;
  border-bottom: none !important;
  box-shadow: none !important;

}

/* =========================
MOBILE
========================= */

@media (max-width: 767px) {

  .header-dynamique {
    padding: 10px 0;
  }

  .header-dynamique.header-scroll {
    padding: 6px 0;
  }

  .header-dynamique img {

    max-height: 45px;

    width: auto !important;
    height: auto !important;

    object-fit: contain;
  }

  .header-dynamique.header-scroll img {
    max-height: 38px;
  }

  body {
    margin-top: 80px;
  }
}


/* Grossissement du conteneur forfait massage au survol de la souris */
.hover-zoom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.hover-zoom:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* Boutons retour sur page massages*/
.bouton-retour {

  display: inline-flex;
  align-items: center;
  gap: 8px;

  text-decoration: none !important;
	color: #AAA4D1;
  padding: 10px 18px;

  border-radius: 50px;

  /* background: #AAA4D1;*/

  transition: all 0.3s ease;

}

.bouton-retour:hover {

  color: #584495;
	text-decoration: none !important;
  transform: translateX(-3px);

}