 
html {
  height: 100%;
  width: 100%;    
  margin: 0; 
  text-align: left;
  overflow-x: hidden;
  }
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}



.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 70px;
  background-color: #0ea27c ;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.logo {
  flex-shrink: 0; 
}

.logo img {
  height: 70px; 
  width: auto; 
  opacity: 1; 
  mix-blend-mode: multiply; 
}


.navbar {
  flex-grow: 1; 
  display: flex;
  justify-content: center; 
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px; 
  margin: 0;
  padding: 0;
}
.menu a.active {
    background-color: #a7debb; 
    font-weight: bold; 
    border-radius: 5px;
}

.menu li {
  position: relative;
}

.menu a {
  font-family: 'Titillium Web', sans-serif;
  text-decoration: none;
  font-size: 1.3rem; 
  font-weight: 600; 
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.menu a:hover {
  background-color: #84c69b;
  color: #fff;
}


.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  display: none; 
  position: absolute;
  top: 155%; 
  left: 50%; 
  transform: translateX(-50%); 
  background-color: #56bda3;
  border: 1px solid #cce3d1;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  z-index: 1000;
  min-width: 130px;
  transition: opacity 0.3s ease; 
  list-style: none;
}

.dropdown .dropdown-menu li {
	position: relative;
  margin-bottom: 5px;
  border-radius: 8px; 
}
.dropdown .dropdown-menu li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #2d4739; 
  font-size: 0.8rem;
}
.dropdown .dropdown-menu li a{
  display: block; 
  width: 100%; 
  padding: 8px 12px;
  color: #2d4739;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}

.dropdown .dropdown-menu li:hover a{
  background-color: #84c69b;
  color: #fff;
}


.dropdown.show .dropdown-menu {
  display: block; 
  opacity: 1;
}




.btn-highlight {
  background-color: #90EE90; 
  color: #ffffff; 
  font-weight: bold; 
  padding: 10px 20px; 
  border-radius: 25px; 
  text-align: center; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  transition: all 0.3s ease; 
  border: 2px solid transparent; 
  white-space: nowrap; 
}


.btn-highlight:hover {
  background-color: #006400; 
  color: #ffffff; 
  border-color: #2d4739; 
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2); 
}




.presentation {
	max-width: 1200px;
    margin: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    padding: 20px;
}

.image-container {
    flex: 1; 
    max-width: 290px; 
}

.image-container img {
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.titre-accueil {
    flex: 2; 
    text-align: left; 
    font-family: Arial, sans-serif;
    line-height: 1.5; 
}

.titre-accueil h2 {
    color: #2d4739; 
	font-family: 'Dancing Script', cursive;  
    font-size: 2.3rem;
    margin-bottom: 8px;
}
.titre-accueil > p:nth-child(2) > strong:nth-child(1) {
    color: #2d4739; 
    font-size: 1.3rem;
}

.titre-accueil p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.about-accueil {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    background-color: #eaf4e1;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 1.2rem;
    color: #2d4739;
}
.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.texte {
  display: inline;
  text-align: center;
}
.about-list img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 5px;
}
.btn-approche {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #4CAF50;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.btn-approche:hover {
  background-color: #45a049;
}
  
 .slogan {
    font-family: "Bradley Hand ITC", cursive;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #2d4739;
    margin: 50px auto;
    padding: 20px;
    opacity: 0; 
    transform: translateY(30px); 
    animation: fadeInUp 1.5s ease-out forwards;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
  
   
 .consultations {
    font-size: 1.4rem;
    text-align: center;
    color: #ffffff;
    background-color: #0ea27c;
    padding: 20px;
    margin: auto auto;
    border-radius: 15px;
    max-width: 1200px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 2.2s ease-out forwards, pulseEffect 3s infinite ease-in-out 2s;
    position: relative;
}


@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


@keyframes pulseEffect {
    0% { box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2); }
    100% { box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); }
}


.consultations::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0%;
    height: 3px;
    background-color: #2d4739;
    transition: width 3.9s ease-out;
    transform: translateX(-50%);
}


.consultations.animated::after {
    width: 85%;
}


.consultation-lieux {
    background-color: #fffdeb;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.consultation-lieux h2 {
    font-size: 1.5rem;
    color: #2d4739;
    text-align: center;
    margin-bottom: 20px;
}

.lieu {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.lieu:hover {
    transform: scale(1.02);
}

.lieu h3 {
    font-size: 1.2rem;
    color: #2d4739;
    margin-bottom: 8px;
}

.lieu p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}



#background-image-about {

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;      
}

.about-me {
	max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    background-color: rgba(235, 192, 231, 0.9);
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
	z-index: -10;
	line-height: 1.6;
}

.content-about {
    width: 100%;
	opacity: 0.9;
}


.intro-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
	opacity: 0.9;
}

.texte-left-about {
    width: 80%;
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    text-align: justify;
	opacity: 0.9;
}

.photo-about {
    width: 30%;
    display: flex;
    justify-content: center;
}

.photo-about img {
    width: 75%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 1;
	z-index: 10;
}


.texte-about {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    text-align: left;
}

.closing-message-about {
    color: #e26a2c;
	border-radius: 12px;
    max-width: 1200px;
	background-color: #EBC0E7;
    opacity: 0.8;	
    margin: 30px auto;
    text-align: center;
    position: relative;
	padding: 10px 10px 0px; 
	opacity: 0.9;
}
.closing-message-about:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
	    opacity: 0.9;

}
.message-text-about {
    font-size: 1.5rem;
    color: #850979;
    line-height: 1.9;
    font-weight: 750;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
	    opacity: 0.9;

}

.signature-container-about {
    text-align: right;
    margin-top: 0px;
	margin-bottom: 0px;
    opacity: 0.9;
	
}

.signature-text-about {
    font-size: 1.7rem;
    font-style: italic;
	font-weight: 750;
    color: #850979;
    margin-right: 30%;
	    opacity: 0.9;

}

.signature-about {
    font-size: 2.9rem;
    font-family: "Brush Script MT", cursive;
    font-weight: bold;
    color: #850979;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	margin-right: 26%;
	margin-bottom: 2px; 
	    opacity: 0.9;

}






#background-image-consulter {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}    

.consultation-container {
   max-width: 1200px;
   margin: 0 auto;
   opacity: 0.9;
   padding: 40px 20px;
   line-height: 1.6;
   border-radius: 12px;
   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    background-color: #fdf7f1; 
    font-family: 'Trebuchet MS', sans-serif;
    color: #2d4739;
}


.consultation-title {
    text-align: center;
    font-size: 3rem;
    color: #86592d; 
    margin-bottom: 40px;
}
.consultation-intro {
	text-align: center;
    font-size: 1.5rem;
}
.consultation-subtitle {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 20px 0;
    color: #86592d;
    border-left: 5px solid #86592d;
    padding-left: 10px;
}


.consultation-section {
    margin-bottom: 40px;
    padding: 20px;
    background: #f5e6d3; 
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}


.consultation-list li::before, .consultation-category ul li::before {
    content: "✔ ";
    color: #86592d; 
}

.consultation-section p {
	line-height: 1;
	font-style: italic;
	color: #63340b;
	margin-bottom: 1px;
}
.consultation-category strong {
    color: #6b8e23;
	font-weight: bold;
}

.consultation-category li, .consultation-list li{
	list-style-type: none;
	font-size: 1.1rem;

}

.consultation-conclusion {
    text-align: center;
    font-size: 1.2rem;
    color: #2d4739;
    background: #e0d4c5; 
    padding: 15px;
    border-radius: 10px;
    font-style: italic;
}
.note-consultation-conclusion {
  font-size: 0.85em;
  font-style: italic;
}
.consult-contact {
	margin-top : 50px;
	text-align : center;
}
.btn-consult-contact {
  display: inline-block;
  padding: 16px 32px;
  background: #8fbc8f;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease;	
}
.btn-consult-contact:hover {
	  background-color: #753516;

}




#background-image-naturopathie {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}
.naturopathie-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0.9;
  font-family: 'Trebuchet MS', sans-serif;
  background: #f9f8f3;
  color: #2e4b35;
  line-height: 1.6;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.naturopathie-title {
  font-size: 3rem;
  text-align: center;
  color: #6b8e23;
  margin-bottom: 30px;
}
.intro-naturopathie p {
	font-size: 1.1rem;
}

.intro-naturopathie h2, .objective-naturopathie h2, .method-naturopathie h2, 
.reason-naturopathie h2, .important-note-naturopathie h2, .process-naturopathie h2{
  font-size: 2rem;
  color: #4a6b25;
}

.method-naturopathie li {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;

}
.method-naturopathie p {
  margin-bottom: 20px;
}
.objective-naturopathie > p:nth-child(2) > strong:nth-child(1) {
	font-size: 1.1rem;
	
}
.method-naturopathie ul {
  color: #6b8e23;
  margin-bottom: 20px;
  padding-left: 40px;
}

.method-naturopathie p {
	font-size: 1rem;	
}
.method-naturopathie em {
	font-size: 1.1rem;	
}
.important-note-naturopathie > p:nth-child(2) > strong:nth-child(1){
	color : red;
}
.btn-nature {
  display: inline-block;
  padding: 16px 32px;
  background: #8fbc8f;
  color: white;
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-nature:hover {
  background: #6b8e23;
}

.contact-naturopathie {
  margin-top: 100px;
  text-align: center;
  font-size: 1.25rem;	
}



#background-image-reflexologie {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;   
}

  .reflexo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0.85;
  background-color: #f6ecff; 
  color: #2e4b35; 
  line-height: 1.6; 
  font-family: 'Trebuchet MS', sans-serif;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  }
  .reflexo-header { 
  text-align: center; 
  }
  .reflexo-title { 
  font-size: 3rem; 
  color: #8a2be2;
  margin-bottom: 30px; 
  }
  .reflexo-subtitle { 
  font-size: 2rem; 
  margin: 30px 0 15px; 
  color: #8a2be2; 
  }
  .reflexo-text { 
  margin-bottom: 20px; 
  font-size: 1.1rem; 
  }
  
  .reflexo-list { 
  list-style-type: disc; 
  margin-left: 20px; 
  }
.reflexo-text-italic{
	font-style: italic;
}

  .reflexo-list li {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: 10px; 
  }
  .reflexo-pratique {
  font-size: 1.1rem;   
  }
  .reflexo-pratique h2 {
  color: #8a2be2;
  font-size: 2rem;   
  }
  
  .reflexo-btn { 
  display: inline-block; 
  margin-top: 20px; 
  padding: 15px 30px;
  font-weight: bold;
  background-color: #8a2be2; 
  color: white; 
  border: none; 
  border-radius: 12px; 
  font-size: 1.1rem; 
  cursor: pointer; 
  }
  .reflexo-btn:hover { 
  background-color: #3a6a47; 
  }
  .reflexo-contact {
  margin-top: 100px;
  text-align: center;
  font-size: 1.25rem;
}
.reflexo-contact .btn-nature {
  background: #8a2be2;
}





#background-image-atelier {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}   
 
.ateliers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0.85;  
  line-height: 1.6; 
  color: #2c3e50;
  background-color: #ffe7d6;
  font-family: 'Trebuchet MS', sans-serif;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.ateliers-titre {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #f4661b;
  margin-bottom: 30px;
}

.ateliers-subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #f4661b;
  }
.ateliers-intro {
  text-align: center;
  font-size: 1.1rem;	
}
.ateliers-intro strong{
  font-size: 1.2rem;	
}
.ateliers-difference{
  font-size: 1.1rem;
  font-weight: bold;
}
.ateliers-pour-qui {
  font-size: 1rem;	
}
.ateliers-sujets{
  font-size: 1rem;
}
.ateliers-comment{
  font-size: 1rem;	
}
.ateliers-contact {
  text-align: center;
  margin-top: 20px;
}
.conclusion-atelier {
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
}

.btn-ateliers-contact {
  display: inline-block;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  background-color: #f4661b;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-ateliers-contact:hover {
  background-color: #753516;
}
  
  
  
  
 

#background-image-tarif {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}   
 
.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.9;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #2c3e50;
  background-color: #e5fcf9;
  border-radius: 12px;
}

.tarifs-titre {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #00c1b2;
  margin-bottom: 30px;
}
.titre-tarifs-naturo {
  text-align: center;
  font-size: 2rem;
  color: #6b8e23;
  font-weight: bold;
}
.tarifs-section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.titre-tarifs-reflexo {
  text-align: center;
  font-size: 2rem;
  color: #8a2be2;
  font-weight: bold;
}
.tarifs-reflexologie p{
	font-size: 1.2rem;
	font-weight: bold;
}
.tarifs-reflexologie {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}

.titre-tarifs {
  text-align: center;
  font-size: 2rem;
  color: #00c1b2;
  font-weight: bold;
}
 .tarifs-sous-titre-ateliers {
  text-align: center;
  color: #f4661b;
  font-size: 2rem;
  margin-bottom: 25px;
}
 .tarifs-sous-titre {
  text-align: center;
  color: #00c1b2;
  font-size: 2rem;
  margin-bottom: 25px;
}
.tarifs-liste {
  list-style-type: none;
  padding: 0;
  padding-top: 30px;
}

.tarifs-liste li {
  margin-bottom: 10px;
  font-size: 18px;
}

.tarifs-liste span {
  font-style: italic;
  font-size: 1rem;
  color: #555;
}

.pack-serenite {
  background-color: #d4e8d2;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.pack-serenite h3 {
  font-size: 22px;
  font-weight: bold;
  color: #1d4e2f;
}

.pack-serenite ul {
  list-style-type: none;
  padding: 0;
}

.pack-serenite ul li {
  font-size: 18px;
  margin-bottom: 5px;
}

.tarifs-modalites {
  background: #f0f8f0;
  padding: 15px;
  margin-top: 10px;
  border-left: 5px solid #2e7d32;
  border-radius: 5px;
}

.tarifs-modalites p {
  font-size: 1.1rem;
  color: #424242;
  margin: 5px 0;
}

.tarifs-info {
  font-size: 1rem;
  font-style: italic;
  color: #555;
}
.btn-rdv-naturo {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #6b8e23;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.btn-rdv-naturo:hover {
  background-color: #1d4e2f;
}

.tarifs-liste li {
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}


.btn-rdv-reflexo {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #8a2be2;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.btn-rdv-reflexo:hover {
  background-color: #1d4e2f;
}
.tarifs-texte,
.tarifs-info {
  font-size: 1.1rem;
  color: #424242;
  margin-top: 5px;
}

.tarifs-contact {
  text-align: center;
  margin-top: 20px;
}
.tarifs-contact .btn-contact {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  padding: 15px 30px;
  font-size: 18px;
  color: white;
  font-weight: bold;
  background-color: #00c1b2;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.btn-contact:hover {
  background-color: #1d4e2f;
}
  
   
   
 
#background-image-offre {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}     

 .offres {
    padding: 20px;
	opacity: 0.9;
    max-width: 1200px;
    margin: auto;
    background-color: #e5fcf9;
	font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
}

.offres-titre {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #00c1b2;
    margin-bottom: 30px;
}

.offres div {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.offre-contact {
    background: none;
}

.offres h2 {
    color: #00c1b2;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
	text-align: center;
}

.offres p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.offres .btn-contact {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  margin-top: 60px;
  padding: 15px 30px;
  font-size: 18px;
  color: white;
  font-weight: bold;
  background-color: #00c1b2;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}
.btn-contact:hover {
  background-color: #1d4e2f;
}
.mention {
    font-size: 14px;
    color: #777;
    font-style: italic;
}


.btn-facebook {
    display: inline-block;
    font-family: "Arial", sans-serif;
    font-weight: bold;
    font-size: 20px;
    color: #1877F2;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-facebook:hover {
    opacity: 0.8;
    transform: scale(1.06);
}

.btn-instagram {
    display: inline-block;
    font-family: "Dancing Script", cursive;
    font-weight: 700;
    font-size: 22px;
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-instagram:hover {
    opacity: 0.8;
	transform: scale(1.06);  

}
    





#background-image-contact {
     
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100%;     
}    

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
	opacity: 0.9;
    padding: 40px;
    font-family: "Arial", sans-serif;
    color: #333;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	background-color: #e5fcf9;
	border-radius: 12px;
}

.contact-page .titre-accueil {
    flex: 2; 
    text-align: center; 
    font-family: Arial, sans-serif;
    line-height: 1.5; 
	margin-bottom: 35px;
}

.contact-page .titre-accueil h2 {
    color: #2d4739; 
	font-family: 'Dancing Script', cursive;  
    font-size: 2.3rem;
    margin-bottom: 8px;
}

.contact-page .titre-accueil p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}


.contact-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #00c1b2;
}


.contact-info {
    text-align: center;
    margin-bottom: 30px;
}

.contact-name {
    font-size: 24px;
    font-weight: bold;
    color: #197278;
}

.contact-role {
    font-style: italic;
    color: #444;
}

.contact-adhesion {
    font-size: 16px;
    font-weight: bold;
    color: #AA4A44;
}


.contact-details {
    background-color: #189fae;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
	margin-right: 12%;
	margin-left: 12%;
}

.contact-section-title {
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.contact-phone, .contact-email {
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
}


.contact-phone a{
    text-decoration: none;
	color: #FFFFFF;
}
.contact-phone:hover {
    color: #40826d;
    transform: scale(1.02);  
}
.contact-email a{
    text-decoration: none;
	color: #FFFFFF;
}
.contact-email:hover {
    color: #D62D75;
    transform: scale(1.02);  
}
.contact-email {
    color: #D62D75;
}

.contact-info-extra {
    font-size: 16px;
    color: #000;
    font-style: italic;
}


.contact-lieu ul {
    list-style: none;
    padding: 0;
}

.contact-lieu li {
    font-size: 16px;
    margin-bottom: 25px;
}

.small-text {
    font-size: 14px;
    color: #777;
}


.contact-info-sup {
    background-color: #FFFFFF;
    padding: 15px;
    border-radius: 10px;
}
.contact-section-info {
    font-size: 20px;
    font-weight: bold;
	color: #00c1b2;
}

.contact-fin {
	font-size: 1.2rem;
    font-weight: bold;
	text-align: center;
	padding-top: 40px;
}
.signature-text-contact{
	font-size: 1.7rem;
    font-style: italic;
	font-weight: 750;
    color: #008000;
    margin-right: 22%;
	text-align: right;
}	
.signature-contact {
	font-size: 2.9rem;
    font-family: "Brush Script MT", cursive;
    font-weight: bold;
    color: #0ea27c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	margin-right: 16%;
	margin-bottom: 2px;
    text-align: right;
}



.legal-wrapper {
  max-width: 1000px;
  margin: auto auto auto;
  padding: 2rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.legal-title {
  font-size: 2rem;
  color: #3c6147;
  border-bottom: 2px solid #dbe8d1;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.legal-subtitle {
  font-size: 1.4rem;
  margin-top: 2rem;
  color: #4d774e;
}

.legal-section p {
  margin-bottom: 1rem;
}

.legal-section a {
  color: #3d7756;
  text-decoration: underline;
}

.legal-footnote {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #888;
  text-align: center;
}



#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333; 
    color: #f8f8f8; 
    text-align: center;
    padding: 15px;
    font-size: 14px;
    z-index: 1000;
}

.cookie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap; 
}

#cookie-banner p {
    margin: 0;
    font-size: 16px;
	color: white;
    font-weight: bold; 
}
#cookie-banner a {
    margin: 0;
    font-size: 16px;
	color: #fff5cb;
    font-weight: bold; 
}

#cookie-banner button {
    background: #4caf50;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

#cookie-banner button:hover {
    background: #45a049;
    transform: scale(1.05);
}


.icon {
            font-size: 4em;
            color: #ff9800;
            margin-bottom: 20px;
}
.container2 {
    flex: 1;  
    text-align: center;  
}
.info_section h5 {
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: left;
  color:#fffacd;
}
 
.container {
  width: 100%;
  padding-right: 1px;
  padding-left: 1px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  
  width: 100%;
}
 

.info_section {
  background-color: #505050;
  color: #ffffff;
   
  width: 100%;  
  text-align: left;
}


.info_logo h5 {
  margin-top: 8%;
  margin-bottom: 6px;
  font-size: 2.5em;
  font-family: 'Dancing Script', cursive;  
  color: #90EE90
}

.info_logo p {
  margin: 6px 0;
  color: #90EE90;
  font-size: 1.2em;
}

.info_section .col-md-3 {
    margin: 25px 0;
}

.info_links ul {
  padding-left: 15px;
}

.info_links ul .active::before {
  background-color: #e1603a;
}

.info_links ul .active a {
  color: #e1603a;
}

.info_links ul li {
  list-style-type: none;
  position: relative;
  margin-bottom: 10px;
}

.info_links ul li::before {
  content: "";
  left: -15px;
  top: 50%;
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.info_links ul li a {
  color: #ffffff;
}

.info_contact > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.info_contact > div img {
  width: 20px;
  height: auto;
  margin-right: 12px;
}

.col-md-3 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 30px;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%; 
  flex: 1;  
  box-sizing: border-box;  
}

 		
.social-links {
    display: flex;
    flex-direction: column;  
    gap: 16px;  
}

.instagram-link {
    display: flex;
    align-items: center;  
    text-decoration: none;
    color: #E4405F;  
    font-weight: bold;
    font-size: 16px;  
    transition: color 0.3s ease, transform 0.3s ease;
}

.instagram-link:hover {
    color: #C13584;  
    transform: scale(1.09);  
}

.instagram-icon {
    width: 34px;  
    height: 34px;
    margin-right: 8px;  
}

.instagram-text {
    line-height: 1;  
}

.facebook-link {
    display: flex;
    align-items: center;  
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
	transition: color 0.3s ease, transform 0.3s ease;
}

.facebook-icon {
    width: 34px;  
    height: 34px;
    margin-right: 8px;  
}

.facebook-link:hover {
    color: #3b5998;  
    transform: scale(1.09);  
}

.facebook-text {
    line-height: 1;  
	color: #77B5FE;  
}

.phone-link {
    display: flex;
    align-items: center;  
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #90EE90;  
    transition: color 0.3s ease, transform 0.3s ease;
	margin-top: 8px;  
}

.phone-link:hover {
    color: #00ff00;  
    transform: scale(1.09);  
}

.phone-icon {
    width: 34px;  
    height: 34px;
    margin-right: 8px;  
}

.email-link {
    display: flex;
    align-items: center;  
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #90EE90;  
    transition: color 0.3s ease, transform 0.3s ease;
    margin-top: 8px;  
}

.email-link:hover {
    color: #FF4500;  
    transform: scale(1.09);  
}

.email-icon {
    width: 34px;  
    height: 34px;
    margin-right: 8px;  
}

 
.obligation {
  background-color: #505050;
  position: relative;
  text-align: center;  
  width: 100%;  
}

.obligation p {
  display: inline-block;  
  border: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;  
  padding: 10px 10px;
  margin: 0;  
  position: relative;
}


 
.footer_section {
  background-color: #505050;
  position: relative;
    
  box-sizing: border-box;  
  width: 100%;  
}

.footer_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 270px;
  height: 220px;
  background-image: url(../images/logo-naturopathe.png);
  background-size: cover;
  opacity: 1;
  z-index: 10;
  mix-blend-mode: multiply;    
}

.footer_section p {
   
  color: #ffffff;
  margin: 0;
  text-align: center;
  padding: 20px;
  margin: 0;
  position: relative;
  line-height: 1.5;
  font-size: 0.8em; 
}


 
 
@media (max-width: 768px) {
 .logo {
    align-self: flex-start;
	width: 0%;
    max-width: 100px;
    height: auto;
    margin-right: 10px;
 }
 
 .header {
	display: flex;
	flex-direction: row;
    height: auto; 
    padding: 10px 15px;
    align-items: center;
    opacity: 1; 
	position: absolute; 
    width: 100%; 
    top: 0;
    left: 0;
    z-index: 1000; 
  }

   body {
        padding-top: 260px; 
    }
	
  .navbar {
    display: flex;
    width: 100%;
    flex-direction: column; 
    align-items: center;
    gap: 10px; 
	    justify-content: flex-end;
		flex: 1;
  }
 div#dropdown-menu.dropdown{
		 text-align: center;
 }
 .dropdown .dropdown-menu {
    position: relative;
    top: 10px;
	width: 140px; 
    padding: 8px 10px; 
	left: 50%;
    transform: translateX(-50%);
    margin-top: 0px;
	margin-bottom: 15px;
  }
.dropdown .dropdown-menu li::before {
  color: #fff;
}
  .dropdown .dropdown-menu li a {
	    color: #fff;
    font-size: 0.9rem; 
  }
  
  .menu {
    flex-direction: column; 
    width: 100%;
    gap: 10px; 
  }

  .menu li {
    width: 100%; 
    text-align: center;
  }

  .menu a {
    font-size: 0.9rem; 
    padding: 8px 10px; 
  }


   .btn-highlight {
    font-size: 0.9rem; 
    padding: 7px 14px; 
  }
  
  .titre-accueil {
    text-align: center; 
}
 
 
 
 .about-me {
	max-width: 90%;
	padding: 15px;
 }
 
    .intro-about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .texte-left-about {
        width: 100%;
    }

    .photo-about {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .photo-about img {
        width: 180px;
    }
	    .closing-message-about {
        padding: 40px;
        max-width: 95%;
    }

    .message-text-about {
        font-size: 1.2rem;
    }

    .signature-about {
        font-size: 2rem;
    }
 
 
 
 
 .consultation-container {
        max-width: 90%;
        padding: 30px;
    }

    .consultation-title {
        font-size: 1.8rem;
    }

    .consultation-subtitle {
        font-size: 1.3rem;
    }

    .consultation-section {
        padding: 15px;
    }

    .consultation-list {
        padding-left: 15px;
    }
	.consultation-conclusion {
        font-size: 1rem;
        padding: 10px;
    }
.note-consultation-conclusion {
  font-size: 0.85em;
  font-style: italic;
}
 
 
 
 .naturopathie-section{
	 	max-width: 90%;
		padding: 15px;
 }
 .naturopathie-title {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .naturopathie-section {
    padding: 20px 10px;
  }
  
  
  .reflexo-container {
	 	max-width: 90%;
 }	  
  
    .reflexo-pratique, .reflexo-contact {
    padding: 15px;
    font-size: 0.9rem;
  }

  .reflexo-pratique h2 {
    font-size: 1.2rem;
  }

   
   
 
 

 
 
 
 .ateliers-container {
	max-width: 90%;
    padding: 15px;
  }

  .ateliers-titre {
    font-size: 2.5rem;
  }
.ateliers-subtitle {
	 font-size: 2rem;
}
 .ateliers-difference p {
	 font-size: 1rem;
  }
  .conclusion-atelier {
		 font-size: 1rem;
  }  
  .btn-ateliers-contact {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
   
   
   
   
   

   .tarifs-container {
	max-width: 90%;
    padding: 15px;
  }

  .tarifs-titre {
    font-size: 2.5rem;
  }

  .tarifs-section {
    padding: 10px;
  }

  .tarifs-liste li {
    font-size: 1rem;
  }

  .tarifs-btn-contact {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
  
  
  
  
  
  .offres {
	  max-width: 90%;
    padding: 15px;
  }
  
  .offres-titre {
    font-size: 2.5rem;
  }
  .offres h2 {
   font-size: 2rem;
  }	  
  
  
  
  
  .contact-page {
        max-width: 90%;
        padding: 15px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-name {
        font-size: 20px;
    }

    .contact-role, .contact-adhesion {
        font-size: 14px;
    }

    .contact-section-title {
        font-size: 18px;
    }

    .contact-phone, .contact-email {
        font-size: 16px;
    }

    .contact-lieu li {
        font-size: 14px;
    }
.signature-text-contact {
	   font-size: 1.5rem;
	   margin-right : 1%;
}



  
  
.contact-details {
    background-color: #189fae;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
	margin-right: 6%;
	margin-left: 6%;
}

.contact-phone  {
	    font-size: 1rem;
}
.contact-email  {
	    font-size: 1rem;
}
 
 .legal-wrapper {
    padding: 1rem;
  }

  .legal-title {
    font-size: 1.6rem;
  }

  .legal-subtitle {
    font-size: 1.2rem;
  }
   

   
    .presentation {
        flex-direction: column; 
        text-align: center; 
    }

    .image-container {
        max-width: 200px; 
    }
  
  .slogan {
        font-size: 2rem; 
        padding: 10px;
    }
 .consultations {
        font-size: 1.1rem;
        padding: 20px;
    }
	
	
	
 
  .container {
    padding: 5px;  
  }

  .container h1, .container h2, .container h3, .container h5 {
    margin: 8px 0;  
  }

.info_section .col-md-3 {
  margin: 5px 0;
}

.info_section h5 {
	text-align: center;  
}

   
  .row {
    flex-direction: column;  
    align-items: center;  
  }

  .col-md-3 {
    width: 100%;  
    max-width: none;
    padding: 10px 0;
  }

   
  .footer_section p {
	font-size: 0.6em; 
	line-height: 1.5;  
	text-align: center;  
	margin: 0 auto;
  }

  
  .info_links{
	text-align: center;  
  }
  
  
   
  .info_logo h5 {
    font-size: 24px;  
    text-align: center;  
  }

   
  .social-links {
    flex-wrap: wrap;  
    justify-content: center;  
    gap: 8px;  
  }

  .social-links a {
    font-size: 14px;  
  }


.col-md-3 {
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    text-align: center;  
    margin: 0 auto;  
    width: 100%;  
    padding: 10px;  
  }
  
.info_contact {
    display: flex;  
    flex-direction: column;  
    justify-content: center;  
    align-items: center;  
    text-align: center;  
    margin: 0 auto;  
    width: 100%;  
    padding: 10px;  
  }
 
  .phone-link {
    display: flex;
    align-items: center;  
    text-align: center;  
}

   
  .obligation p {
    padding: 8px;
    font-size: 12px;  
  }

   
  .instagram-icon, .facebook-icon, .phone-icon, .email-icon {
    width: 24px;  
    height: 24px;
    margin-right: 4px;
  }
  
  .footer_section::before {
    background-image: none;  
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .logo {
	 display: none;
 }
 
  .header {
    flex-direction: row; 
    height: auto; 
    padding: 10px 15px;
  }

  .menu {
    gap: 10px; 
  }

  .menu a {
    font-size: 0.8rem; 
    
  }

  .dropdown .dropdown-menu {
    top: 100%; 
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-highlight {
    padding: 8px 18px; 
  }
  
  
  
    .reflexo-pratique, .reflexo-contact {
    padding: 20px;
    font-size: 1rem;
  }

  .reflexo-pratique h2 {
    font-size: 1.5rem;
  }

  .btn-nature {
    padding: 10px 20px;
    font-size: 1rem;
  }
   
   
      
   
   .ateliers-container {
    padding: 15px;
  }

  .ateliers-titre {
    font-size: 1.8rem;
  }

  .btn-ateliers-contact {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
     
	 
	 

	 .tarifs-container {
    padding: 15px;
  }

  .tarifs-titre {
    font-size: 2rem;
  }

  .tarifs-section {
    padding: 15px;
  }

  .tarifs-btn-contact {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
    
 
  .slogan {
        font-size: 2.5rem; 
        padding: 15px;
    }
  .consultations {
        font-size: 1.3rem;
        padding: 25px;
    }
  
  
  .container {
    font-size: 15px;
  }

  .container p, .container h1, .container h2, .container h3, .container h4, .container h5, .container h6 {
    font-size: inherit;
  }
  
  .container .row {
    gap: 8px;
  }
  .col-md-3{
	padding-right: 5px;
	padding-left: 20px;
  }
  .info_links ul {
	font-size: 14px;
 }
  .instagram-link {
	font-size: 13px;
  }
  .facebook-link {
	font-size: 13px;
  }
  .phone-link {
	font-size: 13px;
  }
  .email-link {
	word-wrap: break-word;
	overflow-wrap: break-word; 
	white-space: normal; 
	font-size: 13px;
  }
    .obligation p {
	  font-size: 0.7em;
	  left: 10;
  }
  .footer_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 110px;
  background-image: url(../images/logo_test.png);
  background-size: cover;
  opacity: 1;  
  mix-blend-mode: multiply;   
}
  .footer_section {
    font-size: 0.7em; 
  }
}

