/*** 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) */
}

/*** class=contact-mail --> j'ai défini mon email dans le menu.js, il est codé en base 64 ***/

/*** 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: 1.4em; 			/* 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;
  text-indent:-0.8em;
}

/*** Liste pour menu déroulant "Autres services" et compatible smartphone ***/
/* ===== Dropdown – Desktop & Mobile ===== */

/* Base nav (adapté à ta structure : .menu EST le <ul>) */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu a,
.menu .submenu-toggle { line-height: 1.2; }

.menu li {
  position: relative; /* nécessaire pour positionner le sous-menu */
  margin: 0 15px;
}

/* Bouton du sous-menu (les liens <a> gardent tes styles plus bas) */
.menu .submenu-toggle {
  text-decoration: none;
  color: #bfa54c;                 /* cohérent avec ta charte */
  font-family: 'Cinzel', serif;
  padding: 8px 12px;
  display: block;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: bold;   /* même graisse que .menu a */
  font-size: 1em;      /* même taille que les liens */
  appearance: none;
  -webkit-appearance: none;
}

/* Sous-menu (fermé par défaut) */
.menu .submenu {
  display: none;
  position: absolute;     /* desktop */
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 15px 0; /* Hauteur verticale de "la carte blanche" sur laquelle apparaissent les éléments du menu déroulant*/
  z-index: 1000;
}

/* Items du sous-menu */
.menu .submenu li { margin: 0; }
.menu .submenu li a {
  padding: 10px 12px;
  line-height: 2;         /* Hauteur de la ligne de chaque élément du menu déroulant*/
  transition: background-color 0.25s ease;
  display: block;
}

.menu .submenu li:not(:last-child) a {
  border-bottom: 1px solid #deaf00;      /* une seule ligne sous l’item, même si le texte revient à la ligne */
}


.menu .submenu li a:hover { background-color: rgba(191, 165, 76, 0.12); }

/* Affichage : desktop (hover) & mobile (classe .open ajoutée par JS) */
.menu .dropdown:hover > .submenu { display: block; }  /* desktop */
.menu .dropdown.open > .submenu { display: block; }   /* mobile */

/* Chevron animé */
.menu .chevron { display: none; transition: transform 0.2s ease; }
.menu .dropdown.open .chevron { transform: rotate(180deg); }

/* Focus a11y */
.menu .submenu-toggle:focus,
.menu .submenu li a:focus { outline: 2px solid #bfa54c; outline-offset: 2px; }

/* ===== Mobile (≤ 900px): sous-menu en flux ===== */
@media (max-width: 900px) {
  .menu .submenu {
    position: static;   /* le sous-menu suit le flux en colonne */
    box-shadow: none;
    border-radius: 0;
    padding: 0;
  }
  .menu .submenu li a { padding-left: 24px; } /* léger retrait visuel */
} /* 👈 ferme bien la media query */



/*** 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;
}

/*** Boutons cliquables ***/

.button-container {
  text-align: center; /* centre le bouton */
  margin: 20px 0;     /* espace au-dessus et en-dessous */
}

.button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #bfa54c; /* ton or */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}

.button:hover {
  background-color: #a58f3f; /* or un peu plus foncé au survol */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}


/*** 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: 150px; /* 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;
  padding: 0 3cm;              /* 👈 ajoute de l'espace à gauche et à droite */
  box-sizing: border-box;
}

/* Items de menu classiques */
.menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu li {
  position: relative;
  margin: 10px 15px;
}

.menu a,
.menu .submenu-toggle {         /* 👈 pour que "Autres services" soit aussi réduit */
  text-decoration: none;
  color: #bfa54c;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  padding: 8px 12px;
  font-size: 0.95em;            /* 👈 un tout petit peu plus petit */
  text-align: center; /* centre le texte sur plusieurs lignes */
  display: inline-block; /* permet le centrage correct */
  white-space: normal; /* autorise les retours à la ligne */
}

.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;
    padding: 0;                 /* 👈 on enlève le 3cm sur mobile */
  }

  .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;
}

/* Phrase en majuscule et centrée page accueil*/
.titre-hero {
  font-family: 'Cinzel', serif;
  font-size: 2em;
  color: #bfa54c;
  text-align: center;
  line-height: 1.2;
  margin: 0.5em 0;
}

/* === Phrases centrées page accueil (new) === */
/* == Fond blanc spécifique à la page d’accueil == */
.overlay-text-home {
  background-color: rgba(255, 255, 255, 0.6);
  color: #bfa54c;
  display: inline-block;
  border-radius: 5px;

  /* Coussin autour du texte */
  padding: 12px 40px;      /* 12px haut/bas = bulle pas trop haute */
  max-width: 90%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* == Texte principal bannière accueil == */
.banner-text-centered {
  text-align: center;
  color: #bfa54c;
  font-family: 'Cinzel', serif;

  /* Taille importante type “slogan de page d’accueil” */
  font-size: 2rem;         /* ≈32px si base 16px */
  line-height: 1.25;       /* resserré mais lisible */
  font-weight: normal;
  margin: 0;
}

/* Espace entre les lignes */
.banner-text-centered p {
  margin: 8px 0;
}

/* Étoiles dorées animées */
.etoiles {
  font-size: 0.8em;
  animation: scintillement-couleur 2s infinite ease-in-out;
}

/* == Responsive : mobile / tablette == */
@media (max-width: 768px) {
  .overlay-text-home {
    padding: 10px 20px;   /* un peu moins large sur mobile */
  }

  .banner-text-centered {
    font-size: 1.5rem;    /* ≈24px */
    line-height: 1.3;
  }

  .banner-text-centered p {
    margin: 6px 0;
  }
}

/** 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;
}

/* Formatage du titre "Bonjour! Je m'appelle Fanny Brun... */
.welcome-title {
  font-size: 1.2em; /* un peu + grand que le texte principal */
  line-height: 1.6;                           /* cohérent avec ton style */
}

/*====== Ajout des 3 images pour les thématiques chez les clients ======*/

/*== Trois images portrait avec titre au-dessus ==*/
.three-portraits {
  display: flex;
  justify-content: center;   /* centre le groupe sur la page */
  gap: 0cm;                  /* ~0 cm entre chaque image */
  flex-wrap: wrap;           /* si manque de place, passe sur 2 lignes */
  margin: 20px 0;
}

.three-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Zone titre (blanc au-dessus de l’image) */
.three-title {
  width: 4cm;                /* même largeur que l'image */
  text-align: center;
  color: #bfa54c;            /* doré */
  font-family: 'Cinzel', serif;
  font-weight: bold;
  margin: 0 0 6px 0;         /* espace blanc au-dessus de l’image */
}

/* Image portrait 4 × 6 cm avec cadre doré fin, sans marge latérale */
.three-img {
  width: 4cm;                /* portrait ⇒ plus étroit */
  height: 6cm;               /* portrait ⇒ plus haut */
  object-fit: cover;         /* remplit sans distorsion */
  display: block;            /* supprime l'espace inline autour de l'image */
  border: 1px solid #deaf00; /* cadre doré fin */
}

/*=== Adaptation (des 3 images thématiques clients) pour smartphone ===*/

/*== Responsive : 3 (desktop) → 2 (tablette) → 1 (mobile) == */
@media (max-width: 1024px) {
  .three-portraits {
    gap: 24px; /* ~1 cm visuel, un peu plus souple que 1cm réel */
  }
  /* 2 cartes par ligne */
  .three-card {
    flex: 0 0 calc(50% - 12px); /* 2 colonnes (en tenant compte du gap) */
  }
  /* Les éléments prennent la largeur de la carte */
  .three-title,
  .three-img {
    width: 100%;
  }
  /* Garde le format portrait sans déformation */
  .three-img {
    height: auto;
    aspect-ratio: 2 / 3;   /* portrait */
    object-fit: cover;
  }
}

@media (max-width: 600px) {
  .three-portraits {
    gap: 18px; /* un peu moins d'espace entre les images sur mobile */
  }
  /* 1 carte par ligne, centrée */
  .three-card {
    flex: 0 0 100%;
    align-items: center; /* centre la carte dans la ligne */
  }
  /* Largeur confortable sur mobile */
  .three-title,
  .three-img {
    width: 80vw;          /* ≈ 80% de la largeur de l'écran */
  }
  .three-img {
    aspect-ratio: 2 / 3;
  }
}

/*** Propre à la page A quoi s'attendre ***/

.expect-text {
  font-family: 'Caudex', serif;
  font-size: 1.25em;      /* ≈ entre 1.2em et 1.3em, lisible */
  line-height: 1.6;
  color: #bfa54c;         /* doré du site */
  margin: 0 0 1em 0;
  text-transform: none;   /* jamais en majuscules ici */
    /* 👉 mêmes “marges” que partout ailleurs sur ton site */
  max-width: 900px;
  margin: 0 auto 1em;   /* centre + espace en bas */
  padding: 0 20px;      /* marge intérieure gauche/droite comme .content */
  box-sizing: border-box;
  text-align:center;
}

.expect-text strong {
  font-weight: 700;       /* gras marqué */
  text-transform: none;   /* laisse la casse telle quelle */
}

/* Option si tu veux un cran au-dessus pour un passage précis */
.expect-text.big { 
  font-size: 1.3em;
}

@media (max-width: 600px) {
  .expect-text { font-size: 1.2em; }
}

/*== Pr que les listes soient centrées et de la meme taille de police que la page==*/
/* Conteneur page "À quoi s’attendre" */
.expect-block {
  max-width: 900px;    /* comme .content */
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Même taille que tes paragraphes .expect-text pour les listes à l’intérieur */
.expect-block .custom-list,
.expect-block .sub-list,
.expect-block .normal-list {
  font-size: 1.25em;       /* aligne sur .expect-text */
  line-height: 1.6;
  font-family: 'Caudex', serif;
  color: #bfa54c;
  margin: 0 0 1em 0;
}

/* Si tu veux centrer le bloc de liste tout en gardant le texte aligné à gauche : */
.expect-block .custom-list,
.expect-block .sub-list,
.expect-block .normal-list { font-size: 1.25rem; } /* rem = indépendant du parent */


/* (Optionnel) si tu veux vraiment un texte centré dans les listes :
.expect-block .custom-list li,
.expect-block .normal-list li { text-align: center; }
*/

/* Neutralise le +10% sur les <li> */
.expect-block .normal-list li { font-size: 1em; }  /* = même taille que le parent */




/*** 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 Retraite-Confiance et Retraite-Acceptation de soi***/

/* Rouge avec effet pulse (doucement) */
.pulse-red {
  color: #c62828;                 /* rouge */
  animation: pulse 1.6s ease-in-out infinite;
}

/* Animation: légère variation d'opacité */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* Respecte l’accessibilité : réduit les animations si l’utilisateur le préfère */
@media (prefers-reduced-motion: reduce) {
  .pulse-red { animation: none; }
}


/*** 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;
}


/*SMARTPHONE: Adaptation de la taille des titres des pages à l'écran du smartphone*/
/* Titres des bannières : responsive uniquement sur mobile/tablette */
@media (max-width: 768px) {
  .overlay-text h1,
  .subpage-banner-overlay h1 {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
    line-height: 1.25;
    word-break: break-word;
    text-align: center;
  }

  /* on réduit un peu le padding de la bulle blanche pour éviter que la bannière paraisse trop haute */
  .overlay-text,
  .subpage-banner-overlay {
    padding: 14px 18px;
  }
}

@media (max-width: 480px) {
  .overlay-text h1,
  .subpage-banner-overlay h1 {
    font-size: clamp(1rem, 6vw, 1.4rem);
  }
}

/* ===== Page BLOG ===== */

/* Grille d’articles */
.blog-grid {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 30px;      /* espace vertical / horizontal */
  padding: 50px 20px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Carte d’article */
.blog-card {
  background-color: #fff;
  border: 1px solid #bfa54c;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  width: 320px;                 /* largeur confortable */
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

/* Titre au-dessus de l’image (comme tes retraites) */
.blog-title {
  font-family: 'Cinzel', serif;
  font-size: 1.3em;
  color: #bfa54c;
  font-weight: bold;
  text-align: center;
  background-color: #fff;
  width: 100%;
  padding: 10px 12px 4px;
  min-height: 60px;             /* pour éviter que ça bouge si titre long */
  box-sizing: border-box;
}

/* Image de l’article */
.blog-card img {
  width: 100%;
  height: 190px;                /* fixe pour des cartes bien alignées */
  object-fit: cover;
  border-top: 1px solid #bfa54c;
  border-bottom: 1px solid #bfa54c;
}

/* Extrait de l’article */
.blog-preview {
  padding: 14px 14px 18px;
  background-color: white;
  font-family: 'Caudex', serif;
  font-size: 1.02em;
  line-height: 1.45;
  color: #bfa54c;
  text-align: justify;
}

/* Pour que le lien entier soit cliquable sans soulignement */
.blog-card p {
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .blog-grid {
    gap: 40px 20px;
  }
}

@media (max-width: 768px) {
  .blog-card {
    width: 100%;
    max-width: 480px;
  }
}

/* ===== Article de blog ===== */

.article-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px 80px;
  background-color: white;
  color: #bfa54c;
  font-family: 'Caudex', serif;
  text-align: justify;
  line-height: 1.6;
  box-sizing: border-box;
}

.article-image {
  text-align: center;        /* centre le bloc image */
  margin-bottom: 30px;
}

.article-image img {
  width: 70%;                /* réduit la taille à 70% de la largeur du contenu */
  max-width: 600px;          /* empêche qu’elle soit trop grande sur grand écran */
  height: auto;
  border: 1px solid #bfa54c;
  border-radius: 6px;
  display: inline-block;     /* permet le centrage avec text-align:center */
}


.article-content h2 {
  font-family: 'Cinzel', serif;
  text-align: center;
  font-size: 1.7em;
  margin-bottom: 1.2em;
  color: #bfa54c;
}

.article-content p {
  margin-bottom: 1.2em;
}

.article-content strong {
  font-weight: bold;
  color: #deaf00;
}

.article-content blockquote {
  border-left: 3px solid #deaf00;
  padding-left: 16px;
  font-style: italic;
  color: #bfa54c;
  margin: 1.8em 0;
}

@media (max-width: 768px) {
  .article-container {
    padding: 30px 15px 50px;
  }
  .article-content h2 {
    font-size: 1.4em;
  }
}


/*** 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;
  align-items: center; /* centre horizontalement dans le footer en flex */
}

.site-footer .logo-container {    /* centre le contenu du conteneur */
  display: flex;
  justify-content: center;
}

.site-footer .logo {              /* cible uniquement le logo du footer */
  display: block;
  margin: 0 auto;
  width: 220px;                   /* ajuste taille du logo selon ton goût */
  max-width: 30vw;                /* reste fluide sur mobile */
  height: auto;
}

.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);
}



