* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
	background-color: rgb(36, 36, 36);
    font-size: 16px;
	color: white;
}

footer{
margin-top: 60px;
padding-top: 20px;
background-color: #000;
}

a{
text-decoration: none;
}

.wrapper-fil{
	padding-top: 7px;
border-top: 0.5px solid #e4b5b5;
background-color: black;
}

@media (max-width: 767.98px) {


  .breadcrumb-mobile .breadcrumb-item + .breadcrumb-item::before {
    content: "❯";
    color: gray!important; /* couleur rose + important */
    font-size: 1rem;
	text-transform: uppercase;
  }
  
  .breadcrumb-item.active {
  color: #e4b5b5; /* Remplace par la couleur que tu veux */
  /* Optionnel : pour le faire ressortir */
}

}
  .breadcrumb-mobile .breadcrumb-item + .breadcrumb-item::before {
    content: "❯";
    color: gray!important; /* couleur rose + important */
    font-size: 1rem;
	text-transform: uppercase;
	font-size: 0.8rem;
  }
  .breadcrumb-item {
  color: #e4b5b5;
font-size: 0.8rem;
}


.breadcrumb {
  --bs-breadcrumb-divider: ">";
  text-align: left;
  justify-content: left;
  color: #e4b5b5;
  margin-top: 5px;
}
.breadcrumb a, .breadcrumb.a:hover{
color: #e4b5b5;
text-decoration: none;
font-size: 0.8rem;
}

@media (max-width: 767.98px) {
.breadcrumb {
  --bs-breadcrumb-divider: ">";
  text-align: center;
  justify-content: center;
 
}
.breadcrumb a, .breadcrumb.a:hover{
text-decoration: none;
font-size: 0.8rem;
}
}

.header-line {
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 10px 20px;
  background-color: rgb(36, 36, 36);
  color: #fff;
}

/* Bloc de gauche : titre */
.header-left {
  flex-shrink: 0;
}

/* Bloc de droite : colonne alignée à droite */
.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;  /* <=== aligne le contenu à droite */
  text-align: right;      /* <=== aligne le texte à droite */
}

@media (max-width: 768px) {
  .header-line {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  /* <=== aligne le contenu à droite */
  text-align: left;      /* <=== aligne le texte à droite */
}
}

h1.h11 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px; /* <-- important pour un bon alignement vertical */
  color: white;
    align-items: top;
}

h1.h11 .subtitle {
  display: block;
  font-size: 0.8rem;
  font-weight: normal;
  color: #aaaaaa;
  margin-top: 1em;
}

h1.h12 {
  font-size: 1.2rem;
  font-weight: 700;

  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
    margin-bottom: 40px;
  color: #fff;
}

h1.h12 .subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0.5em;
}




.phone-icon {
  vertical-align: middle;
  margin-right: 8px;
  color: #aaa;
  font-size: 1.5rem;
}

a.tel {
  font-size: 1.3rem;
  color: #e4b5b5;
  display: flex;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 10px;
  font-weight: 700;
}



a.web {
  font-size: 1rem;
  color: #fff;
  display: flex;
  margin-top: 10px;
}


.wrapper-menu{
	display: block;
background-color: black;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    position: relative;
    z-index: 1000;
	 height: 70px; /* ou adapte selon ton design */
}

.logo {
  color: #e4b5b5;
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.logo .logotext {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo .sublogo {
  font-size: 0.7rem;
  font-weight: normal;
  color: #aaaaaa;
  margin-top: 0.2em;
}

.nav-list {
	padding-top: 15px;
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.nav-list li {
    margin: 0 0 0 30px;
}

.nav-list a {
    font-family: arial, sans-serif;
    text-decoration: none;
    color: #fff;
    font-size: 0.9em;
    transition: color 0.3s ease;
	text-transform: uppercase;
	font-weight: 400;
}

.nav-list a:hover {
    color: #e4b5b5;
}

.menu-toggle {
	justify-content: center;
    align-items: center;
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    background-color: #fff;
    height: 4px;
    width: 30px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        width: 70%;
        background-color: rgba(0, 0, 0, 0.95);
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .nav-list li {
        margin: 20px 0;
    }

    .menu-toggle.toggle .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.toggle .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .menu-toggle.toggle .bar:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* Content Section Styling */
.content-section {
    max-width: 1200px;
    margin: 100px auto;
	margin-top: 0px;
    padding: 30px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: top;
    gap: 30px;
}

.massage-image {
    max-width: 400px;
    width: 100%;
	height: 100%;
}

.text-content {
    flex: 1;
}







h2 {
text-transform: uppercase;
margin-bottom: 20px;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
	margin-top: 30px;
    text-align: left;
}


.text-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #000;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .content-section {
        margin: 0px 0px;
        padding: 20px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .text-content h1 {
        font-size: 2em;
    }

    .text-content p {
        font-size: 1em;
    }
}





.sommaire{
margin: 20px 0 10px 0;
text-transform: uppercase;
font-weight: 700;
}

ul li{
list-style: none;
margin-top: 10px;
}

.img{
width: 100%;
}

   .cadre-slider {
      position: relative;
      max-width: 800px;
      height: 400px;
      overflow: hidden;
    }

.slider-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; /* ← AJOUTE CETTE LIGNE */
}

    .slider-link img.slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 400px;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }

    .slider-link img.slide.active {
      opacity: 1;
      z-index: 1;
    }
	
	@media (max-width: 768px) {
  .cadre-slider {
    height: 300px;
  }

  .slider-link img.slide {
    height: 300px;
  }
}

.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px; /* ← hauteur fixe */
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  z-index: 2;
}


.slider-caption h2 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  color: #e4b5b5;
  margin-bottom: 10px;
  text-transform: uppercase;
}

	@media (max-width: 768px) {
		.slider-caption h2 {
  font-size: 0.8rem;
}
.slider-caption {
  height: 110px; /* ← hauteur fixe */
}

	}

.slider-caption p {
  margin: 10px 0 0;
  font-size: 0.8rem;
  color: #f8f8f8;
}

.slider-caption p a{
  font-size: 0.8rem;
  color: #ffffff;
}

.slider-caption p a i{
  font-size: 0.8rem;
  color: #ffffff;
  margin-right: 5px;
  margin-bottom: px;
}

.slider-caption p i{
  font-size: 0.8rem;
  color: #ffffff;
  margin-right: 4px;
}


.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  transition: transform 0.3s ease;
}
.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* Spécifique aux écrans >= 768px (mode ordi) */
@media (min-width: 768px) {
  .swiper-slide img {
    max-height: 400px;
    height: 400px;
    object-fit: cover; /* L’image remplit sans déformation, avec rognage si nécessaire */
  }
}


.wrapper-slide{
background-color: black;
margin-top: 30px;
padding: 20px 0 20px 0;
}

.swiper.mySwiper {
  position: relative;
  overflow: hidden;
}

.swiper-fade-left,
.swiper-fade-right {
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.swiper-fade-left {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.swiper-fade-right {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.9), rgba(0,0,0,0));
}

.para-annonce{
background-color: #000;
padding: 10px;
margin-top: 40px;
}

.para-annonce h2{
font-size: 1rem;
font-weight: bold;
}

.para-annonce p{
font-size: 0.9rem;
}

.para-info{
background-color: #000;
padding: 10px;
margin-top: 40px;
}

.para-info p{
font-size: 0.9rem;
}

.para-info h2{
font-size: 1rem;
font-weight: bold;
}
  
 .horaire-ligne {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 0.5px solid #444; /* facultatif pour séparer visuellement */
  font-size: 0.9rem;
}

.horaire-ligne .jour {
  text-align: left;
}

.horaire-ligne .heure {
  text-align: right;
}



.prestation {
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.ligne-prestation {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.nom {
  font-weight: 400;
  font-size: 0.9rem;
  color: #aaa;
  max-width: 60%; /* évite d'écraser les tarifs sur petits écrans */
}

.tarifs {
  text-align: right;
  font-size: 0.9rem;
  color: #e4b5b5;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.description {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #fff;
  text-align: left;
}

.bandeau-vip {
  position: absolute;
  top: 15px;
  left: -40px;
  background-color: #e4b5b5;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  padding: 5px 45px;
  transform: rotate(-45deg);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 10;
  pointer-events: none;
}

.pagination {
  justify-content: flex-end !important; /* aligne à droite */
  background-color;
}

.pagination .page-item.active .page-link {
  background-color: #e4b5b5 !important;
  border-color: #e4b5b5 !important;
  color: #fff !important; /* texte blanc sur active */
}

.pagination .page-item .page-link {
  color: white !important;
  background-color: black !important;
  border-color: gray !important;
}




.bloc-tags {
  padding: 1rem 1rem;
  background: #111;

  color: #fff;
}

.bloc-tags .tag-box {
  display: block;
  background: #222;
  border: 1px solid #333;
  padding: 10px 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 0.95rem;
  color: #e4b5b5;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.bloc-tags .tag-box:hover {
  background: #e4b5b5;
  color: #111;
}


.hidden-tag {
  display: none;
}
.tag-title {
  font-size: 0.9em;
  font-weight: 400;
  margin-bottom: 1rem;
  border-bottom: 1px solid #f88ac3;
  padding-bottom: 0.3rem;
}

.show-more-line {
  border: none;
  border-top: 2px solid #f88ac3;
  width: 100%;

}

.show-more-box {
  display: inline-block;
  margin-top: 0px;
  background-color: #000;
  color: #fff;
  font-size: 0.9rem;
  padding: 4px 10px;
  border: 1px solid #e4b5b5;
  border-bottom: 0px;
  cursor: pointer;
  font-family: 'Segoe UI', sans-serif;
}




.voile-recherche {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 80vh; /* mi-hauteur */
background: linear-gradient(to bottom, 
  rgba(0,0,0,1) 0%, 
  rgba(0,0,0,0.95) 70%, 
  rgba(0,0,0,0.75) 80%, 
  rgba(0,0,0,0) 97%);
  color: white;
  z-index: 9999;
  transition: top 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: none;
}



.voile-recherche.actif {
  top: 0;
}

.voile-contenu {
  position: relative;
  text-align: center;
  z-index: 3; /* au-dessus du fondu */
}

.form-recherche input[type="text"] {
  padding: 12px;
  font-size: 1.2rem;
  width: 300px;
  border: none;
  border-radius: 5px;
  margin-right: 10px;
}

.form-recherche button {
  padding: 12px 20px;
  font-size: 1rem;
  background: #e4b5b5;
  border: none;
  border-radius: 5px;
  color: black;
  cursor: pointer;
}

.fermer-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.footer-link a{
	display: block;
	margin-bottom: 10px;
	color: white;
	font-size: 0.9rem;
}





