@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/fonts/CormorantGaramond-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
  letter-spacing: 0;
  font-size: 31.45px;
  line-height: 1.1;
}

body {
  background-attachment: fixed;
  background-color: #ffffff;
  background-image: url("/assets/images/overlay.png");
  background-repeat: repeat, repeat-x;
  background-size: 128px 128px, cover;
  box-shadow: 0 4rem 4rem 0.25rem rgba(46, 43, 55, 0.575);
  color: #000000c9;
  font-family: "Darker Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 2rem auto;
  background-image: url("/assets/images/background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
}

#name {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0;
}

.subpart {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0;
}

.darker-grotesque {
  font-family: "Darker Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 500;
}

.font-style-normal {
  font-style: normal;
}

.margin-top-minus {
  margin-top: -1rem;
}

.panel {
  background-color: #7fa5eac7;
  color: #ffffff;
  background-image: url("/assets/images/overlay.png");
  background-size: 128px 128px, auto;
  padding: 0.5rem;
}

.sub-panel {
  margin: 2rem;
}

.text-align-center {
  text-align: center;
}

.text-align-justify {
  text-align: justify;
}

h1, h2, h3, p {
  margin: 1rem;
}

.btn-rdv {
  display: inline-block;
  margin: 1.5rem auto;
  padding: 0.75rem 1.5rem;
  font-family: "Darker Grotesque", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background-color: #799ddf82;
  border-radius: 5px;
  border: 1px solid #ffffff;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.btn-rdv:hover {
  background-color: #799ddf;
}

.therapist-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 1.5rem auto;
  box-shadow: 0 0.5rem 1.5rem rgba(46, 43, 55, 0.25);
}

a {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:visited {
  color: #ffffff;
}

a:hover,
a:focus {
  color: #e6ecf8;
  text-decoration-color: #e6ecf8;
}

a:active {
  color: #ffffff;
}

@media (max-width: 576px) {
  body {
    width: 100%;
    margin: 0;
    box-shadow: none;
    min-height: 100vh;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  body {
    width: 80%;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  body {
    width: 70%;
  }
}

@media (min-width: 1201px) {
  body {
    width: 50%;
  }
}

.lang-switch {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1000;
}

.lang-switch a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0.3rem 0.8rem rgba(46, 43, 55, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.lang-switch a:hover {
  transform: translateY(-1px);
  background-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0.5rem 1.2rem rgba(46, 43, 55, 0.35);
}

.lang-switch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prise-en-charge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.prise-en-charge-column {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 1.5rem;
}

.prise-en-charge-column h3 {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.prise-en-charge-column ul {
  margin-left: -1rem;
}

.prise-en-charge-column li {
  margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
  .prise-en-charge-grid {
    grid-template-columns: 1fr;
  }
}

.footer {
  padding-top: 0;
  padding-bottom: 1.2rem;
}

.footer-title {
  margin: 0 0.3rem 0.3rem 0.3rem;
  font-size: 1.1rem;
}

.footer-contact {
  margin: 0;
  font-size: 1rem;
}

.footer a {
  white-space: nowrap;
}

@media (max-width: 576px) {
  .footer-contact a {
    display: inline-block;
    margin: 0.2rem 0;
  }
}