 
html {
	height: 100%;
	width: 100%;	
    margin: 0;  
    display: flex;
    flex-direction: column;  
    text-align: left;
  }
body {
  width: 100%;
  margin: 0;
  padding-top: 70px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}



.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed; 
  top: 0; 
  z-index: 1000; 
  background-color: #eaf4e1; 
  width: 100%;
  height: 70px; 
  padding: 0 0px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
  font-family: Trebuchet MS, sans-serif;
}


.logo {
  flex-shrink: 0; 
}

.logo img {
  height: 70px; 
  width: auto; 
  opacity: 0.8; 
  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: #4CAF50; 
    
    font-weight: bold; 
    border-radius: 5px;
}

.menu li {
  position: relative;
}

.menu a {
  text-decoration: none;
  font-size: 1.2rem; 
  font-weight: 600; 
  color: #000000;
  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(-48%); 
  background-color: #eaf4e1;
  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;
  list-style-type: disc;
  list-style-position: inside;
  transition: opacity 0.3s ease; 
}

.dropdown .dropdown-menu li {
  margin-bottom: 5px;
}

.dropdown .dropdown-menu li a {
  color: #2d4739;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown .dropdown-menu li a:hover {
  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 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
    max-width: 900px; 
    margin: auto; 
    padding: 20px;
}

.image-container {
    flex: 1; 
    max-width: 250px; 
}

.image-container img {
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.text-container {
    flex: 2; 
    text-align: left; 
    font-family: Arial, sans-serif;
    line-height: 1.5; 
}

.text-container h2 {
    color: #2d4739; 
	font-family: 'Dancing Script', cursive;  
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

  .about {
    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: justify;
    font-size: 16px;
    color: #2d4739;
}
  
 .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.5rem;
    text-align: center;
    color: #2d4739;
    background-color: #f4f8f1;
    padding: 30px;
    margin: 20px auto;
    border-radius: 15px;
    max-width: 1100px;
    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: #f7f7f7;
    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;
}




.about-me {
    display: flex;
    justify-content: center;
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 40px auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.content-about {
    width: 100%;
}


.intro-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.texte-left-about {
    width: 65%;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.photo-about {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.photo-about img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}


.texte-about {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    text-align: justify;
}

.closing-message-about {
    
    color: #e26a2c;
	border-radius: 10px;
    max-width: 1400px; 
    margin: 30px auto;
    text-align: center;
    
    position: relative;
    
	padding: 10px 10px 0px; 
}
.closing-message-about:hover {
    transform: scale(1.02);
    transition: 0.3s ease-in-out;
}
.message-text-about {
    font-size: 1.5rem;
    color: #e26a2c;
    
    line-height: 1.9;
    font-weight: 750;
    text-align: justify;
    max-width: 98%;
    margin: 0 auto;
}

.signature-container-about {
    text-align: right;
    margin-top: 0px;
	margin-bottom: 0px; 
}

.signature-text-about {
    font-size: 1.7rem;
    font-style: italic;
	font-weight: 750;
    color: #008000;
    margin-right: 30%;
}

.signature-about {
    font-size: 2.9rem;
    font-family: "Brush Script MT", cursive;
    font-weight: bold;
    color: #6d3d14;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
	margin-right: 26%;
	margin-bottom: 2px; 
}







.consultation-container {
   max-width: 1200px;
   margin: 0 auto;
   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-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-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.1rem;
    color: #2d4739;
    background: #e0d4c5; 
    padding: 15px;
    border-radius: 10px;
    font-style: italic;
}




.naturopathie-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Trebuchet MS', sans-serif;
  background: #f9f8f3;
  color: #2d4739;
  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 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;

}
p {
  margin-bottom: 20px;
}

.method-naturopathie ul {
  margin-bottom: 20px;
  padding-left: 40px;
}


.btn-nature {
  display: inline-block;
  padding: 12px 24px;
  background: #8fbc8f;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-nature:hover {
  background: #6b8e23;
}

.contact-naturopathie {
  margin-top: 40px;
  text-align: center;
}




  .reflexo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px; 
  background-color: #f3f7f0; 
  color: #2e4b35; 
  line-height: 1.6; 
  font-family: 'Trebuchet MS', sans-serif;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  .reflexo-header { 
  text-align: center; 
  }
  .reflexo-title { 
  font-size: 3rem; 
  color: #8b008b;
  margin-bottom: 30px; 
  }
  .reflexo-subtitle { 
  font-size: 2rem; 
  margin: 30px 0 15px; 
  color: #4a7c59; 
  }
  .reflexo-text { 
  margin-bottom: 20px; 
  font-size: 1.1rem; 
  }
  
  .reflexo-list { 
  list-style-type: disc; 
  margin-left: 20px; 
  }
  
  .reflexo-list li { 
  margin-bottom: 10px; 
  }
  
  .reflexo-btn { 
  display: inline-block; 
  margin-top: 20px; 
  padding: 10px 20px; 
  background-color: #4a7c59; 
  color: white; border: none; 
  border-radius: 8px; 
  font-size: 1rem; 
  cursor: pointer; 
  }
  .reflexo-btn:hover { 
  background-color: #3a6a47; 
  }
  .reflexo-contact {
  margin-top: 40px;
  text-align: center;
}
  




.ateliers-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  line-height: 1.6; 
  font-family: Arial, sans-serif;
  color: #2c3e50;
  background-color: #f5f5f5;
}

.ateliers-titre {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #cc5500;
  margin-bottom: 30px;
}

.ateliers-section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.ateliers-section h2 {
  color: #3a5f3a;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.ateliers-section p,
.ateliers-section ul {
  font-size: 1rem;
  line-height: 1.6;
}

.ateliers-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.ateliers-contact {
  text-align: center;
  margin-top: 20px;
}

.btn-ateliers-contact {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #3a5f3a;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-ateliers-contact:hover {
  background-color: #2c3e50;
}
  
  
  
   
.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #2c3e50;
  background-color: #f9f9f9;
}

.tarifs-titre {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  color: #f00020;
  margin-bottom: 30px;
}

.tarifs-section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.tarifs-reflexologie {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
}

.titre-tarifs {
  text-align: center;
  font-size: 1.8rem;
  color: #2c5e3f;
  font-weight: bold;
}

.tarifs-liste {
  list-style-type: none;
  padding: 0;
}

.tarifs-liste li {
  margin-bottom: 10px;
  font-size: 18px;
}

.tarifs-liste span {
  font-size: 16px;
  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;
}

.btn-contact {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 20px auto;
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: #2c5e3f;
  border-radius: 5px;
  cursor: pointer;
  width: fit-content;
}

.btn-contact:hover {
  background-color: #1d4e2f;
}

.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;
}
.tarifs-sous-titre {
  text-align: center;
  color: #2e7d32;
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.tarifs-liste {
  list-style-type: none;
  padding: 0;
}

.tarifs-liste li {
  font-size: 1.2rem;
  line-height: 1.8;
  padding: 5px 0;
  border-bottom: 1px solid #e0e0e0;
}

.tarifs-liste span {
  font-weight: bold;
  color: #1b5e20;
}

.tarifs-texte,
.tarifs-info {
  font-size: 1.1rem;
  color: #424242;
  margin-top: 5px;
}

.tarifs-contact {
  text-align: center;
  margin-top: 20px;
}

.tarifs-btn-contact {
  display: inline-block;
  padding: 12px 24px;
  font-size: 1rem;
  color: white;
  background-color: #2e7d32;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s;
}

.tarifs-btn-contact:hover {
  background-color: #1b5e20;
}
  
   
   
   

 .offres {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #f8f8f8;
	font-family: Arial, sans-serif;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.offres-titre {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: #f00020;
    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: #2c5e3f;
    font-size: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.offres p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.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);  

}
    
    

.contact-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    font-family: "Arial", sans-serif;
    color: #333;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);

}


.contact-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #fb7465;
}


.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: #90EE90;
    margin-bottom: 10px;
}

.contact-section-title2 {
    font-size: 20px;
    font-weight: bold;
    color: #0B6E4F;
    margin-bottom: 10px;
}
.contact-phone, .contact-email {
    font-size: 18px;
    font-weight: bold;
    padding: 5px;
    border-radius: 5px;
}

.contact-phone {
    color: #40826d;
}
.contact-phone a{
    text-decoration: none;
	color: #40826d;
}
.contact-phone:hover {
    color: #40826d;
    transform: scale(1.02);  
}
.contact-email a{
    text-decoration: none;
	color: #D62D75;
}
.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: 8px;
}

.small-text {
    font-size: 14px;
    color: #777;
}


.contact-info-sup {
    background-color: #F5F5F5;
    padding: 15px;
    border-radius: 10px;
}

    

.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);
}


       
h1 {
            font-size: 3em;
            color: #333;
        }
p {
            font-size: 1.2em;
            color: #444;
        }
.icon {
            font-size: 4em;
            color: #ff9800;
            margin-bottom: 20px;
}
.container2 {
    flex: 1;  
    text-align: center;  
}
h5 {
  font-size: 1.25rem;
  line-height: 1.2;
  text-align: left;
}
 
.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_section h5 {
  margin-bottom: 20px;
  font-weight: 700;
}

.info_section .info_logo h5 {
  font-size: 2em;
  font-family: 'Dancing Script', cursive;  
  color: #90EE90
}

.info_logo {
	  color: #90EE90
}

.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: 200px;
  height: 180px;
  background-image: url(../images/logo_test.png);
  background-size: cover;
  opacity: 8;  
  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 {
	 display: none;
 }
 
 .header {
    flex-direction: column; 
    height: auto; 
    padding: 10px 15px;
    align-items: center;
    background-image: url(../images/logo_test.png); 
    background-size: 35%; 
    background-repeat: no-repeat;
    background-position: left top;
	background-color: #eaf4e1;
    opacity: 1; 
    mix-blend-mode: normal; 
	position: absolute; 
    width: 100%; 
    top: 0;
    left: 0;
    z-index: 1000; 
  }

    body {
        padding-top: 290px; 
    }
	
  .navbar {
    
    width: 100%;
    flex-direction: column; 
    align-items: center;
    gap: 10px; 
  }
 div#dropdown-menu.dropdown{
		 text-align: center;
 }

  .menu {
    flex-direction: column; 
    width: 100%;
    gap: 10px; 
  }

  .menu li {
    width: 100%; 
    text-align: center;
  }

  .menu a {
    font-size: 0.9rem; 
    padding: 8px 10px; 
  }

  .dropdown .dropdown-menu {
    position: relative;
    top: 10px; 
    left: 0;
    transform: none; 
    margin-top: 5px;
  }

  .dropdown .dropdown-menu li a {
    font-size: 0.9rem; 
  }
   .btn-highlight {
    font-size: 0.9rem; 
    padding: 7px 14px; 
  }
  
 
 
 
    .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;
    }

 
 
 .naturopathie-title {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .naturopathie-section {
    padding: 20px 10px;
  }
  
  
  
  
    .reflexo-pratique, .reflexo-suivi, .reflexo-contact {
    padding: 15px;
    font-size: 0.9rem;
  }

  .reflexo-pratique h2, .reflexo-suivi h2 {
    font-size: 1.2rem;
  }

   
   
 
 
 
 
 .contact-page {
        max-width: 90%;
        padding: 15px;
    }

    .contact-title {
        font-size: 24px;
    }

    .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;
    }

 
 .ateliers-container {
    padding: 10px;
  }

  .ateliers-titre {
    font-size: 1.6rem;
  }

  .ateliers-section {
    padding: 10px;
  }

  .btn-ateliers-contact {
    font-size: 0.85rem;
    padding: 7px 14px;
  }
   
   
   

   .tarifs-container {
    padding: 10px;
  }

  .tarifs-titre {
    font-size: 1.8rem;
  }

  .tarifs-section {
    padding: 10px;
  }

  .tarifs-liste li {
    font-size: 1rem;
  }

  .tarifs-btn-contact {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
   
   
   
 .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: 768px) 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-suivi, .reflexo-contact {
    padding: 20px;
    font-size: 1rem;
  }

  .reflexo-pratique h2, .reflexo-suivi h2 {
    font-size: 1.5rem;
  }

  .btn-nature {
    padding: 10px 20px;
    font-size: 1rem;
  }
   
   
      
   
   .ateliers-container {
    padding: 15px;
  }

  .ateliers-titre {
    font-size: 1.8rem;
  }

  .ateliers-section {
    padding: 15px;
  }

  .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; 
  }
}

