/* Ajuste un peu le header uniquement sur la page à propos */
.page-about .left-content {
  width: 350px;
}

/* ============================== */
/*   HERO IMAGE                   */
/* ============================== */

.box-image{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.box-image img{
  width: 1000px;
  max-width: 100%;
  height: auto;
}

/* ============================== */
/*   TITRE AVEC CADRE             */
/* ============================== */

.titre-main{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.title-bienvenu {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 35px;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  color: #4c4c30;
  /* évite les trucs qui cassent en mobile */
  white-space: normal;
}

.title-bienvenu .secondtitlebienvenu {
  /* ✅ demandé : sous-titre orange */
  color: #ca5900;
  font-size: 18px;
}

/* ============================== */
/*   BLOCS TEXTE DANS CADRE       */
/* ============================== */

.box-text-main{
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.cadre-text{
  width: 1000px;
  max-width: 100%;
  height: auto;
  background-color: #4c4c30;
  margin-top: 0;
}

.textmain {
  position: absolute;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);

  /* ✅ demandé : texte beige */
  color: #e4c7b1;

  font-size: 20px;
  width: 900px;
  max-width: 72%;

  /* ✅ lisibilité : le corps de texte aligné à gauche, pas “centre-brique” */
  text-align: left;
  line-height: 1.6;

  height: 56%;
  max-height: 520px;
  min-height: 180px;

  overflow-y: auto;

  box-sizing: border-box;
  padding-right: 22px;
  padding-left: 14px;

  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #ca5900 #4c4c30;

  /* micro-amélioration typographique */
  text-wrap: pretty;
  hyphens: auto;
}

/* ✅ mise en page clean : vrais paragraphes */
.page-about .textmain p{
  margin: 0 0 16px;
}
.page-about .textmain p:last-child{
  margin-bottom: 0;
}

/* Sous-titres internes (ex: "À propos de ma pratique") */
.textmain .secondtextmainabout{
  color: #ca5900;
  font-size: 20px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

/* ✅ règles demandées : ~ ~ et guillemets en orange */
.page-about .about-highlight,
.page-about .about-quote-inline{
  color: #ca5900;
  font-weight: 700;
}

/* ✅ quand un paragraphe est une citation entière -> style plus joli */
.page-about .about-quote-block{
  color: #ca5900;
  font-style: italic;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 18px;
  padding: 10px 14px;
  border-left: 3px solid rgba(202, 89, 0, 0.65);
  background: rgba(202, 89, 0, 0.06);
  border-radius: 10px;
}

/* Scrollbar (Chrome / Edge / Safari) */
.textmain::-webkit-scrollbar {
  width: 8px;
}
.textmain::-webkit-scrollbar-track {
  background: #4c4c30;
  border-radius: 10px;
}
.textmain::-webkit-scrollbar-thumb {
  background: #ca5900;
  border-radius: 10px;
}
.textmain::-webkit-scrollbar-thumb:hover {
  background: #e06c09;
}

/* petit espace entre les 2 cadres */
.box-text-main--practice{
  margin-top: 60px;
}

/* labels + liens */
.textmain--practice .practice-link{
  color: #e06c09;
  text-decoration: underline;
}
.textmain--practice .practice-link:hover{
  color: #ca5900;
}

/* ========================= */
/*  TABLETTE (<= 1024px)     */
/* ========================= */
@media (max-width: 1160px) {
  .title-bienvenu {
 
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .box-image { margin-top: 40px; }
  .box-image img{ width: 90%; max-width: 900px; }

  .titre-main { margin-top: 40px; }

  .title-bienvenu {
    top: 50%;
    font-size: 18px;
  }
  .title-bienvenu .secondtitlebienvenu{
    font-size: 16px;
  }

  .box-text-main {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0 16px;
  }

  .textmain {
    font-size: 16px;
    width: 80%;
    max-width: 78%;
    height: 58%;
    max-height: 480px;
    min-height: 170px;
    padding-right: 20px;
    padding-left: 12px;
  }
}

/* ========================= */
/*  MOBILE (<= 700px)        */
/* ========================= */
@media (max-width: 700px) {
  .box-image { margin-top: 30px; }
  .box-image img{ width: 100%; max-width: 600px; }

  .titre-main { margin-top: 30px; }

  .title-bienvenu { top: 50%; font-size: 16px; }
  .title-bienvenu .secondtitlebienvenu{ font-size: 14px; }

  .box-text-main {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .cadre-text { width: 100%; max-width: 100%; }

  .textmain {
    top: 50%;
    max-width: 84%;
    font-size: 13px;
    line-height: 1.5;

    height: 60%;
    max-height: 420px;
    min-height: 150px;

    padding-right: 18px;
    padding-left: 10px;
  }

  .page-about .about-quote-block{
    text-align: left;
  }
}
/* ✅ Couleurs demandées */
.title-bienvenu{
  
.title-bienvenu span{
  color: #ca5900; /* Sous-titre */
}

/* ✅ Paragraphes plus propres */
.textmain .about-paragraph{
  margin: 0 0 14px;
}
.textmain .about-paragraph:last-child{
  margin-bottom: 0;
}

/* ✅ Tout ce qui est entre ~ ~ ou entre guillemets */
.textmain .about-highlight,
.textmain .about-quote-inline{
  color: #ca5900;
  font-weight: 700;
}

/* petit style pour les citations (optionnel mais plus joli) */
.textmain .about-quote-inline{
  font-style: italic;
}

/* Titre du bloc 2 */
.textmain .about-section-heading{
  color: #ca5900;
  font-weight: 800;
  font-size: 20px;
  margin: 0 0 14px;
}

/* garde tes liens */
.textmain--practice .practice-link{
  color: #e06c09;
  text-decoration: underline;
}
.textmain--practice .practice-link:hover{
  color: #ca5900;
}
}