/*** Base ***/
body {
  margin: 0;
  background-color: white; 
  color: #bfa54c;
  font-family: 'Cinzel', serif;
}

/*** Justification et centrage du texte ***/
.justified-text {
  text-align: justify;
}
.centered-text {
  text-align: center;
}

/*** Logo taille moyenne pour fin de page Qui-suis-je***/
.logo-photo {
  width: 30%;      /* ajuste à volonté (ex : 50%, 300px...) */
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;  /* pour centrer l’image */
}

/*** Rendre plus difficile l'enregistrement/la copie des images de mon site***/
/* Rend le drag & long-press plus difficiles */
img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none; /* iOS : pas de menu contextuel */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: auto; /* garder cliquable si nécessaire (ex: lightbox) */
}


/*** Listes ***/

/** Liste à deux niveaux **/
/* Liste principale avec étoile ❈ */
ul.custom-list {
  list-style: none;
  padding-left: 0;
  line-height: 1.4; /* Interligne lisible mais resserré */
  margin-bottom: 1em;
  font-family: 'Caudex', serif;
  font-size: 1.05em; /* même taille que tes paragraphes */
}

ul.custom-list li {
  margin-bottom: 0.3em;
}

/* Liste secondaire avec tiret – */
ul.sub-list {
  list-style: none;
  padding-left: 1.2em; /* Indentation pour les sous-éléments */
  line-height: 1.4;
  margin-top: 0.3em;
  margin-bottom: 0.8em;
  font-family: 'Caudex', serif;
  font-size: 1.05em; /* même taille que tes paragraphes */
}

ul.sub-list li {
  margin-bottom: 0.3em;
}

/** Liste normale toute simple - à moi d'insérer la puce désirée ds le html directement**/
.normal-list li{
  list-style: none;
  padding-left: 0em; 			/* largeur de la marge à gauche du tiret */
  margin: 0em;
  margin-bottom: 0.5em;			/* espace vertical entre les lignes de la liste */  
  font-family: 'Caudex', serif;
  font-size: 1.1em;
  line-height: 1.4;
  text-transform: none;
  text-align: left;
}


/*** Intégration des images ***/
.image-centree {
  text-align: center;
  margin: 30px 0;
}

.image-centree img {
  max-width: 100%;
  height: auto;
}

/* Image comm animale et aux pages retraites individuelles */
.animal-photo {
  width: 60%;      /* ajuste à volonté (ex : 50%, 300px...) */
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;  /* pour centrer l’image */
}

.animal-photo {
  text-align: center;
  margin-bottom: 20px;
}

.animal-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}
/*** ADAPTATION AUX SMARTPHONES 1.2.3.***/

/** Code à placer après "Base" **/

/* 1.Pour que tout le contenu s’adapte à la largeur de l’écran */
body, html {
  max-width: 100%;
  overflow-x: hidden;
}

/* 2.Pour que les images ne débordent jamais */
img {
  max-width: 100%;
  height: auto;
}

/* 3.Pour garder des marges adaptées au mobile */
.content {
  padding: 0 15px;
  box-sizing: border-box;
}
/*** FIN ADAPTATION SMARTPHONE ***/

/* Apparence des mots qui sont des liens + survol */
a {
  color: #bfa54c;              /* doré normal */
  text-decoration: none;
  font-weight: bold;           /* 👈 met le lien en gras */
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:hover {
  color: #deaf00;              /* doré clair au survol */
  text-decoration: underline;  /* texte souligné qd on passe la souris dessus */
}

/* En-tête */
header {
  background-color: white;
  padding: 20px 0;
  text-align: center;
}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  width: 250px; /* 113px pr logo sans soleil */
  max-width: 40vw; /* pour s’adapter à la largeur du smartphone*/
  height: auto;
  border: none;
  outline: none;
  box-shadow: none;
  background-color: transparent;
}

/* Menu */
/* Bouton menu burger : caché par défaut */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #bfa54c;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 5px;
  z-index: 1001;
}

/* Menu visible par défaut en grand écran */
.nav-menu {
  display: flex;
  justify-content: center;
}

/* Items de menu classiques */
.menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  margin: 10px 15px;
}

.menu a {
  text-decoration: none;
  color: #bfa54c;
  font-family: 'Cinzel', serif;
  font-weight: bold;
}

.menu a:hover {
  color: #deaf00;
}

/* RESPONSIVE : moins de 768px */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: white;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-top: 1px solid #bfa54c;
  }

  .nav-menu.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    align-items: center;
  }

  .menu li {
    margin: 15px 0;
  }
}

/*Logo apparait un peu plus petit sur smartphone*/
@media (max-width: 480px) {
  .logo {
    width: 120px;
    max-width: 50vw;
  }
}

/*** FIN MENU SMARTPHONE ***/

/* Bannière d'accueil */
.hero-banner {
  background-image: url('images/nuages-rose-lila.png');
  background-size: cover;
  background-position: center;
  height: 35vh; /*new - pr la page d'accueil*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-banner .overlay-text{
  margin: 0 ;
  padding: 16px 24px;
}

.hero-banner h1{
  margin: 0  !important;
  line-height: 1.6 !important;
}

.overlay-text {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px 30px;
  border-radius: 5px;
  color: #bfa54c;
}


@media (max-width: 768px) { /*new*/
  .hero-banner {
    height: 50vh;         /* un peu moins haut sur mobile */
    min-height: 260px;
  }
}

.overlay-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
  font-weight: bold;
}


/* Phrase spéciale en Caudex Regular */
.overlay-text .caudex {
  font-family: 'Caudex', serif;
  font-size: 1.2em;
  font-style: normal;
  font-weight: normal;
  text-transform: none;
}

/* Formatage spécifique aux pages secondaires */
/* Bannière pour pages secondaires */
/* Bannière pour pages secondaires */
.subpage-banner {
  height: 30vh;
  background-image: url('images/nuages-rose-lila.png');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Bulle blanche avec texte doré */
.subpage-banner-overlay {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px 30px;
  border-radius: 3px; /* 👈 angles arrondis */
  text-align: center;
}

.subpage-banner-overlay h1 {
  margin: 0;
  color: #bfa54c;
  font-family: 'Cinzel', serif;
  font-size: 2.2em;
  text-transform: uppercase;
}


/* Contenu principal */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.2em;
  line-height: 1.6;
  font-family: 'Caudex', serif;
}

main {
  margin-bottom: 20px;
}

/*** Propore à la page d'accueil ***/
/* Portrait page accueil */
.portrait {
  background-color: white;
  padding: 40px 0;
  text-align: center;
}

.portrait-img {
  width: 9cm;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: url(#halo-dore);
}

/*Titre et texte page d'accueil*/
.welcome-text {
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  font-family: 'Caudex', serif;
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
  color: #bfa54c;
}

.titre-etoiles-hero {
  display: inline-flex;   /* pas de marges verticales qui s’effondrent */
  align-items: center;
  gap: 8px;
  margin: 0;              /* << élimine le gros espace ajouté par l’autre style */
  line-height: 1.2;
  font-family: 'Cinzel', serif;
  color: #bfa54c;
  font-size: clamp(22px, 2.8vw, 34px); /* taille fluide sans casser la hauteur */
}

.titre-etoiles-hero .etoiles {
  font-size: 0.9em;       /* étoiles un peu plus petites */
  animation: scintillement-couleur 2s infinite ease-in-out;
}

.welcome-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-size: 1.4em;
  line-height: 1.6;
  font-family: 'Caudex', serif;
  text-align: center;
}

/*** Propre à la page Retraites ***/

/* Texte d'intro page retraite */
.intro-texte {
  max-width: 900px;
  margin: 40px auto 20px auto;
  padding: 0 20px;
  font-family: 'Caudex', serif;
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  color: #bfa54c;
}

/* Ligne séparatrice */
.separator {
  display: block;
  margin: 30px auto;    /* espace autour + centrage */
  width: 400px;         /* adapte à la taille de ton image */
  height: auto;
}

/* affichage des cards dépd de la taille de l'écran */
.retreats-grid {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 30px; /* vertical / horizontal spacing */
  padding: 50px 20px;
}

.retreat-card {
  background-color: #fedbf3;
  border: 1px solid #bfa54c;
  border-radius: 6px;
  margin-top: 30px;		/*marge supérieure identique aux côtés*/
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  flex: 0 0 calc(33.33% - 30px); /* par défaut : 3 cartes */
}

.retreat-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5em;
  color: #bfa54c; /* doré foncé*/
  font-weight: bold;
  text-align: center;
  background-color: white;
  padding: 8px 10px 4px;
  margin-bottom: 6px;
  margin-top: 10px;
}

@media (max-width: 1024px) {
  .retreat-card {
    flex: 0 0 calc(50% - 30px); /* tablette : 2 cartes */
  }
}

@media (max-width: 768px) {
  .retreat-card {
    flex: 0 0 100%; /* mobile : 1 carte */
  }
}

.retreat-card img {
  width: 8cm;
  height: 8cm;
  object-fit: cover;
  display: block;
  border: 2mm solid #deaf00;       /* cadre doré clair*/
  position: relative;
}

.retreat-info {
  background-color: transparent;
  color: #bfa54c;
  font-family: 'Caudex', serif;
  font-weight: normal; 		/* Annule le fait que tout est en gras par défaut */
  text-align: center;
  padding: 10px;
  margin-top: 0px;
  font-size: 1.0em;
  height: 3cm;
  display: block; 
  line-height: 1.0;
}


.retreat-info .retreat-label {
  font-weight: bold;   		/* garde les mots comme "Date:" en gras */
}

.retreats-grid a.retreat-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.retreats-grid a.retreat-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/**Section témoignages des retraites**/

.testimonials {
  background-color: white;
  padding: 40px 20px;
  text-align: center;
}

.testimonials h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.8em;
  color: #bfa54c;
  margin-bottom: 30px;
}

.testimonial {
  max-width: 600px;
  margin: 0 auto 30px;
  font-family: 'Caudex', serif;
  color: #333;
  font-style: italic;
}

.testimonial .author {
  margin-top: 10px;
  font-weight: bold;
  color: #bfa54c;
  font-style: normal;
}


.testimonial .date {
  font-size: 0.9em;
  color: #888;
}

/*Titre intermédiaire*/
.retraites-a-venir-title {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 1.8em; 
  margin-bottom: 20px;
}

/* Galerie de 3 images côte à côte - page Retraites */
.retreats-gallery {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  flex-wrap: wrap;
  background-color: white;
}

.retreats-gallery img {
  width: 8cm;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Responsive : 2 images sur tablette */
@media (max-width: 1024px) {
  .retreats-gallery img {
    width: 45%;
  }
}

/* Responsive : 1 image sur mobile */
@media (max-width: 600px) {
  .retreats-gallery img {
    width: 90%;
  }
}

/*** Propre à la page Contact***/

.contact-intro {
  max-width: 600px;
  margin: 40px auto 20px auto; /* centré et espacé du haut et du formulaire */
  text-align: center;
  font-family: 'Caudex', serif;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #bfa54c; /* texte principal */
}

.contact-intro a {
  color: #bfa54c; /* doré */
  font-weight: bold;
  text-decoration: none;
}

.contact-intro a:hover {
  text-decoration: underline;
}


/*** Propres aux pages des retraites individuelles ***/

.thematic-card {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px;
  border: 1px solid #deaf00;
  border-radius: 6px;
  background-color: white;
  font-family: 'Caudex', serif;
  color: #bfa54c;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); /* 👈 ombre douce */
}

.thematic-card .faq-section {
  text-align: center;
}



/*** Page Breathwork ***/
/* Animation scintillement par changement de couleur */
@keyframes scintillement-couleur {
  0%, 100% { color: #bfa54c; }   /* doré */
  50% { color: #deaf00; }       /* doré clair */
}

.titre-etoiles {
  text-align: center;
  color: #bfa54c;
  font-family: 'Cinzel', serif;
  font-size: 1.5em; /* plus petit */
  margin: 40px 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.titre-etoiles .etoiles {
  font-size: 1em;
  letter-spacing: 2px;
  animation: scintillement-couleur 2s infinite ease-in-out;
}

/*Intégration des paragraphes en mode question/réponse*/
.faq-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.faq-item {
  margin-bottom: 40px;
}

.faq-question {
  font-family: 'Cinzel', serif;
  font-size: 1.4em;
  color: #bfa54c;
  margin-bottom: 10px;
}

.faq-answer {
  font-family: 'Caudex', serif;
  font-size: 1.1em;
  color: #bfa54c; /* ou couleur 333*/
  line-height: 1.6;
  text-align:justify;
}

.faq-answer-retreat {
  font-family: 'Caudex', serif;
  font-size: 1.1em;
  color: #bfa54c; /* ou couleur 333*/
  line-height: 1.6;
  text-align:justify;
  text-align:center;
}

/*** Page Le Lieu ***/

/* ===== Carrousel avec 3 images visibles ===== */
.carousel-section {
  background-color: white;
  padding: 40px 20px;
}

.carousel-title {
  text-align: center;
  font-family: 'Cinzel', serif;
  font-size: 1.6em;
  margin-bottom: 20px;
  color: #bfa54c;
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: max-content;
}


.carousel-track img {
  width: 300px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
  margin: 0 10px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer; /* 👈 transforme le curseur en main */
}

/* Flèches */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 1px solid #bfa54c;
  color: #bfa54c;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 0;
}

.carousel-btn:hover {
  background-color: #fedbf3;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-track img {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .carousel-track img {
    width: 45vw;
  }
}

@media (max-width: 480px) {
  .carousel-track img {
    width: 90vw;
  }
}

/* Lightbox (agrandissement des images lors d'un clique dessus) */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 48px;
  font-weight: bold;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}




/*** Pied-de-page ***/
/* .site-footer {
  background-color: white;
  color: #bfa54c;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Caudex', serif;
  border-top: 1px solid #bfa54c;
  box-shadow: 0 -2px 5px rgba(191, 165, 76, 0.5); /* doré léger */
} */

.site-footer {
  background-color: #fedbf3 !important; /* 👈 forcer le rose pâle - ffebf7 est un rose plus pale */
  border-top: 1px solid #bfa54c;
  text-align: center;
  padding: 30px 20px;
  font-family: 'Caudex', serif;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



.footer-content p {
  text-align: center;
  margin-bottom: 10px;
  font-size: 1em;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px; /* espace entre les icônes */
  margin-top: 10px;
}

.social-icons a {
  display: inline-block;
}

.icon {
  width: 28px;   /* ≈ 1 cm */
  height: 28px;
  transition: transform 0.2s;
}

.icon:hover {
  transform: scale(1.15);
  filter: brightness(1.3);
}



