
html {
  scroll-behavior: smooth;
}
body {

    margin: 0;
    font-family: "Inter", sans-serif;
    background: #f5f0ff;
    color: #3c2a4d;
    line-height: 1.6;
}
h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    color: #7e57c2;
}

.container {
  max-width: 1050px;
  margin: auto;
  padding: 1rem;
}

.pad3{
  padding-top: 3rem;
}
@media (max-width: 900px) {
  .main-menu-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 2rem;
  }

  .h2-section{
    text-align: center;
  }
}

.rdv-link{
  text-decoration: none;
  color: white;
}

.h2-section{
  margin-bottom: 4rem;
}

.background-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 5% 15%, #ffffffcc, transparent),
    radial-gradient(2.5px 2.5px at 10% 50%, #b3a8ffcc, transparent),
    radial-gradient(5px 5px at 5% 15%, #ffffffdd, transparent),
    radial-gradient(4.5px 4.5px at 10% 50%, #b3a8ffcc, transparent),
    radial-gradient(6px 6px at 15% 25%, #d8b3ffcc, transparent),
    radial-gradient(5.5px 5.5px at 20% 70%, #e5d0ffcc, transparent),
    radial-gradient(4.2px 4.2px at 30% 40%, #c0b3ffdd, transparent),
    radial-gradient(7px 7px at 35% 80%, #f9dbffdd, transparent),
    radial-gradient(4px 4px at 40% 20%, #d1b3ffff, transparent),
    radial-gradient(6px 6px at 50% 10%, #ffffffdd, transparent),
    radial-gradient(5px 5px at 55% 60%, #b3a8ffcc, transparent),
    radial-gradient(7.5px 7.5px at 60% 30%, #d8b3ffcc, transparent),
    radial-gradient(5.5px 5.5px at 65% 75%, #e5d0ffcc, transparent),
    radial-gradient(6px 6px at 70% 40%, #c0b3ffdd, transparent),
    radial-gradient(8px 8px at 80% 50%, #f9dbffdd, transparent),
    radial-gradient(4.5px 4.5px at 85% 85%, #d1b3ffff, transparent),
    radial-gradient(7px 7px at 90% 30%, #ffffffdd, transparent),
    radial-gradient(5px 5px at 95% 60%, #b3a8ffcc, transparent);
  background-repeat: repeat;
  animation: stars-move 80s linear infinite;
}

/** ALERT **/
.alert{
    height: 5rem;
    border-radius: 0.3rem;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}
.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
}
.alert-error {
    background-color: #f2dede;
    color: #a94442;
}
.alert-warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
}
.alert-info {
    background-color: #d9edf7;
    color: #31708f;
}

/* HEADER amélioré avec étoiles et scintillement */
header {
    position: relative;
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #4b367c, #1a1a40);
    color: #e0d7ff;
    box-shadow: 0 8px 25px rgba(100, 80, 160, 0.6);
    overflow: hidden;
    z-index: 0;
}

header .stars-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    background: transparent;
    animation: twinkle 4s ease-in-out infinite;
    box-shadow: 
      5vw 15vh white,
      15vw 25vh #e5d0ffcc,
      85vw 30vh #b3a8ffcc,
      60vw 90vh #ffffffcc;
}

/* étoiles en fond */
header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image: 
    radial-gradient(3.5px 3.5px at 5% 15%, #ffffffdd, transparent),
    radial-gradient(3px 3px at 10% 50%, #b3a8ffcc, transparent),
    radial-gradient(4px 4px at 15% 25%, #d8b3ffcc, transparent),
    radial-gradient(4.2px 4.2px at 20% 70%, #e5d0ffcc, transparent),
    radial-gradient(3px 3px at 30% 40%, #c0b3ffdd, transparent),
    radial-gradient(5px 5px at 35% 80%, #f9dbffdd, transparent),
    radial-gradient(2.8px 2.8px at 40% 20%, #d1b3ffff, transparent),
    radial-gradient(4px 4px at 50% 10%, #ffffffdd, transparent),
    radial-gradient(3.5px 3.5px at 55% 60%, #b3a8ffcc, transparent),
    radial-gradient(5.5px 5.5px at 60% 30%, #d8b3ffcc, transparent),
    radial-gradient(4px 4px at 65% 75%, #e5d0ffcc, transparent),
    radial-gradient(4.5px 4.5px at 70% 40%, #c0b3ffdd, transparent),
    radial-gradient(6px 6px at 80% 50%, #f9dbffdd, transparent),
    radial-gradient(3.5px 3.5px at 85% 85%, #d1b3ffff, transparent),
    radial-gradient(5px 5px at 90% 30%, #ffffffdd, transparent),
    radial-gradient(3.8px 3.8px at 95% 60%, #b3a8ffcc, transparent);
    background-repeat: repeat;
    animation: stars-move 40s linear infinite;
    animation: stars-move 80s linear infinite;
}


@keyframes twinkle {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  50% {
    opacity: 0.5;
    filter: brightness(1.8);
  }
}


@keyframes stars-move {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 1000px 500px;
  }
}


/* scintillements
@keyframes twinkle {
  0%,
  100% {
      opacity: 1;
  }
  50% {
      opacity: 0.7;
  }
} */
/* header::after {
    content: "";
    position: absolute;
    top: 10%;
    left: 15%;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 
    80px 40px 0 0 white,
    150px 90px 0 0 white,
    220px 20px 0 0 white,
    300px 80px 0 0 white,
    350px 30px 0 0 white;
    animation: twinkle 3.5s infinite ease-in-out;
    animation-delay: 0s, 0.7s, 1.4s, 2.1s, 2.8s;
    pointer-events: none;
    z-index: 1;
} */

header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background: transparent;
    box-shadow: 
      20vw 10vh white,
      40vw 30vh #f9dbffdd,
      60vw 20vh #ffffffdd,
      10vw 70vh #b3a8ffcc,
      80vw 50vh #e5d0ffcc,
      30vw 40vh #c0b3ffdd,
      70vw 60vh #d8b3ffcc,
      50vw 15vh #ffffffcc,
      90vw 30vh #f9dbffdd,
      15vw 90vh #b3a8ffcc,
      95vw 10vh #ffffffdd;
    animation: twinkle 5s infinite ease-in-out;
    z-index: 1;
    pointer-events: none;
}

header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
} 
header p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.btn {
    background: #ce93d8;
    color: white;
    border: none;
    padding: 0.8rem 1.6rem;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 2;
    position: relative;
}
.btn:hover {
background: #f06292;
}

.btn-flat-lavande {
  background: #7e57c2; /* violet principal */
  color: #fff;
  border: none;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.btn-flat-lavande:hover {
  background: #6a42b3; /* un peu plus foncé au hover */
}

.btn-flat-lavande-center {
  background: #7e57c2; /* violet principal */
  color: #fff;
  border: none;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 75%;              /* moitié largeur */
  display: block;          /* pour permettre le centrage */
  margin: 0 auto;          /* centre horizontalement */
  text-align: center;      /* centre le texte */
}

.btn-flat-lavande-center:hover {
  background: #6a42b3; /* un peu plus foncé au hover */
}



.btn-gradient {
  background: linear-gradient(135deg, #7e57c2, #ce93d8);
  color: white;
  border: none;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(126, 87, 194, 0.25);
}

.btn-outline {
  background: transparent;
  color: #7e57c2;
  border: 2px solid #7e57c2;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-outline:hover {
  background: #7e57c2;
  color: #fff;
}

/* === VERSION DESKTOP === */
.menu {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.menu ul {
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0e6ff;
  letter-spacing: 0.6px;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.menu a:hover {
  color: #fff0ff;
  text-shadow: 0 0 6px #ffd1ff, 0 0 12px #e0bfff;
}

.menu a.active {
  color: #fff0ff;
  text-shadow: 0 0 8px #d1b3ff, 0 0 16px rgba(209, 179, 255, 0.3);
  position: relative;
}

.menu a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #d1b3ff 0%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 6px #d1b3ff;
}
/* === BURGER BUTTON === */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1001;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #f0e6ff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* === VERSION MOBILE GAUCHE === */
@media screen and (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background-color: rgba(28, 27, 46, 0.9); /* <-- moins opaque ici */
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 2rem 0 2rem;
    transition: left 0.3s ease;
    transform: none;
  }

  .menu ul {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }

  .burger {
    display: flex;
  }

  .menu.open {
    left: 0;
  }

  .burger.open .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger.open .burger-line:nth-child(2) {
    opacity: 0;
  }

  .burger.open .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* section {
    margin: 4rem 0;
} */
.services,
.testimonials {
    display: grid;
    gap: 2rem;
}
.services {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    text-align: center;
}
.service,
.testimonial {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(179, 157, 219, 0.2);
}
footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid #e0d4f7;
    font-size: 0.9rem;
    color: #7b5e9c;
}
.cta {
    text-align: center;
    margin-top: 4rem;
}

/* === Info Section modernisée === */
.info-section {
  margin-top: 3rem;
}

.info-container {
  margin: 0 auto;
  padding: 2rem;
  text-align: left;
}

.info-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #4b2e83;
  margin-bottom: 1.5rem;
  text-align: center;
}

.info-title i {
  margin-right: 0.5rem;
  color: #7e57c2;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 0.6rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #3c2a4d;
}

.info-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}


/* === Prestation page modernisée avec alignement === */
.prestations-section {
  color: #2d2240; 
  font-family: "Inter", sans-serif;
}

.prestations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.prestation-card {
  background: #fff; 
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(90, 68, 136, 0.12);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  max-width: 360px;
  margin: 0 auto;
}

.prestation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(90, 68, 136, 0.18);
}

.prestation-img-link {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.prestation-img-link img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.prestation-card:hover .prestation-img-link img {
  transform: scale(1.05);
}

.price-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  /* background: linear-gradient(135deg, #7e57c2, #ce93d8); */
  background-color: #7e57c2;
  color: white;
  padding: 0.4rem 0.9rem;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(126, 87, 194, 0.3);
}

.prestation-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #4b2e83;
  margin: 0.5rem 0;
  font-size: 1.3rem;
  text-align: center;
}

.prestation-description {
  font-size: 1rem;
  font-weight: 500;
  color: #5e4b87;
  text-align: center;
  margin-bottom: 0.6rem;
}

.prestation-booking-duration {
  font-size: 0.9rem;
  color: #6d5a99;
  text-align: center;
  margin: 0.4rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.prestation-long-description {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 1rem;
  color: #4d3b72;
}

.see-more-link {
  cursor: pointer;
  color: #7e57c2;
  font-weight: 600;
  margin-left: 0.3rem;
}

.prestation-footer {
  margin-top: auto; /* aligne les boutons en bas */
  width: 100%;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #7e57c2, #ce93d8);
  color: white;
  border: none;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6a42b3, #ba7ed0);
  box-shadow: 0 4px 15px rgba(126, 87, 194, 0.3);
}


/* === Booking page === */
.info-notification {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(126, 87, 194, 0.1);
    border: 1px solid rgba(126, 87, 194, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #4b367c;
    font-size: 0.9rem;
    line-height: 1.5;
    backdrop-filter: blur(5px);
    margin-bottom: 2rem;
    /* max-width: 500px; */
}

.notification-icon {
    color: #7e57c2;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
}

.notification-content p {
    margin: 0;
}

.notification-content strong {
    color: #7e57c2;
    font-weight: 600;
}

.prestation-booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  background: #f9f6ff;
  border-radius: 20px;
  padding: 2rem;
  margin: 2rem auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
}

.prestation-booking-image .full-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestation-booking-image-wrapper {
  max-width: 400px; /* Limite la taille, à adapter à ton layout */
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.prestation-booking-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prestation-booking-details {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.prestation-booking-title {
  font-size: 2rem;
  font-weight: 700;
  color: #4b0082;
}

.prestation-booking-price {
  font-size: 1.4rem;
  font-weight: 600;
  color: #7e57c2;
}

.prestation-booking-short-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.prestation-booking-duration {
  background-color: rgba(126, 87, 194, 0.1);
  color: #4a148c;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
  width: fit-content;
}

.prestation-booking-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}
.booking-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  max-width: 1200px;
  margin-inline: auto;
}

.prestation-description {
  width: 60%;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 1.1rem;
  color: #5a4d7d;
  line-height: 1.5;
}

.booking-info {
  text-align: center;
  color: #ff6c00cf;
  margin-bottom: 2rem;
  font-weight: 600;
}

.booking-form {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.form-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  justify-content: center;
}

.form-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(179, 157, 219, 0.2);
  flex: 1 1 400px;
  min-width: 320px;
}

.form-submit {
  margin-top: 2rem;
}

.booking-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #4a3a7a;
  display: block;      /* agrandit la zone cliquable */
  cursor: pointer;     /* indique que c’est cliquable */
}

.booking-input {
  width: 100% !important;
  padding: 0.6rem 0.8rem !important;
  margin-bottom: 1.2rem !important;
  border-radius: 10px !important;
  border: 1.8px solid #cbb9f4 !important;
  font-size: 1rem !important;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s ease !important;
  height: 3rem !important;
}

.form-input-group{
  margin-bottom: 1rem;;
}

.booking-input:focus {
  border-color: #7e57c2;
  outline: none;
}

.error-message {
  color: #e53935;
  font-size: 0.9rem;
  margin-top: -1rem;
  margin-bottom: 1rem;
  display: block;
}

.booking-button {
  background: #ce93d8;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  font-size: 1.1rem;
  width: 100%;
  display: block;
}

.booking-button:hover {
  background: #f06292;
}

.availability-loader {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
}

.shimmer-choice {
  border: 2px solid #cbb9f4;
  border-radius: 25px;
  padding: 1.5rem;
  min-width: 90px;
  text-align: center;
  background: linear-gradient(90deg, #f7f3ff 25%, #e0d5ff 50%, #f7f3ff 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
  font-weight: 600;
  color: transparent;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.availability-section {
  color: #3c2a4d;
}

.availability-date {
  color: #7e57c2;
}

.availability-choices {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Cache les inputs radio */
.availability-choice-wrapper input[type="radio"] {
  display: none;
}

/* Style des labels simulant des boutons */
.availability-choice-wrapper label {
  border: 2px solid #cbb9f4;
  border-radius: 25px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
  font-weight: 600;
  background: #f7f3ff;
  color: #5a4d7d;
  min-width: 90px;
  text-align: center;
  display: inline-block;
}

.availability-choice-wrapper label:hover {
  border-color: #7e57c2;
  background: #d6c6ff;
  color: #3c2a4d;
}

.availability-choice-wrapper input[type="radio"]:checked + label {
  background: #7e57c2;
  color: white;
  border-color: #7e57c2;
}

.availability-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #666;
}

@media (max-width: 900px) {
  .prestation-description {
    width: 90%;
  }
  .form-content {
    flex-direction: column;
  }
  .form-column {
    width: 90%;
    margin: 0 auto;
  }
}

/* === Blog page === */
.blog-page {
  background: #f5f0ff;
  padding: 4rem 2rem;
  color: #3c2a4d;
}
.blog-title {
  font-family: "Playfair Display", serif;
  color: #7e57c2;
  text-align: center;
  margin-bottom: 4rem;
}
.blog-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.blog-post {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(179, 157, 219, 0.2);
}
.blog-post-title {
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}
.blog-post-title a {
  color: #7e57c2;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-post-title a:hover {
  color: #5a3a7a;
  text-decoration: underline;
}
.blog-post-content {
  color: #5a4d7d;
  margin-bottom: 1rem;
}
.blog-post-categories span {
  background: #d6c6ff;
  color: #5a4d7d;
  border-radius: 25px;
  padding: 0.3rem 0.9rem;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
.blog-no-posts {
  text-align: center;
  font-style: italic;
  color: #666;
  font-size: 1.1rem;
}


/* === Contact page === */
.page-title {
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.contact-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding-bottom: 5rem;
}

.contact-method {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(179, 157, 219, 0.2);
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-method form {
  width: 95%;
}

.contact-method label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #4a3a7a;
}

.contact-method input[type="email"],
.contact-method textarea {
  width: 95%;
  padding: 0.6rem 0.8rem;
  margin-bottom: 1.2rem;
  border-radius: 10px;
  border: 1.8px solid #cbb9f4;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.contact-method input[type="email"]:focus,
.contact-method textarea:focus {
  border-color: #7e57c2;
  outline: none;
}

.contact-method button {
  background: #7e57c2;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: 1.1rem;
  width: 100%;
  display: block;
}

.contact-method button:hover {
  background: #5a3a7a;
}

.phone-facebook {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.phone-section,
.facebook-section,
.mail-section {
  text-align: center;
}

.phone-section h3,
.facebook-section h3 {
  margin: 0;
}

.hours-section {
  text-align: center;
}

.hours-section h2 {
  margin-bottom: 1rem;
}

.opening-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #4a3a7a;
  font-weight: 500;
}

.opening-hours li {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }

  .contact-method {
    flex: none;
    margin: 0 auto;
  }
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.info-list li .info-icon,
.info-list li i {
  width: 28px;           /* largeur fixe */
  min-width: 28px;       /* empêche de rétrécir */
  text-align: center;    /* centre l’icône dans son bloc */
  font-size: 1.2rem;     /* taille uniforme */
  color: #32008a;        /* harmonise avec ta charte */
  margin-top: 2px;       /* petit ajustement vertical */
}

.info-list li span {
  flex: 1;
  color: #4a3a7a;
  line-height: 1.5;
}



/* === VERSION HOMEPAGE ABOUT === */
/* #about {
    padding: 3rem 2rem;
} */

.section-about-title {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    color: #7e57c2;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content-wrapper {
    position: relative;
}

.about-image {
    float: left;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 2rem 1rem 0;
    box-shadow: 
        0 8px 25px rgba(126, 87, 194, 0.3),
        0 0 0 4px rgba(255, 255, 255, 0.8),
        0 0 0 8px rgba(126, 87, 194, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 12px 35px rgba(126, 87, 194, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.9),
        0 0 0 8px rgba(126, 87, 194, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.about-text::after {
    content: "";
    display: table;
    clear: both;
}

        /* Styles communs */
.about-text p {
    margin-bottom: 1rem;
}

.about-text strong {
    color: #7e57c2;
    font-weight: 600;
}

.about-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #7e57c2;
    margin-bottom: 1rem;
    font-style: italic;
}

.read-more-btn {
    background: none;
    border: none;
    color: #7e57c2;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #5a4fcf;
}

.expanded-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(126, 87, 194, 0.1);
}

.expanded-content.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.story-section {
    margin-bottom: 1.5rem;
}

.story-section h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #7e57c2;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-quote {
    background: rgba(126, 87, 194, 0.05);
    border-left: 4px solid #7e57c2;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    font-weight: 500;
}

.final-message {
    background: linear-gradient(135deg, rgba(126, 87, 194, 0.1), rgba(206, 147, 216, 0.1));
    border: 1px solid rgba(126, 87, 194, 0.2);
    border-radius: 8px;
    padding: 1.2rem;
    text-align: center;
    font-weight: 600;
    color: #7e57c2;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

/* Version Toggle */
.version-toggle {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(126, 87, 194, 0.1);
}

.toggle-btn {
    background: #7e57c2;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: #5a4fcf;
    transform: translateY(-2px);
}

.toggle-btn.active {
    background: #ce93d8;
}

.version-container {
    display: none;
}

.version-container.active {
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .about-image {
        float: none;
        display: block;
        margin: 0 auto 2rem auto;
        width: 150px;
        height: 150px;
    }
    section {
        padding: 2rem 1rem;
    }
}

.animated-link {
    display: block; /* Changé de inline-block à block */
    margin: 2rem 0; /* Changé de 2rem auto à 2rem 0 */
    text-align: center; /* Centre le contenu */
}

.animated-link a {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #7e57c2;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    display: inline-block; /* Garde le lien en inline-block pour le centrage */
}

.animated-link a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7e57c2, #ce93d8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.animated-link a::after {
    content: '→';
    margin-left: 0.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ce93d8;
}

.animated-link a:hover {
    color: #5a4fcf;
}

.animated-link a:hover::before {
    width: 100%;
}

.animated-link a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* === CSS pour le contenu étendu === */
.expanded-content {
    display: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(126, 87, 194, 0.1);
    text-align: left; /* Force le texte à gauche */
}


        .font-option {
            margin: 2rem 0;
            padding: 1.5rem;
            border: 2px solid transparent;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .font-option:hover {
            border-color: #7e57c2;
            background: rgba(126, 87, 194, 0.05);
        }

        .font-1 { font-family: "Cinzel", serif; font-weight: 500; }
        .font-2 { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 500; }
        .font-3 { font-family: "Crimson Text", serif; font-style: italic; font-weight: 400; }
        .font-4 { font-family: "EB Garamond", serif; font-style: italic; font-weight: 400; }
        .ft-size-3 {font-size: 2rem;}
        .font-name {
            font-size: 0.9rem;
            color: #7e57c2;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-family: "Inter", sans-serif;
        }

        .sample-text {
            font-size: 1.4rem;
            color: #4a5568;
            line-height: 1.5;
        }

        /* === Phrase animée avec JavaScript === */
        .welcome-phrase {
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
        }

        .welcome-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .welcome-text {
            font-family: "Cormorant Garamond", serif; /* Police par défaut */
            font-size: 1.4rem;
            font-weight: 500;
            color: #7e57c2;
            line-height: 1.5;
            font-style: italic;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s ease;
        }

        .welcome-text.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Animation de typewriter pour chaque mot */
        .word {
            display: inline-block;
            opacity: 0;
            transform: translateY(20px);
            animation: wordAppear 0.8s ease forwards;
            margin-right: 0.4em; /* <= espace entre les mots */
        }

        @keyframes wordAppear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Particules subtiles animées */
        .welcome-phrase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(126, 87, 194, 0.06) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, rgba(206, 147, 216, 0.04) 1px, transparent 1px),
                radial-gradient(circle at 60% 40%, rgba(126, 87, 194, 0.03) 3px, transparent 3px);
            background-size: 80px 80px, 50px 50px, 120px 120px;
            opacity: 0;
            animation: fadeIn 2s ease 1s forwards, sparkleMove 30s linear 3s infinite;
            pointer-events: none;
        }

        @keyframes fadeIn {
            to { opacity: 1; }
        }

        @keyframes sparkleMove {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(10px, -5px) rotate(90deg); }
            50% { transform: translate(-5px, -10px) rotate(180deg); }
            75% { transform: translate(-10px, 5px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        /* Boutons pour changer la police */
        .font-selector {
            text-align: center;
            margin: 2rem 0;
        }

        .font-btn {
            background: #7e57c2;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            margin: 0.3rem;
            border-radius: 20px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: all 0.3s ease;
        }

        .font-btn:hover {
            background: #5a4fcf;
            transform: translateY(-2px);
        }

        .font-btn.active {
            background: #ce93d8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .welcome-phrase {
                padding: 2rem 1rem;
            }
            
            .welcome-text {
                font-size: 1.2rem;
            }

            .font-showcase {
                margin: 1rem;
                padding: 1rem;
            }

            .sample-text {
                font-size: 1.2rem;
            }
        }