@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=ABeeZee&family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-sizing: border-box;
  width: 100%;
}
body > * {
  box-sizing: border-box;
}

main {
  flex: 1 0 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.banniere {
  position: relative;
  width: 100%;
  min-height: 70vh;
  max-height: 800px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #9286EA;
  background-image: url("../images/banniere_accueil-d5E-pdf.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.banniere img {
  display: none;
}
.banniere .banniere-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.banniere .banniere-text h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.5rem, 8vw, 5.3125rem) !important;
  font-family: "Lobster Two", sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.8s ease-in-out;
}
.banniere .banniere-text::after {
  content: "";
  width: 100%;
  max-width: 471px;
  height: 3px;
  background-color: #ffffff;
  margin-top: 0;
  display: block;
}

@media (max-width: 768px) {
  .banniere {
    min-height: 55vh;
    max-height: 600px;
  }
  .banniere .banniere-text {
    padding: 0.75rem;
  }
  .banniere .banniere-text h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    letter-spacing: 0.1em;
  }
  .banniere .banniere-text::after {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .banniere {
    min-height: 45vh;
    max-height: 500px;
  }
  .banniere .banniere-text {
    padding: 0.5rem;
  }
  .banniere .banniere-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    letter-spacing: 0.08em;
  }
  .banniere .banniere-text::after {
    max-width: 250px;
    height: 2px;
  }
}
@media (min-width: 1200px) {
  .banniere {
    min-height: 75vh;
    max-height: 850px;
  }
}
.informations {
  background-color: #2E2D3F;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 4rem 3rem;
  width: 100%;
  max-width: 100%;
  margin: 0;
  min-height: 630px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.informations .informations-image {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 10;
  width: 368px;
  height: 479px;
}
.informations .informations-image img {
  width: 368px;
  height: 479px;
  display: block;
  object-fit: cover;
}
.informations .informations-content {
  flex: 1;
  padding: 0 1rem;
  color: #ffffff;
  z-index: 10;
  max-width: 657px;
}
.informations .informations-content h2 {
  font-family: "Lobster Two", sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  font-weight: 400 !important;
  margin: 0 0 1.5rem 0;
  color: #ffffff;
  text-align: left;
  position: relative;
  padding-bottom: 1.5rem;
  letter-spacing: 0.15em !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.informations .informations-content h2::after {
  content: "";
  width: 809px;
  max-width: 100%;
  height: 3px;
  background-color: #ffffff;
  display: block;
}
.informations .informations-content p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
  text-align: left;
  font-weight: 400;
}

@media (max-width: 768px) {
  .informations {
    flex-direction: column;
    gap: 2rem;
    padding: 3rem 1.5rem;
    min-height: auto;
  }
  .informations .informations-image {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .informations .informations-image img {
    width: 100%;
    max-width: 368px;
    height: auto;
    aspect-ratio: 368/479;
  }
  .informations .informations-content {
    flex: 1 1 100%;
    padding: 0;
    text-align: center;
    max-width: 100%;
  }
  .informations .informations-content h2 {
    text-align: center;
    align-items: center;
  }
  .informations .informations-content h2::after {
    width: 100%;
    max-width: 500px;
  }
  .informations .informations-content p {
    text-align: center;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .informations {
    padding: 2rem 1rem;
    gap: 1.5rem;
  }
  .informations .informations-image img {
    max-width: 280px;
  }
  .informations .informations-content h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .informations .informations-content h2::after {
    max-width: 300px;
  }
  .informations .informations-content p {
    font-size: clamp(0.9rem, 2vw, 1rem);
  }
}
.what-we-offer {
  background-color: #ffffff;
  padding: 4rem 2rem;
}
.what-we-offer .section-title {
  color: #2E2D3F;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  font-family: "Lobster Two", sans-serif !important;
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
  font-weight: 400 !important;
  letter-spacing: 0.15em !important;
}
.what-we-offer .section-title::after {
  content: "";
  width: 809px;
  max-width: 90%;
  height: 3px;
  background-color: #2E2D3F;
  display: block;
}
.what-we-offer .offer-item {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.what-we-offer .offer-item:last-of-type {
  margin-bottom: 0;
}
.what-we-offer .offer-item .offer-content {
  flex: 1.5;
}
.what-we-offer .offer-item .offer-content h3 {
  color: #2E2D3F;
  font-family: "Lobster Two", sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2rem) !important;
  font-weight: 400 !important;
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.what-we-offer .offer-item .offer-content h3::after {
  content: "";
  width: 809px;
  max-width: 100%;
  height: 3px;
  background-color: #2E2D3F;
  display: block;
}
.what-we-offer .offer-item .offer-content p {
  color: #000000;
  font-family: "Poppins", sans-serif;
  line-height: 1.8;
  font-size: clamp(0.9rem, 1.3vw, 1.0625rem);
  margin: 0;
  font-weight: 400;
}
.what-we-offer .offer-item .offer-image {
  flex: 0.7;
  display: flex;
  justify-content: center;
}
.what-we-offer .offer-item .offer-image img {
  max-width: 100%;
  height: auto;
  display: block;
}
.what-we-offer .separator {
  height: 2px;
  background-color: #6272a4;
  max-width: 500px;
  margin: 4rem auto;
  position: relative;
}
.what-we-offer .separator::before, .what-we-offer .separator::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #8A2BE2;
  border-radius: 50%;
}
.what-we-offer .separator::before {
  left: 0;
}
.what-we-offer .separator::after {
  right: 0;
}
.what-we-offer img[alt=Séparateur] {
  display: block;
  margin: 4rem auto !important;
}
@media (max-width: 768px) {
  .what-we-offer {
    padding: 3rem 1.5rem;
  }
  .what-we-offer .offer-item {
    flex-direction: column !important;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .what-we-offer .offer-item .offer-content {
    text-align: center !important;
  }
  .what-we-offer .offer-item .offer-content h3 {
    font-size: 1.3rem;
  }
  .what-we-offer .offer-item .offer-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .what-we-offer .offer-item .offer-content p {
    font-size: 0.9rem;
  }
  .what-we-offer .offer-item .offer-image {
    flex: 1;
  }
  .what-we-offer .separator {
    margin: 3rem auto;
  }
}
@media (max-width: 480px) {
  .what-we-offer {
    padding: 2rem 1rem;
  }
  .what-we-offer .offer-item {
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  .what-we-offer .offer-item .offer-content h3 {
    font-size: 1.3rem;
  }
  .what-we-offer .offer-item .offer-content p {
    font-size: 0.9rem;
  }
  .what-we-offer .separator {
    margin: 2.5rem auto;
  }
}

.oracle-section {
  background-color: #2E2D3F;
  padding: 4rem 2rem;
  text-align: center;
  color: #ffffff;
}
.oracle-section .section-title {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.oracle-section .section-title::after {
  content: "";
  width: 808px;
  max-width: 90%;
  height: 3px;
  background-color: #ffffff;
  display: block;
}
.oracle-section .oracle-card-container {
  position: relative;
  width: 335px;
  height: 498px;
  margin: 0 auto 2rem auto;
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  outline: 4px solid #ffffff;
  outline-offset: 0;
}
.oracle-section .oracle-card-container:hover {
  transform: scale(1.05);
}
.oracle-section .oracle-card-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oracle-section .oracle-card-container .oracle-question {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6rem;
  font-weight: bold;
  color: #8A2BE2;
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .oracle-section {
    padding: 3rem 1.5rem;
  }
  .oracle-section .section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    margin-bottom: 2rem;
  }
  .oracle-section .section-title::after {
    width: 100%;
    max-width: 500px;
  }
  .oracle-section .oracle-card-container {
    width: 280px;
    height: 420px;
    outline-width: 3px;
  }
}
@media (max-width: 480px) {
  .oracle-section {
    padding: 2rem 1rem;
  }
  .oracle-section .section-title {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-bottom: 1.5rem;
  }
  .oracle-section .section-title::after {
    width: 100%;
    max-width: 300px;
  }
  .oracle-section .oracle-card-container {
    width: 250px;
    height: 375px;
    outline-width: 2px;
  }
}

.newsletter-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}
.newsletter-section .section-title {
  color: #2E2D3F;
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
}
.newsletter-section .section-title::after {
  content: "";
  width: 344px;
  max-width: 90%;
  height: 3px;
  background-color: #2E2D3F;
  display: block;
}
.newsletter-section p {
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.95rem, 1.3vw, 1.0625rem);
  max-width: 896px;
  margin: 0 auto 3rem auto;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
}
.newsletter-section .articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
.newsletter-section .articles-grid .article-card {
  background-color: #2E2D3F;
  border-radius: 0;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 438px;
  max-width: 100%;
  min-height: 629px;
  height: auto;
}
.newsletter-section .articles-grid .article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.newsletter-section .articles-grid .article-card img {
  width: 100%;
  height: 468px;
  object-fit: cover;
  flex-shrink: 0;
}
.newsletter-section .articles-grid .article-card div {
  padding: 1rem 1.5rem;
  background-color: #2E2D3F;
  color: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 0.5rem;
  min-height: 0;
  overflow: visible;
}
.newsletter-section .articles-grid .article-card div h3 {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5625rem);
  font-weight: 700;
  margin: 0;
  color: #ffffff;
  text-align: left;
}
.newsletter-section .articles-grid .article-card div p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.8rem, 1.1vw, 0.8125rem);
  line-height: 1.6;
  margin: 0;
  color: #ffffff;
  flex: 1;
  text-align: left;
  font-weight: 400;
}
.newsletter-section .articles-grid .article-card div a {
  display: flex;
  color: #ffffff;
  text-decoration: none;
  justify-content: flex-end;
  font-family: "Inter", sans-serif;
  font-size: clamp(0.85rem, 1.2vw, 0.9375rem);
  font-weight: 700;
  margin-top: auto;
  transition: color 0.3s ease;
}
.newsletter-section .articles-grid .article-card div a:hover {
  color: rgba(255, 255, 255, 0.8);
}
.newsletter-section .btn-more-articles-wrapper {
  text-align: center;
  margin-top: 3rem;
}
.newsletter-section .btn-more-articles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: #2E2D3F;
  text-decoration: none;
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  position: relative;
  transition: color 0.3s ease;
  margin: 0 auto;
}
.newsletter-section .btn-more-articles::after {
  content: "";
  width: 344px;
  max-width: 90%;
  height: 3px;
  background-color: #2E2D3F;
  display: block;
}
.newsletter-section .btn-more-articles:hover {
  color: rgb(24.2777777778, 23.75, 33.25);
}
.newsletter-section .btn-more-articles:hover::after {
  background-color: rgb(24.2777777778, 23.75, 33.25);
}
@media (max-width: 992px) {
  .newsletter-section .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .newsletter-section .articles-grid .article-card {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 500px;
  }
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 3rem 1.5rem;
  }
  .newsletter-section .section-title {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  .newsletter-section .section-title::after {
    max-width: 300px;
  }
  .newsletter-section p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 2rem;
  }
  .newsletter-section .articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .newsletter-section .articles-grid .article-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 450px;
  }
  .newsletter-section .articles-grid .article-card img {
    height: 250px;
  }
  .newsletter-section .articles-grid .article-card div {
    padding: 1rem;
  }
  .newsletter-section .articles-grid .article-card div h3 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
  }
  .newsletter-section .articles-grid .article-card div p {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  }
  .newsletter-section .btn-more-articles {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-top: 2rem;
  }
  .newsletter-section .btn-more-articles::after {
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .newsletter-section {
    padding: 2rem 1rem;
  }
  .newsletter-section .section-title {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
  }
  .newsletter-section .section-title::after {
    max-width: 200px;
  }
  .newsletter-section p {
    font-size: clamp(0.85rem, 2vw, 0.9rem);
    margin-bottom: 1.5rem;
  }
  .newsletter-section .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .newsletter-section .articles-grid .article-card {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
  .newsletter-section .articles-grid .article-card img {
    height: 200px;
  }
  .newsletter-section .articles-grid .article-card div {
    padding: 0.8rem;
  }
  .newsletter-section .btn-more-articles {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-top: 1.5rem;
  }
  .newsletter-section .btn-more-articles::after {
    max-width: 180px;
  }
}

nav {
  background-color: #2E2D3F;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transition: padding all 0.3s ease;
  z-index: 1000;
}
nav > ul:first-of-type {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  max-width: 100%;
  flex-shrink: 0;
}
nav > ul:first-of-type li {
  margin: 0;
}
nav > ul:first-of-type li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
nav > ul:first-of-type li a img {
  height: 10vh;
  width: auto;
  max-width: 100%;
  transition: all 0.3s ease;
}
nav > ul:first-of-type li a img:hover {
  transform: scale(1.05);
}
nav > ul:last-of-type {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  flex-wrap: wrap;
  position: relative;
}
nav > ul:last-of-type li {
  margin: 0;
}
nav > ul:last-of-type li a {
  color: white;
  text-decoration: none;
  font-family: "Lobster Two", sans-serif !important;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
nav > ul:last-of-type li a:not(:has(img)):hover {
  color: #007bff;
  background-color: rgba(0, 123, 255, 0.1);
}
nav > ul:last-of-type li a:not(:has(img))::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #007bff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav > ul:last-of-type li a:not(:has(img)):hover::after {
  width: 80%;
}
nav > ul:last-of-type li a img {
  height: 24px;
  width: auto;
  transition: all 0.3s ease;
  opacity: 0.8;
}
nav > ul:last-of-type li a img:hover {
  opacity: 1;
  transform: scale(1.1);
}
nav > ul:last-of-type li.dropdown {
  position: relative;
  z-index: 1002;
}
nav > ul:last-of-type li.dropdown .dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
}
nav > ul:last-of-type li.dropdown .dropdown-toggle img {
  height: 24px;
  width: auto;
  transition: all 0.3s ease;
  opacity: 0.8;
}
nav > ul:last-of-type li.dropdown .dropdown-toggle:hover img, nav > ul:last-of-type li.dropdown .dropdown-toggle[aria-expanded=true] img {
  opacity: 1;
  transform: scale(1.1);
}
nav > ul:last-of-type li.dropdown .dropdown-menu {
  position: fixed;
  background-color: #2c3e50;
  border: 1px solid #34495e;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: 10000;
  will-change: opacity, transform;
}
nav > ul:last-of-type li.dropdown .dropdown-menu li {
  margin: 0;
}
nav > ul:last-of-type li.dropdown .dropdown-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  text-decoration: none;
  font-family: "Lobster Two", sans-serif !important;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0;
}
nav > ul:last-of-type li.dropdown .dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
nav > ul:last-of-type li.dropdown .dropdown-menu li a::after {
  content: "›";
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.7;
}
nav > ul:last-of-type li.dropdown:hover .dropdown-menu, nav > ul:last-of-type li.dropdown:focus-within .dropdown-menu,
nav > ul:last-of-type li.dropdown .dropdown-toggle[aria-expanded=true] + .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  nav {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 1rem;
  }
  nav > ul:first-of-type {
    flex: 0 0 auto;
    margin: 0;
  }
  nav > ul:first-of-type img {
    height: 40px !important;
  }
  nav > ul:last-of-type {
    flex: 1 1 auto;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
    min-width: 0;
  }
  nav > ul:last-of-type li {
    flex: 0 0 auto;
  }
  nav > ul:last-of-type li a {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    padding: 0.4rem 0.75rem;
    white-space: nowrap;
  }
  nav > ul:last-of-type .dropdown .dropdown-menu {
    min-width: 180px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  nav {
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.75rem;
  }
  nav > ul:first-of-type {
    width: 100%;
  }
  nav > ul:last-of-type {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    align-items: stretch;
  }
  nav > ul:last-of-type li {
    width: 100%;
  }
  nav > ul:last-of-type li a {
    justify-content: center;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  nav > ul:last-of-type li.dropdown .dropdown-toggle {
    justify-content: center;
    padding: 0.75rem 1rem;
  }
  nav > ul:last-of-type li.dropdown .dropdown-menu {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    min-width: 100%;
    margin-top: 0.5rem;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
  }
  nav > ul:last-of-type li.dropdown .dropdown-menu.show {
    display: block;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  nav {
    padding: 1rem 1.5rem;
  }
  nav > ul:last-of-type {
    gap: 1.5rem;
  }
  nav > ul:last-of-type li a {
    font-size: 0.95rem;
    padding: 0.45rem 0.9rem;
  }
}
footer {
  background-color: #2E2D3F !important;
  color: #ffffff;
  padding: 1rem 2rem !important;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem;
  min-height: 180px;
  position: relative;
}
footer #FAQ {
  color: #9286EA !important;
  text-decoration: none !important;
  font-family: "ABeeZee", sans-serif !important;
  font-size: clamp(0.95rem, 1.2vw, 1.1875rem) !important;
  font-weight: 400;
  transition: all 0.3s ease;
}
footer #FAQ:hover {
  color: #7a6fc8 !important;
  text-decoration: none !important;
}
footer .footer-part-1,
footer .footer-part-2,
footer .footer-part-3 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-part-1 h3,
footer .footer-part-2 h3,
footer .footer-part-3 h3 {
  color: #ffffff !important;
  font-family: "ABeeZee", sans-serif !important;
  font-size: clamp(1.1rem, 1.8vw, 1.5625rem) !important;
  font-weight: 400 !important;
  margin: 0 0 0.5rem 0 !important;
  padding: 0 !important;
  position: relative;
  white-space: nowrap;
}
footer .footer-part-1 > div,
footer .footer-part-2 > div,
footer .footer-part-3 > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .footer-part-1 > div a,
footer .footer-part-2 > div a,
footer .footer-part-3 > div a {
  color: #ffffff !important;
  font-family: "ABeeZee", sans-serif !important;
  text-decoration: none !important;
  font-size: clamp(0.875rem, 1.1vw, 0.9375rem) !important;
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  width: fit-content;
  white-space: nowrap;
  line-height: 1.3;
}
footer .footer-part-1 > div a:hover,
footer .footer-part-2 > div a:hover,
footer .footer-part-3 > div a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
}
footer .footer-part-1 > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  align-items: start;
  max-width: 400px;
}
footer .footer-part-1 img {
  width: 30px !important;
  height: 30px !important;
  transition: all 0.3s ease;
  cursor: pointer;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
footer .footer-part-1 img:hover {
  transform: translateY(-2px) scale(1.1);
  filter: brightness(0) invert(1) opacity(0.8);
}
footer .footer-part-2 > div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
footer .footer-part-3 > div a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-family: "ABeeZee", sans-serif !important;
  font-size: clamp(0.95rem, 1.2vw, 1.1875rem) !important;
  font-weight: 400;
  color: #ffffff !important;
  text-decoration: none !important;
}
footer .footer-part-3 > div a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  footer {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: clamp(1.5rem, 4vw, 2rem);
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem) !important;
    min-height: auto;
  }
  footer .footer-part-1 h3,
  footer .footer-part-2 h3,
  footer .footer-part-3 h3 {
    font-size: clamp(1rem, 2.5vw, 1.1rem) !important;
  }
  footer .footer-part-1 > div a,
  footer .footer-part-2 > div a,
  footer .footer-part-3 > div a {
    font-size: clamp(0.85rem, 2vw, 0.9rem) !important;
  }
  footer .footer-part-1 > div {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  footer {
    grid-template-columns: 1fr !important;
    gap: clamp(1rem, 3vw, 1.5rem);
    padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1rem) !important;
  }
  footer .footer-part-1 h3,
  footer .footer-part-2 h3,
  footer .footer-part-3 h3 {
    font-size: clamp(0.95rem, 2.5vw, 1rem) !important;
  }
  footer .footer-part-1 > div,
  footer .footer-part-2 > div,
  footer .footer-part-3 > div {
    gap: 0.5rem;
  }
  footer .footer-part-1 > div a,
  footer .footer-part-2 > div a,
  footer .footer-part-3 > div a {
    font-size: clamp(0.8rem, 2vw, 0.85rem) !important;
  }
  footer .footer-part-1 > div {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  footer {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem;
    padding: 2.5rem 2rem 1.5rem !important;
    min-height: auto;
  }
}
.news-page .title-main {
  font-family: "CRONDE", serif;
  font-size: 4rem;
  color: #9286EA;
  text-align: center;
  margin: 4rem 0 2rem;
}
@media (max-width: 768px) {
  .news-page .title-main {
    font-size: 2.5rem;
  }
}
.news-page .intro-section {
  max-width: 1048px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  color: #2E2D3F;
  line-height: 1.6;
}
.news-page .intro-section .newsletter-link {
  font-weight: bold;
  display: block;
  margin-top: 2rem;
  color: #2E2D3F;
  text-decoration: none;
}
.news-page .intro-section .newsletter-link:hover {
  text-decoration: underline;
}
.news-page .astrological-section {
  background-color: #2E2D3F;
  color: #f8f8f2;
  padding: 5rem 0;
  margin-top: 5rem;
  text-align: center;
}
.news-page .astrological-section .title-secondary {
  color: #9286EA;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  margin-bottom: 3rem;
}
.news-page .astrological-section .moon-main-img {
  width: 30%;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.news-page .astrological-section .moon-phase-text {
  font-size: 2.2rem;
  margin: 2rem 0;
}
.news-page .astrological-section .moon-phase-text span {
  font-weight: bold;
}
.news-page .astrological-section .info-card-white {
  background-color: #ffffff !important;
  border-radius: 30px;
  box-shadow: 20px 20px 0 0 #9286EA;
  border: none;
  position: relative;
  color: #44475a;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem;
  text-align: left;
  font-size: 1.5rem;
  width: 90%;
}
.news-page .astrological-section .info-card-white .highlight {
  color: #9286EA;
  font-weight: bold;
}
.news-page .horoscope-section {
  padding: 5rem 0;
  text-align: center;
}
.news-page .horoscope-section .zodiac-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin: 4rem 0;
}
@media (max-width: 992px) {
  .news-page .horoscope-section .zodiac-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .news-page .horoscope-section .zodiac-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-page .horoscope-section .zodiac-grid img {
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.news-page .horoscope-section .zodiac-grid img:hover {
  transform: scale(1.1);
}
.news-page .horoscope-section .info-card-dark {
  background-color: #2E2D3F !important;
  border-radius: 30px;
  box-shadow: 20px 20px 0 0 #9286EA;
  border: none;
  position: relative;
  color: #f8f8f2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem;
  text-align: left;
  font-size: 1.5rem;
  width: 90%;
}
.news-page .articles-grid-section {
  padding: 5rem 0;
}
.news-page .articles-grid-section .articles-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .news-page .articles-grid-section .articles-container {
    grid-template-columns: 1fr;
  }
}
.news-page .articles-grid-section .article-card {
  background: #2E2D3F;
  color: #f8f8f2;
  border-radius: 8px;
  overflow: hidden;
}
.news-page .articles-grid-section .article-card .img-container {
  height: 460px;
  background: #D9D9D9;
}
.news-page .articles-grid-section .article-card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-page .articles-grid-section .article-card .content {
  padding: 1.5rem;
}
.news-page .articles-grid-section .article-card .content h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.news-page .articles-grid-section .article-card .content p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 1rem 0;
}
.news-page .articles-grid-section .article-card .content .read-more {
  display: block;
  text-align: right;
  color: #f8f8f2;
  font-weight: bold;
  text-decoration: none;
}
.news-page .articles-grid-section .article-card .content .read-more:hover {
  text-decoration: underline;
}
.news-page .btn-cta-more {
  display: block;
  width: fit-content;
  margin: 4rem auto;
  background-color: #BA68BC;
  color: #f8f8f2;
  padding: 1.2rem 3rem;
  border-radius: 30px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.news-page .btn-cta-more:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

/* =========================
   VARIABLES
========================= */
* {
  box-sizing: border-box;
}

.reservation-page {
  min-height: 100vh;
  background: #9286EA;
  padding: 30px 0 60px;
}

.reservation-container {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

/* =========================
   TITRE
========================= */
.reservation-hero {
  text-align: center;
  margin: 0 0 28px;
}

.reservation-title {
  font-family: CRONDE, serif;
  font-size: clamp(42px, 4.8vw, 85px);
  font-weight: 400;
  color: #ffffff;
  margin: 10px 0 14px;
}

.reservation-title-line {
  width: min(820px, 100%);
  height: 0;
  margin: 0 auto;
  outline: 3px solid #ffffff;
  outline-offset: -1.5px;
}

/* =========================
   SECTIONS / LABELS
========================= */
.reservation-section {
  margin-bottom: 26px;
}

.section-label {
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 10px;
}

/* =========================
   CARD BASE
========================= */
.card {
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding: 26px;
}

/* =========================
   INPUTS
========================= */
.input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.input-group {
  display: grid;
  gap: 10px;
}
.input-group label {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 1px;
  color: #2E2D3F;
  opacity: 0.7;
}
.input-group input {
  height: 60px;
  border-radius: 5px;
  border: 0;
  outline: 4px solid #2E2D3F;
  outline-offset: -4px;
  padding: 0 16px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #2E2D3F;
}
.input-group input::placeholder {
  color: #9286EA;
  opacity: 0.7;
  font-weight: 700;
}

.full-width {
  grid-column: 1/-1;
}

/* =========================
   CALENDRIER
========================= */
.card-calendar {
  padding: 22px;
  overflow: hidden; /* évite les débordements */
}

/* ✅ HEADER aligné comme la maquette */
.calendar-top {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 12px;
}

.month-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.current-month {
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: 1.6px;
  color: #BA68BC;
}

.month-controls {
  display: flex;
  gap: 10px;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #2E2D3F;
  background: #ffffff;
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}
.icon-btn:active {
  transform: scale(0.98);
}

/* ✅ légende centrée */
.legend {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.legend-item span:last-child {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: rgba(46, 45, 63, 0.65);
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.legend-box {
  width: 40px;
  height: 37px;
  border-radius: 11px;
}
.legend-box.is-unavailable {
  background: #C8D1F4;
}
.legend-box.is-selected {
  background: #BA68BC;
}

.days-header {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.days-header div {
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: 18px;
  color: rgba(46, 45, 63, 0.65);
}

.calendar-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* ✅ IMPORTANT : les numéros doivent être visibles + centrés */
.day-btn {
  height: 72px;
  border: 0;
  border-radius: 21px;
  background: #C8D1F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  color: #2E2D3F;
  cursor: pointer;
}
.day-btn.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
}
.day-btn.is-selected {
  background: #BA68BC;
  color: #ffffff;
}
.day-btn:active {
  transform: scale(0.98);
}

/* =========================
   CRENEAUX HORAIRES
========================= */
.slots.is-hidden {
  display: none;
}

.slots {
  margin-top: 18px;
}

.slots-card {
  background: #fff;
  border: 1px solid #111;
  border-radius: 30px;
  padding: clamp(16px, 2.5vw, 28px);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.slots-title {
  margin: 0 0 18px;
  color: #BA68BC;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: clamp(18px, 2vw, 32px);
  letter-spacing: 1px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(80px, 1fr));
  gap: 12px;
}

.slot-btn {
  height: 60px;
  border-radius: 21px;
  border: 0;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 20px;
  cursor: pointer;
  background: #C8D1F4;
  color: #2E2D3F;
  transition: transform 0.08s ease, opacity 0.2s ease;
}

.slot-btn:hover {
  transform: translateY(-1px);
}

.slot-btn.is-unavailable {
  opacity: 0.55;
  cursor: not-allowed;
}

.slot-btn.is-selected {
  background: #BA68BC;
  color: #ffffff;
  opacity: 1;
}

.slots-legend {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.slots-bottom {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.availability {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.availability-label {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: #2E2D3F;
  opacity: 0.75;
}

.availability-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  font-family: Poppins, sans-serif;
  font-weight: 800;
  font-size: 14px;
  opacity: 0.75;
  color: #2E2D3F;
}

.time-select {
  height: 40px;
  min-width: 115px;
  border-radius: 11px;
  border: 1px solid #2E2D3F;
  background: #ffffff;
  font-family: Poppins, sans-serif;
  font-weight: 800;
  padding: 0 10px;
}

.btn-validate {
  min-width: 160px;
  height: 60px;
  border-radius: 30px;
  border: 0;
  background: #BA68BC;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-validate:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* =========================
   SUJET
========================= */
.subject-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.custom-check {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #2E2D3F;
}
.custom-check input {
  display: none;
}

.checkmark {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #ffffff;
  outline: 4px solid #2E2D3F;
  outline-offset: -4px;
  position: relative;
}

.custom-check input:checked + .checkmark {
  background: #2E2D3F;
}

.subject-other {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.subject-other-input {
  height: 60px;
  border-radius: 5px;
  border: 0;
  outline: 4px solid #2E2D3F;
  outline-offset: -4px;
  padding: 0 16px;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #2E2D3F;
}
.subject-other-input::placeholder {
  color: #9286EA;
  opacity: 0.7;
}

/* =========================
   BOUTON CONFIRM
========================= */
.btn-confirm {
  margin-top: 26px;
  width: min(460px, 100%);
  height: 89px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border: 0;
  border-radius: 30px;
  background: #BA68BC;
  color: #ffffff;
  font-family: Poppins, sans-serif;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-confirm:active {
  transform: scale(0.99);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1000px) {
  .input-grid {
    grid-template-columns: 1fr;
  }
  .subject-grid {
    grid-template-columns: 1fr;
  }
  .calendar-top {
    grid-template-columns: 1fr;
  }
  .legend {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .slots-grid {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }
}
@media (max-width: 720px) {
  .days-header div {
    font-size: 14px;
  }
  .day-btn {
    height: 60px;
    font-size: 18px;
  }
  .slots-grid {
    grid-template-columns: repeat(3, minmax(90px, 1fr));
  }
}
@media (max-width: 520px) {
  .card {
    padding: 18px;
    border-radius: 20px;
  }
  .slots-card {
    padding: 18px;
    border-radius: 20px;
  }
  .slots-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
.services-page {
  background: #2E2D3F;
  color: #fff;
  padding-bottom: 0;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.services-top-band {
  height: 500px;
  background: #9286EA;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-hero {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.services-title {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  margin: 0 auto;
  width: fit-content;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.services-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 608px;
  max-width: 100%;
  background: #fff;
  margin: 10px auto 0;
}

.services-intro-section {
  background-color: #2E2D3F;
  padding: 4rem 3rem;
  position: relative;
  z-index: 10;
  width: 100%;
}

.services-intro-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.services-intro {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  width: 715px;
  max-width: 100%;
  margin: 0;
  color: #fff;
  flex: 1;
}

.services-intro-visual {
  width: 438px;
  height: 358px;
  background: #d9d9d9;
  flex-shrink: 0;
  overflow: hidden;
}
.services-intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-section {
  width: 1200px;
  margin: 0 auto;
  padding: 80px 0 0;
}

.section-divider {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.divider-img {
  width: 612px;
  height: auto;
  display: block;
}

.section-title {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin: 0;
  color: #fff;
}

.section-desc {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 400;
  line-height: 1.4;
  margin: 0 auto 60px;
  max-width: 895px;
  color: #fff;
}

.center {
  text-align: center;
}

.sub-title {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin: 60px 0 30px;
  text-align: left;
  color: #fff;
}

.practitioners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding-bottom: 40px;
}

/* --------- Carte praticien --------- */
.practitioner-card {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 34px;
  align-items: start;
}

.card-media {
  width: 285px;
  height: 360px;
  background: #d9d9d9;
  overflow: hidden;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  max-width: 520px;
}

.card-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.card-role {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 2.55px;
  margin-bottom: 20px;
  color: #fff;
}

.card-text {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 2.55px;
  margin: 0 0 20px;
  color: #fff;
}

.card-quote {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 2.55px;
  color: #9286EA;
  margin: 0 0 24px;
}

.card-rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.stars {
  display: flex;
  gap: 10px;
  align-items: center;
}
.stars svg {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.star {
  width: 30px;
  height: 30px;
  background: #BA68BC;
  display: inline-block;
}
.star.half {
  clip-path: inset(0 50% 0 0);
}

.score {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.0625rem);
  font-weight: 400;
  letter-spacing: 2.55px;
  color: #fff;
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Bouton "Accéder aux témoignages" (outline violet) */
.btn-outline-testimonials {
  min-width: 256px;
  min-height: 56px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.75px;
  border-radius: 16px;
  outline: 3px solid #9286EA;
  outline-offset: -3px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-outline-testimonials:hover {
  opacity: 0.9;
}

/* Bouton "Réserver avec cette personne" (outline rose) */
.btn-outline-reserve {
  min-width: 288px;
  min-height: 56px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: 700;
  letter-spacing: 0.75px;
  border-radius: 16px;
  outline: 3px solid #BA68BC;
  outline-offset: -3px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.btn-outline-reserve:hover {
  opacity: 0.9;
}

/* --------- Bandeau blanc rassurance --------- */
.services-reassurance {
  background: #fff;
  margin-top: 60px;
  padding: 30px 0 40px;
}

.reassurance-container {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  align-items: start;
}

.reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.reassurance-item p {
  margin: 16px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.75px;
  line-height: 1.35;
  color: #1e293b;
}

.reassurance-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
}

.contact-page {
  background-color: #9286EA;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
}
.contact-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-page h1 {
  font-family: "Lobster Two", sans-serif;
  font-size: 85px;
  color: white;
  text-align: center;
  margin-bottom: 10px;
  border-bottom: 3px solid white;
  display: table;
  margin: 0 auto 40px;
  padding-bottom: 10px;
}
@media (max-width: 992px) {
  .contact-page h1 {
    font-size: 50px;
  }
}
.contact-page .intro-text {
  color: white;
  font-size: 25px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.contact-page .faq-section {
  background: white;
  border-radius: 5px;
  padding: 40px;
  text-align: center;
  margin-bottom: 80px;
}
.contact-page .faq-section p {
  font-size: 25px;
  color: black;
}
.contact-page .faq-section p span {
  color: #BA68BC;
  font-weight: 800;
}
.contact-page .faq-section .btn-faq {
  background-color: #BA68BC;
  color: white;
  border: none;
  padding: 20px 50px;
  border-radius: 30px;
  font-size: 25px;
  font-weight: 800;
  margin-top: 30px;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.contact-page .form-container {
  background: white;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 5px 6px 4px rgba(0, 0, 0, 0.3);
}
.contact-page .form-container form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-page .form-container form .full-width {
  grid-column: span 2;
}
.contact-page .form-container form label {
  display: block;
  color: #2E2D3F;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-page .form-container form input, .contact-page .form-container form textarea {
  width: 100%;
  padding: 15px;
  border: 4px solid #2E2D3F;
  border-radius: 5px;
  font-size: 20px;
  font-family: "Poppins", sans-serif;
  color: #9286EA;
}
.contact-page .form-container form input::placeholder, .contact-page .form-container form textarea::placeholder {
  color: rgba(146, 134, 234, 0.7);
  font-weight: 700;
}
.contact-page .form-container form .btn-submit {
  grid-column: span 2;
  justify-self: center;
  background-color: #BA68BC;
  color: white;
  border: none;
  padding: 20px 100px;
  border-radius: 30px;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .contact-page .form-container form {
    grid-template-columns: 1fr;
  }
  .contact-page .form-container form .full-width, .contact-page .form-container form .btn-submit {
    grid-column: span 1;
  }
}

.auth-page {
  background-color: #9286EA;
  min-height: 100vh;
  padding-bottom: 60px;
}
.auth-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.auth-page .auth-header {
  text-align: center;
  padding: 60px 0 40px;
}
.auth-page .auth-header h1 {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(40px, 8vw, 85px);
  color: white;
  margin-bottom: 10px;
}
.auth-page .auth-header .title-underline {
  width: 541px;
  height: 3px;
  background: white;
  margin: 0 auto;
}
.auth-page .auth-card-container {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.auth-page .auth-card-container .auth-card {
  background: white;
  width: 100%;
  max-width: 742px;
  padding: 50px 60px;
  border-radius: 30px;
  box-shadow: 5px 6px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .auth-page .auth-card-container .auth-card {
    padding: 30px 20px;
  }
}
.auth-page .auth-form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.auth-page .auth-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.auth-page .auth-form .form-group label {
  color: #2E2D3F;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.auth-page .auth-form .form-group input {
  border: 4px solid #2E2D3F;
  border-radius: 5px;
  padding: 15px 20px;
  font-size: 20px;
  color: #9286EA;
}
.auth-page .auth-form .form-group input::placeholder {
  color: rgba(146, 134, 234, 0.7);
  font-weight: 700;
}
.auth-page .auth-form .form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.auth-page .btn-primary {
  background-color: #BA68BC;
  color: white;
  border: none;
  padding: 20px 80px;
  border-radius: 30px;
  font-size: 25px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s;
}
.auth-page .btn-primary:hover {
  transform: scale(1.02);
}
.auth-page .forgot-password {
  color: #2E2D3F;
  text-decoration: none;
  font-size: 20px;
}
.auth-page .forgot-password:hover {
  text-decoration: underline;
}
.auth-page .promo-registration {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
.auth-page .promo-registration .promo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 50px;
  border-radius: 2px;
  width: 100%;
  max-width: 1000px;
  gap: 30px;
}
@media (max-width: 992px) {
  .auth-page .promo-registration .promo-box {
    flex-direction: column;
    text-align: center;
  }
}
.auth-page .promo-registration .promo-box p {
  color: #2E2D3F;
  font-size: 25px;
  font-weight: 700;
  max-width: 600px;
}
.auth-page .promo-registration .promo-box p .discount {
  color: #BA68BC;
}
.auth-page .promo-registration .promo-box p {
  background: white;
}
.auth-page .btn-outline {
  border: 5px solid white;
  background: transparent;
  color: white;
  padding: 20px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 25px;
  font-weight: 800;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}
.auth-page .reassurance-bar {
  background: white;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  border-radius: 2px;
}
@media (max-width: 992px) {
  .auth-page .reassurance-bar {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .auth-page .reassurance-bar {
    grid-template-columns: 1fr;
  }
}
.auth-page .reassurance-bar .reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.auth-page .reassurance-bar .reassurance-item p {
  color: #2E2D3F;
  font-size: 15px;
  line-height: 1.4;
}
.auth-page .reassurance-bar .icon-placeholder {
  width: 60px;
  height: 60px;
  background: black;
}

.inscription-page {
  background: #9286EA;
  padding: 80px 0 0;
  font-family: "Poppins", sans-serif;
  width: 100%;
}

.inscription-hero {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  text-align: center;
}

.inscription-title {
  font-family: "Lobster Two", sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.3125rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0 auto 40px;
  width: fit-content;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.inscription-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 441px;
  max-width: 100%;
  background: #fff;
  margin: 10px auto 0;
}

.inscription-card {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 5px 6px 4px rgba(0, 0, 0, 0.3);
  padding: 66px 74px 20px;
  margin-bottom: 0;
}

.inscription-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* --------- Champs --------- */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-field label,
.form-field legend {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 700;
  color: #2E2D3F;
  margin-bottom: 0;
}
.form-field input[type=text],
.form-field input[type=email],
.form-field input[type=password],
.form-field input[type=number] {
  height: 60px;
  width: 100%;
  border-radius: 5px;
  border: none;
  background: #fff;
  padding: 13px 16px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 700;
  color: #2E2D3F;
  outline: 4px solid #2E2D3F;
  outline-offset: -4px;
  box-sizing: border-box;
  margin-top: 53px;
}
.form-field input[type=text]::placeholder,
.form-field input[type=email]::placeholder,
.form-field input[type=password]::placeholder,
.form-field input[type=number]::placeholder {
  color: #9286EA;
  opacity: 0.7;
  font-weight: 700;
}
.form-field input[type=text]:focus,
.form-field input[type=email]:focus,
.form-field input[type=password]:focus,
.form-field input[type=number]:focus {
  outline: 4px solid #2E2D3F;
  outline-offset: -4px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 50px;
  margin-bottom: 0;
}

.form-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 0;
}
.form-grid-1 .form-field {
  margin-bottom: 0;
}

/* --------- Section photo de profil --------- */
.profil-section {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 60px;
  align-items: start;
  margin-bottom: 0;
}
.profil-section .section-title {
  grid-column: 1;
}
.profil-section .profil-grid {
  grid-column: 1;
}
.profil-section .profil-preview {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  border-radius: 100%;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  font-weight: 700;
  color: #2E2D3F;
  margin: 0 0 0;
}

.profil-grid {
  display: grid;
  grid-template-columns: repeat(4, 104px);
  gap: 38px 34px;
  margin-top: 46px;
}

.profil-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profil-label {
  width: 104px;
  height: 104px;
  border-radius: 9999px !important;
  background: #d9d9d9;
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.profil-label img {
  width: 104px;
  height: 104px;
  border-radius: 9999px !important;
  object-fit: cover;
  display: block;
}

.profil-choice input:checked + .profil-label {
  outline: 4px solid #2E2D3F;
  outline-offset: 0;
}

.profil-preview {
  width: 250px;
  height: 250px;
  background: #d9d9d9;
  border: 3px solid #000;
}

/* --------- Bas : âge + sexe --------- */
.form-bottom {
  margin-top: 0;
}

.form-sexe legend {
  margin-bottom: 0;
}

.sexe-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.sexe-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sexe-choice {
  margin-bottom: 0;
}
.sexe-choice:not(:last-child) {
  margin-bottom: 24px;
}

.sexe-choice label {
  position: relative;
  padding-left: 52px;
  font-size: 25px;
  font-weight: 700;
  color: #2E2D3F;
  cursor: pointer;
}

.sexe-choice label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 4px solid #2E2D3F;
  background: #fff;
}

.sexe-choice input:checked + label::before {
  background: #2E2D3F;
}

/* --------- Newsletter --------- */
.newsletter-field {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 0;
}
.newsletter-field input {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  accent-color: #2E2D3F;
}
.newsletter-field label {
  font-size: 25px;
  font-weight: 700;
  color: #2E2D3F;
  margin: 0;
}

/* --------- Bouton --------- */
.btn-inscription {
  margin: 0 auto 0;
  min-width: 402px;
  min-height: 89px;
  padding: 26px 124px;
  border: none;
  border-radius: 30px;
  background: #BA68BC;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 1.25px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.btn-inscription:hover {
  opacity: 0.9;
}

/* --------- Bandeau blanc rassurance --------- */
.inscription-reassurance {
  background: #fff;
  margin-top: 0;
  padding: 10px 0 40px;
  width: 100%;
}

.inscription-reassurance .reassurance-container {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  align-items: start;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .inscription-reassurance .reassurance-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .inscription-reassurance .reassurance-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.inscription-reassurance .reassurance-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
.inscription-reassurance .reassurance-item p {
  margin: 16px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.75px;
  line-height: 1.35;
  color: #2E2D3F;
}

.inscription-reassurance .reassurance-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}

.histoire {
  background: #fff;
}

/* Container responsive */
.histoire__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HERO */
.histoire__hero {
  padding: 90px 0 40px 0;
  text-align: center;
}

.histoire__title {
  margin: 0;
  font-family: "CRONDE", serif;
  font-weight: 400;
  color: #9286EA;
  font-size: clamp(40px, 6vw, 85px);
}

/* SECTIONS */
.histoire__section {
  padding: clamp(50px, 6vw, 90px) 0;
}
.histoire__section--dark {
  background: #2E2D3F;
}
.histoire__section--light {
  background: #fff;
}

/* TITRES */
.histoire__h2 {
  margin: 0;
  font-family: "CRONDE", serif;
  font-weight: 400;
  letter-spacing: 2.4px;
  color: #2E2D3F;
  font-size: clamp(26px, 3vw, 40px);
}
.histoire__h2--white {
  color: #fff;
}
.histoire__h2--right {
  text-align: right;
}

.histoire__line {
  display: block;
  width: 279px;
  max-width: 60%;
  height: 2px;
  background: #2E2D3F;
  margin: 12px 0 22px 0;
}
.histoire__line--white {
  background: #fff;
}
.histoire__line--center {
  margin-left: auto;
  margin-right: auto;
}
.histoire__line--right {
  margin-left: auto;
  margin-right: 0;
}

/* SPLIT */
.histoire__split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(25px, 4vw, 70px);
  align-items: center;
}
.histoire__split--reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

/* Text */
.histoire__text {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2E2D3F;
}
.histoire__text p {
  margin: 0 0 16px 0;
}
.histoire__text--white {
  color: #fff;
}

/* Media blocks */
.histoire__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo placeholder */
.histoire__logoBox {
  width: min(358px, 100%);
  aspect-ratio: 1/1;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.histoire__logoBox span {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  color: #000;
}

/* Big bubble */
.histoire__bubble {
  width: min(368px, 100%);
  aspect-ratio: 368/481;
  background: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.histoire__bubble span {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #2E2D3F;
}

/* Center titles */
.histoire__centerTitle {
  text-align: center;
  margin-bottom: 35px;
}

/* Cards grids */
.histoire__cards2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(25px, 4vw, 90px);
}

/* Person */
.histoire__person {
  text-align: center;
}

.histoire__personBubble {
  width: min(337px, 100%);
  aspect-ratio: 337/440;
  border-radius: 999px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.histoire__personBubble--purple {
  background: #9286EA;
}
.histoire__personBubble--white {
  background: #fff;
}
.histoire__personBubble span {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #fff;
}
.histoire__personBubble--white span {
  color: #2E2D3F;
}

.histoire__name {
  margin: 22px 0 10px 0;
  font-family: "CRONDE", serif;
  font-weight: 400;
  letter-spacing: 2.1px;
  font-size: clamp(22px, 2.4vw, 35px);
  color: #2E2D3F;
}
.histoire__name--white {
  color: #fff;
}

.histoire__desc {
  margin: 0 auto;
  max-width: 520px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #2E2D3F;
}
.histoire__desc--white {
  color: #fff;
}

/* Right side title block */
.histoire__rightTitle {
  width: 100%;
}

/* Map */
.histoire__map {
  margin-top: 30px;
}

.histoire__mapBox {
  width: 100%;
  height: clamp(320px, 45vw, 718px);
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.histoire__mapBox span {
  font-family: "CRONDE", serif;
  font-size: clamp(22px, 3vw, 35px);
  letter-spacing: 2.1px;
  color: #000;
}

/* =========================
   RESPONSIVE BREAKPOINTS
   ========================= */
@media (max-width: 900px) {
  .histoire__split,
  .histoire__split--reverse {
    grid-template-columns: 1fr;
  }
  .histoire__cards2 {
    grid-template-columns: 1fr;
  }
  .histoire__h2--right {
    text-align: left;
  }
  .histoire__line--right {
    margin-left: 0;
    margin-right: auto;
  }
}
.faq-page {
  padding: 110px 24px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-hero {
  text-align: center;
  margin-bottom: 40px;
}

.faq-title {
  font-family: CRONDE, sans-serif;
  font-size: clamp(40px, 6vw, 85px);
  color: #9286EA;
  margin: 0 0 14px;
}

.faq-subtitle {
  max-width: 820px;
  margin: 0 auto;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2E2D3F;
}

.faq-container {
  display: grid;
  gap: 24px;
}

.faq-block {
  background: #ffffff;
  border: 2px solid rgba(46, 45, 63, 0.1);
  border-radius: 18px;
  padding: 22px;
}

.faq-block-title {
  font-family: CRONDE, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: #2E2D3F;
  margin: 0 0 14px;
}

.faq-item {
  border-top: 1px solid rgba(46, 45, 63, 0.12);
  padding: 14px 0;
}

.faq-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.faq-question {
  cursor: pointer;
  list-style: none;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2E2D3F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #9286EA;
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  content: "–";
}

.faq-answer {
  margin-top: 10px;
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(46, 45, 63, 0.92);
  padding-right: 6px;
}

/* un peu plus aéré sur desktop */
@media (min-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr 1fr;
  }
  .faq-block {
    padding: 26px;
  }
}
/* =========================
   VARIABLES
========================= */
/* =========================
   PAGE
========================= */
.admin-page {
  min-height: 100vh;
  background: #9286EA;
  padding: 120px 0 80px;
}

/* =========================
   HERO
========================= */
.admin-hero {
  width: 1200px;
  margin: 0 auto 60px;
}

.admin-title {
  font-family: CRONDE, serif;
  font-size: 85px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.admin-title-line {
  display: block;
  width: 100%;
  height: 0;
  outline: 3px solid #fff;
}

/* =========================
   SECTIONS
========================= */
.admin-section {
  width: 1200px;
  margin: 0 auto 80px;
}

.admin-section-title {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #BA68BC;
  margin-bottom: 20px;
}
.admin-section-title.muted {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================
   CARD
========================= */
.admin-card {
  background: #fff;
  border-radius: 30px;
  padding: 30px;
}

/* =========================
   TABLE
========================= */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}
.admin-table thead {
  background: #BAC9FF;
}
.admin-table th, .admin-table td {
  padding: 12px;
  border: 1px solid #9286EA;
  text-align: center;
}
.admin-table tbody tr:nth-child(even) {
  background: #F0F2FD;
}

.status {
  font-weight: 700;
}
.status.confirmed {
  color: #BA68BC;
}

/* =========================
   PLANNING
========================= */
.admin-planning-card {
  background: #fff;
}

.planning-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.planning-month {
  font-family: Poppins, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #BA68BC;
}

.planning-legend {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.legend-item {
  width: 40px;
  height: 37px;
  border-radius: 11px;
  display: inline-block;
}
.legend-item.pending {
  background: #C8D1F4;
}
.legend-item.confirmed {
  background: #BA68BC;
}

.planning-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  color: rgba(46, 45, 63, 0.65);
  margin-bottom: 14px;
}

.planning-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.planning-day {
  height: 75px;
  border-radius: 21px;
  background: #C8D1F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2E2D3F;
}
.planning-day.confirmed {
  background: #BA68BC;
  color: #fff;
}
.planning-day.pending {
  background: #C8D1F4;
}

/*# sourceMappingURL=styles.css-5rOOhAk.map */
