/* header */

.lang-switch {
  z-index: 1002;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.lang-switch a {
  color: inherit;
  text-decoration: none;
}

.lang-switch {
  border: 1px solid transparent !important;
  padding: 8px 12px !important;
}

.lang-switch:hover {
  border: 1px solid #fff !important;
}

.burger {
    position: absolute;   
    top: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1001;
    transition: transform .2s ease, background-color .2s ease;
  }

#menu {
    overflow: hidden;
    background: rgba(0,0,0,.45);    
    backdrop-filter: blur(2px);
    opacity: 0;                  
    visibility: hidden;   
    position: absolute;         
    top: 10px;
    right: 0;
    left: 0;
    z-index: 1000;                 
  }
  
  #menu ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
    padding: 72px 16px 16px;     
  }
  
  #menu.open { 
    max-height: 400px;
    opacity: 1;
    visibility: visible;
 }  
  
  nav li {
    padding: 10px 30px;
  }
  
  @media (min-width: 1024px) {
    .burger { display: none; }

    #menu {
        position: static;          
        background: transparent;
        max-height: none;
        opacity: 1;
        visibility: visible;
        overflow: visible;
      }
      .hero {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        flex-direction: column;
        padding: 0px;
    }   
    
  }

html {
    scroll-behavior: smooth;
  }
  
header {
      background-image: url(assets/hero.webp);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 580px;
      color: rgb(244, 242, 234);
      box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
      position: relative; 
}

header::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(61, 28, 27, 0.48) 0%,
        rgba(61, 28, 27, 0.34) 55%,
        rgba(61, 28, 27, 0.24) 100%
      );
      pointer-events: none;
      z-index: 0;
}

header > * {
      position: relative;
      z-index: 1;
}

nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 50px;
    font-family: 'Arial Grotesk', Arial, sans-serif;
}

li {
   list-style-type: none;
   border: 1px solid transparent;
   border-radius: 20px;
   box-sizing: border-box;
}

li a {
    color: white;
    text-decoration: none;
}

a {
    text-decoration: none;
}

header .hero-btn {
    margin-top: 20px;
    color: white;
    background-color: none;
    border-color: white;
    padding: 17px;
    border-radius: 30px;
    border: 1px solid;
    min-width: 180px;
    text-align: center;
}

header .hero-btn:hover {
    transition: 0.3s;
    transform: translateY(-0.25em);
}

.about-section {
    color: rgb(61, 28, 27);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    text-align: left;
    margin: 32px 0 8px;
}

.about-content {
    max-width: 760px;
}

.about-content h1 {
    margin: 0 0 20px;
    text-align: center;
}

.partners-title {
    margin-top: 22px;
}

.partners-title + .about-toggle summary {
    margin-top: 8px;
}

.partners-intro {
    margin-top: 0;
    margin-bottom: 10px;
}

.partners-intro + .about-toggle {
    margin-top: 8px;
}

.partners-intro + .about-toggle summary {
    margin-top: 8px;
}

.partners-intro + .about-toggle[open] summary {
    margin-top: 18px;
}

.about-section .about-content p {
    margin: 0;
    line-height: 1.7;
    letter-spacing: 0.05em;
    font-size: 14px;
}

.about-section .partners-intro,
.about-section .about-text p {
    font-family: 'Arial Grotesk', Arial, sans-serif;
    font-size: 14px !important;
    line-height: 1.7 !important;
    letter-spacing: 0.05em !important;
    text-transform: none;
}

.about-toggle {
    margin-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

#section-a-propos .about-content > .about-toggle:first-of-type {
    margin-bottom: 70px;
}

.about-toggle summary {
    list-style: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgb(61, 28, 27);
    color: rgb(61, 28, 27);
    letter-spacing: 0.5px;
    font-size: 12px;
    margin-top: 18px;
    margin-bottom: 8px;
    order: 2;
}

.about-toggle summary::-webkit-details-marker {
    display: none;
}

.about-text {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
    order: 1;
}

.about-text h3 {
    margin: 10px 0 0;
    font-size: 13px;
    letter-spacing: 0.08em;
    background: none;
    border: none;
    padding: 0;
    width: auto;
}

.about-title {
    color: rgb(61, 28, 27);
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.about-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: rgb(61, 28, 27);
    border-radius: 20px;
}

.about-text p {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-links a {
    color: rgb(61, 28, 27);
    text-decoration: underline;
}

.about-section .partner-link {
    display: inline-block;
    padding-top: 12px;
    color: rgb(61, 28, 27);
    text-decoration: underline;
}

.about-link-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgb(61, 28, 27);
    color: rgb(61, 28, 27);
    letter-spacing: 0.5px;
    font-size: 12px;
}

.partners-section {
    padding: 0 20px;
    margin: 0 0 32px;
}

.partners-content {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partners-content p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.about-toggle .label-less {
    display: none;
}

.about-toggle[open] .label-more {
    display: none;
}

.about-toggle[open] .label-less {
    display: inline;
}

@media (max-width: 768px) {
    header {
        height: 660px;
    }

    h1 {
        font-size: 30px;
        line-height: 1.1;
        letter-spacing: 0.08em;
        margin-top: 28px;
        margin-bottom: 28px;
    }

    .title-bar h1,
    .about-content h1 {
        font-size: 30px !important;
        line-height: 1.1;
        letter-spacing: 0.08em;
    }

    .about-section {
        padding: 32px 16px;
        margin: 20px 0 4px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h1 {
        margin: 0 0 14px;
    }

    .about-section .title-bar {
        gap: 8px;
    }

    .about-section .title-bar .rdv-line {
        width: 56px;
        flex: 0 0 56px;
    }

    .about-section .about-content p {
        font-size: 14px;
        line-height: 1.7;
        letter-spacing: 0.05em;
    }

    .about-text h3 {
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .about-toggle {
        margin-top: 14px;
    }

    #section-a-propos .about-content > .about-toggle:first-of-type {
        margin-bottom: 34px;
    }

    .partners-title {
        margin-top: 16px;
    }

    .about-toggle summary {
        font-size: 11px;
        padding: 9px 14px;
        margin-top: 12px;
    }
}

.hero {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
}

.para_hero {
    max-width: 800px;
    margin: 15px;
}

.logo {
    max-width: 170px;
}

/* section soins */

main {
    color: rgb(61, 28, 27);
}

h1 {
    text-align: center;
    margin-top: 45px;
    margin-bottom: 45px;

}

.liste_soins {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.soins {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px; 
}

.soins a {
   margin-top: 20px;
   color: rgb(61, 28, 27);
   background-color: white;
   border-color: rgb(61, 28, 27);
   padding: 16px 32px;
   border-radius: 30px;
   border: 1px solid;
   min-width: 160px;
   text-align: center;
}

.soins a:hover {
    margin-top: 20px;
    color: white;
    background-color: rgb(61, 28, 27);
    border-color: white;
    padding: 16px 32px;
    border-radius: 30px;
    border: 1px solid;
    min-width: 160px;
    text-align: center;
    transition: 0.3s;
 }

.liste_soins img {
    flex-direction: column;
    max-width: 200px;
}

@media (min-width: 1024px) {
    .liste_soins {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
    }
    .liste_soins img {
        flex-direction: column;
        min-width: 240px;
    }

    header {
        height: 610px;
    } 

    .logo {
        width: 250px;
     }

    nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 40px;
    padding: 5px;
} 

nav li {
    list-style-type: none;
    padding: 10px 30px;
 }

nav li:hover{
    color: white;
    border: 1px solid white;
    border-radius: 20px;
    padding: 10px 30px;
}

}

/* nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 40px;
} */

/* section tarifs */

.first-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.second-section {
    display: flex;
    flex-direction: column;
}


/* section prendre rdv */

.manager-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 10px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 12px 0 16px;
}

.social-links a {
    color: rgb(61, 28, 27);
    font-size: 20px;
}
.contact-list div {
    max-width: 520px;
}

.contact-note {
    margin: 0;
}

.contact-list p {
    line-height: 1.5;
}

.rdv-section {
    padding: 60px 24px 100px;
    background: transparent;
}

.rdv-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.title-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

#section-tarifs .title-bar {
    margin-bottom: 16px;
}

.rdv-line {
    display: block;
    height: 1px;
    width: 200px;
    background: rgb(61, 28, 27);
}

.rdv-content {
    display: grid;
    grid-template-columns: auto auto auto;
    align-items: center;
    gap: 48px;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
}

.rdv-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.planity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    color: rgb(61, 28, 27);
    border: 1px solid rgb(61, 28, 27);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    min-width: 240px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    margin: 0 auto;
    justify-self: center;
}

.rdv-note {
    max-width: 360px;
    font-size: 14px;
    line-height: 1.4;
    color: rgb(61, 28, 27);
}

.planity-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    color: rgb(61, 28, 27);
    border-color: rgb(61, 28, 27);
}

.stamp {
    width: 250px;
    margin-left: auto;
    justify-self: end;
}

.stamp-ghost {
    visibility: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .rdv-content {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .stamp {
        margin: 0;
    }
    .stamp-ghost {
        display: none;
    }
    .contact-list div P {
   font-size: 12px;
    padding: 5px;
   }
}
   

.site-footer {
    padding: 28px 24px 16px;
    text-align: left;
    color: #ffffff;
    background-color: rgb(61, 28, 27);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

.site-footer .footer-grid {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 28px;
}

.site-footer .footer-brand img {
    width: 110px;
    height: auto;
    margin-bottom: 14px;
}

.site-footer .footer-brand p {
    margin: 0;
    line-height: 1.45;
}

.site-footer .footer-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer .footer-col h3 {
    margin: 0 0 4px;
    color: #fff;
    background: none;
    border: none;
    padding: 0;
    width: auto;
    text-align: left;
}

.site-footer .footer-subtitle {
    margin-top: 16px !important;
}

.site-footer a {
    color: inherit;
    text-decoration: underline;
}

.site-footer a:hover {
    opacity: 0.9;
}

.site-footer .footer-col p {
    margin: 0;
}

.site-footer .footer-socials {
    display: flex;
    gap: 12px;
}

.site-footer .footer-socials a {
    text-decoration: none;
    font-size: 34px;
    line-height: 1;
}

.site-footer .footer-legal {
    max-width: 1160px;
    margin: 16px auto 0;
    text-align: center;
}

@media (max-width: 900px) {
    .site-footer {
        padding: 24px 16px 16px;
    }

    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: center;
    }

    .site-footer .footer-brand img {
        margin: 0 auto 12px;
    }

    .site-footer .footer-col h3 {
        text-align: center;
    }

    .site-footer .footer-socials {
        justify-content: center;
    }
}

.stamp-soins {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.title-line {
    color: rgb(61, 28, 27);
background-color: white;
padding: 10px;
border-radius: 30px;
border: 1px solid;
min-width: 160px;
text-align: center;
}

/* bouton remonte */

#btn-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: rgb(61, 28, 27);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 999;
  }
  
  #btn-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  #btn-top:hover {
    background-color: rgb(61, 28, 27);
    transform: translateY(-2px);
  }
  
  #btn-top i {
    font-size: 24px;
    line-height: 1;
    
  }

 .conteneur {
  width: 100%;
  max-width: 900px;     
  margin: 0 auto;       
}

.map-responsive {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 75%;  
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT DESIGN 1: carte + map cote a cote */
.contact-alt {
  padding: 12px 24px 48px;
}

.contact-alt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  border: 1px solid rgba(61, 28, 27, 0.2);
  border-radius: 18px;
  padding: 20px 24px;
  background: #fff;
}

.contact-alt .manager-list {
  justify-content: flex-start;
  padding-bottom: 16px;
}

.contact-alt .contact-list {
  align-items: flex-start;
  text-align: left;
  max-width: 100%;
}

.contact-alt .social-links {
  justify-content: flex-start;
  margin: 16px 0 0;
}

.contact-alt .map-responsive {
  height: 100%;
  min-height: 320px;
  padding-bottom: 0;
  border-radius: 18px;
}

.contact-alt .map-responsive iframe {
  border-radius: 18px;
}

@media (min-width: 900px) {
  .contact-alt-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    align-items: stretch;
  }
}

/* Force same paragraph typography for "Qui sommes-nous" and "Nos partenaires" */
#section-a-propos .about-content > p,
#section-a-propos .about-content .partners-intro,
#section-a-propos .about-content .about-text p {
  font-family: 'Arial Grotesk', Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.9 !important;
  letter-spacing: 0.2em !important;
  text-transform: none !important;
}

@media (max-width: 768px) {
  #section-a-propos .about-content > p,
  #section-a-propos .about-content .partners-intro,
  #section-a-propos .about-content .about-text p {
    font-size: 14px !important;
    line-height: 1.9 !important;
    letter-spacing: 0.2em !important;
  }
}

    
