html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  font: 400 1em/1.6 Georgia, "Times New Roman", serif;
  color: #444;
  background: #f5f3eb url("bg_Parole.png") repeat;
}

/* Titre principal dans le header */
.page-header {
  text-align: center;
  margin: 1.5rem 0 1rem;
  margin-bottom: 90px;
}

.page-title {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -1px;
  color: #444;
}

/* Alignements utilitaires */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Sommaire */
.toc {
  margin: 1.5rem 0 ;
  font-size: 1rem;
}

.toc h2 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.4rem;
}

.toc li {
  margin-bottom: 0.25rem;
}

/* Séparateur horizontal */
.section-divider {
  margin: 1.5rem 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/* Liens */
a:hover {
  color: red;
}

/* Titraille */
h1 {
  font-family: times, "Times New Roman", times-roman, georgia, serif;
  color: #444;
  margin: 0;
  padding-top: 10px;
  font-size: 50px;
  line-height: 44px;
  letter-spacing: -2px;
  font-weight: bold;
}

h2 {
  font-family: "Times New Roman", Georgia, serif;
  color: #444;
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 2.2rem 0 0.8rem;
  padding: 0;
}

h3 {
  font-family: "lemon", Georgia, serif;
  color: #444;
  font-size: 27px;
  line-height: 1.3;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin: 2.2rem 0 0.8rem;
  padding: 0;
}

/* Effets de texte utilisés dans tes études */
.ombre {
  text-shadow: 1px 1px 1px black;
  color: #000000;
}
.ombreRed {
  text-shadow: 1px 1px 1px black;
  color: red;
}
.ombreBlue {
  text-shadow: 1px 1px 1px black;
  color: #005580;
}
.ombreBrown {
  text-shadow: 1px 1px 1px black;
  color: #802A00;
}
.ombreGreen {
  text-shadow: 1px 1px 1px black;
  color: green;
}

/* Images */
img {
  max-width: 95%;
  height: auto;
}

.size {
  max-width: 100%;
  height: auto;
}

.size-shadow {
  max-width: 100%;
  height: auto;
  box-shadow: 2px 2px 10px gray;
  -moz-box-shadow: 2px 2px 10px gray;
  -webkit-box-shadow: 8px 8px 10px gray;
}

/* Paragraphes */
p {
  color: #555;
  font-size: 22px;
  padding: 0 !important;
  font-family: "georgia", sans-serif;
  border: 0;
}

/* >Listes */
ul li {
  color: #555;
  font-size: 20px;
  font-family: "georgia", sans-serif;
}

ol li {
  color: #555;
  font-size: 20px;
  font-family: "georgia", sans-serif;
}

/* Mise en couleur / surlignage dans le texte */
.yellow { background: yellow; padding: 1px; }
.pink   { background: pink; padding: 1px; }
.green  { background: #99FF99; padding: 1px; }
.orange { background: #FFE099; padding: 1px; }
.red    { background: red; padding: 1px; }
.blue   { background: #A9BCF5; }
.white  { background: #F2F5A9; }
.pastel { background: #FFFF84; }

/* Soulignement ondulé rouge (TMN) */
.vagues {
  text-decoration-line: underline;
  text-decoration-color: red;
  text-decoration-style: wavy;
  /* + visibilité */
  text-decoration-thickness: 2px;   /* plus épais */
  text-underline-offset: 3px;         /* légèrement décollé du texte */
}


/* Barré rouge personnalisé (au cas où tu l’utilises) */
.strike {
  position: relative;
  display: inline-block;
}
.strike::before {
  content: '';
  border-bottom: 2px solid red;
  width: 100%;
  position: absolute;
  right: 0;
  top: 50%;
}

/* Ombre pour certaines images (puzzle, etc.) */
.shadow {
  box-shadow: 8px 8px 12px #aaa;
}

/* Colonne de lecture centrée */
.container {
  max-width: 95%;
  margin: 0 auto;
  overflow: auto;
}

/* “Faux” marges latérales (sidebars vides) */
.sidebar-left {
  width: 2%;
  float: left;
}
.sidebar-right {
  width: 2%;
  float: right;
}

/* Colonne de contenu */
.content {
  overflow: hidden;
  padding: 0 1.5rem 3rem;
}

/* Zone principale + footer collé en bas */
#main {
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  padding-bottom: 180px;  /* réserve de la place pour le footer */
}

footer {
  background: #131313;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  color: #e7e5e4;
}

footer a {
  text-decoration: none;
  color: #e7e5e4;
  font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
  font-size: 30px;
}

footer a:hover {
  color: #7B9AC6;
}

/* Lien de retour type “bouton” */
.back-link-wrapper {
  text-align: center;
  margin: 1.5rem 0 0;
}

.back-link {
  display: inline-block;
  padding: 0.6em 1.4em;
  border-radius: 999px;
  border: 1px solid #e7e5e4;
  background: #131313;
  color: #e7e5e4;
  font-family: "Avant Garde", "Century Gothic", system-ui, sans-serif;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
}

.back-link:hover {
  background: #1f1f1f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.back-link:active {
  transform: translateY(1px);
  box-shadow: none;
}

/* Liste de traductions (1 Jean 5:20) */
.translations-list {
  counter-reset: trad-counter;
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.translations-list li {
  counter-increment: trad-counter;
  position: relative;
  margin: 0.8rem 0;
  padding: 0.9rem 1.1rem 0.9rem 3.4rem;
  background: #f7f7f9;
  border-radius: 6px;
  border: 1px solid #d4d7dd;
  border-left: 4px solid #4b5a73;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  color: #444;
  font-size: 18px;
  font-family: "georgia", serif;
}

.translations-list li::before {
  content: counter(trad-counter, decimal-leading-zero);
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: #4b5a73;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1rem;
}

.translations-list li i {
  font-style: italic;
}

/* Bloc citation de verset (1 Pierre et King James / David Martin, etc.) */
.verse-box {
  position: relative;
  margin: 1.5rem auto;
  padding: 1.4rem 1.6rem 1.2rem;
  background: #f7f7f9;
  border-radius: 6px;
  border: 1px solid #d4d7dd;
  border-left: 4px solid #4b5a73;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  color: #444;
  font-size: 22px;
  font-family: "Georgia", serif;
}

.verse-box p {
  margin: 0.4em 0;
}

/* Référence du verset en bas à droite */
.verse-ref {
  margin-top: 0.8em;
  font-size: 0.95em;
  text-align: right;
  font-style: italic;
  font-weight: bold;
}

/* Petite icône Bible dans le coin haut-gauche */
.verse-icon {
  position: absolute;
  top: -16px;
  left: 18px;
  padding: 3px 6px;
  background: rgba(247, 247, 249, 0.9);
  border-radius: 999px;
}

.verse-icon-svg {
  width: 28px;
  height: 18px;
  fill: none;
  stroke: #4b5a73;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.7;
}

/* Encadré de note d'étude (remplace les anciens <table class="cadre">) */
.note-box {
  position: relative;
  max-width: 95%;
  margin: 1.4rem auto 1.8rem;
  padding: 1rem 1.2rem 1.1rem;
  background: #f8f4e9;
  border-radius: 6px;
  border: 1px solid #e3d8c3;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-size: 1.25em;
  color: #5a4a32;
}

/* Cartouche "Note" */
.note-box::before {
  content: "Note";
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  padding: 0.12rem 0.7rem;
  background: #f8f4e9;
  border-radius: 999px;
  border: 1px solid #e3d8c3;
  font-size: 0.8em;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7b6740;
}

/* Texte interne des notes */
.note-box p {
  margin: 0.35rem 0;
  font-size: 1em;
}

.manuscript-icon {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(247, 247, 249, 0.9);
  border-radius: 999px; /* petite pastille ovale */
}

.manuscript-icon-svg {
  width: 130px;    /* tu peux réduire à 60px si tu veux plus discret */
  height: auto;
  fill: none;
  stroke: #6b5b3a;          /* ton brun “manuscrit” */
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;            /* semi-opaque */
}

.underline {border-bottom: 2px solid red;}

.button {
    display: block;
    margin: 10px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow:    0 8px 0 silver, 0 15px 20px rgba(0, 0, 0, .35);
    -moz-box-shadow: 0 8px 0 silver, 0 15px 20px rgba(0, 0, 0, .35);
    box-shadow: 0 8px 0 silver, 0 15px 20px rgba(0, 0, 0, .35);
    -webkit-transition: -webkit-box-shadow .1s ease-in-out;
    -moz-transition: -moz-box-shadow .1s ease-in-out;
    -o-transition: -o-box-shadow .1s ease-in-out;
    transition: box-shadow .1s ease-in-out;
    font-size: 40px;
    color: #000000;
}

.button span {
margin-bottom:25px;
    display: block;
    padding: 20px 20px;
    background-color: #BDBDBD;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, .15);
    -moz-box-shadow: inset 0 -1px 1px rgba(255, 255, 255, .15);
    box-shadow: inset 0 -1px 1px rgba(255, 255, 255, .15);
    font-family: 'Pacifico', Arial, sans-serif;
    line-height: 1;
    text-shadow: 0 -1px 1px rgba(175, 49, 95, .7);
    -webkit-transition: background-color .2s ease-in-out, -webkit-transform .1s ease-in-out;
    -moz-transition: background-color .2s ease-in-out, -moz-transform .1s ease-in-out;
    -o-transition: background-color .2s ease-in-out, -o-transform .1s ease-in-out;
    transition: background-color .2s ease-in-out, transform .1s ease-in-out;
}

.button:hover span {
    background-color: #F5F6CE;
    text-shadow: 0 -1px 1px rgba(175, 49, 95, .9), 0 0 5px rgba(255, 255, 255, .8);
}

.button:active, .button:focus {
    -webkit-box-shadow:    0 8px 0 #000000, 0 12px 10px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 8px 0 #000000, 0 12px 10px rgba(0, 0, 0, .3);
    box-shadow:    0 8px 0 #000000, 0 12px 10px rgba(0, 0, 0, .3);
}

.button:active span {
    -webkit-transform: translate(0, 4px);
    -moz-transform: translate(0, 4px);
    -o-transform: translate(0, 4px);
    transform: translate(0, 4px);
}

.tab a:link {text-decoration:none;}

.bibles{color: #978848;}

.frame { border:4px solid red; padding:1px;}

.container::after {
  content: "";
  display: block;
  clear: both;
}

.wt{
  position: relative;
  max-width: 95%;
  margin: 1.4rem auto 1.8rem;
  padding: 2.5rem 1.2rem 1.1rem;
  background: #ECECEC;
  border-radius: 6px;
  border: 3px solid #C3CBD5;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  font-size: 1.25em;
  color: #5a4a32;
}

.wt::before{          
  opacity:0.3;
  content: "";
  position: absolute;
  top: 0;
  left: 1.1rem;

  width: 80px;
  height: 80px;

  background: no-repeat center / contain url("watchtower.svg");
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;

  /* cadre fin tout autour */
  border: 1px solid #000000;
}

.compare-table td {
  padding: 0.75rem 1rem;
  vertical-align: top;
}

/* ligne horizontale fine entre les 2 lignes */
.compare-row + .compare-row td {
  border-top: 1px solid #000000;
}

.bible-row {
  background-color: #ffffff;
}

.wt-row {
  background-color: #ececec;
}

table.tablo.compare-table {
  border-collapse: collapse;
  border: 1px solid #000;
}

/*table.tablo.compare-table td {
  border: 1px solid #000;
}*/

/* liaison citation */
.wt-group {
  position: relative;
  margin: 2rem 0;
}

/* Encadrés WT — adapte si tu as déjà un style */
.wt-group .wt {
  position: relative;          /* important pour la flèche */
  border: 1px solid #d4c9a0;
  padding: 2rem 1.2rem;
}

/* Espace entre les deux encadrés */
.wt-group .wt + .wt {
  margin-top: 2.5rem;
}

/* UNIQUEMENT la pointe de flèche sous le 1er encadré */
.wt-group .wt:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -32px;               /* descend un peu plus */
  transform: translateX(-50%);
  border-width: 20px 20px 0 20px; /* taille du triangle (↗ augmente = plus grand) */
  border-style: solid;
  border-color: #BBC6D7 transparent transparent transparent;
  z-index: 10;
}

.tablo-col1 {
  margin: 1.5rem auto;
  border-collapse: collapse;
  text-align: center;
  min-width: 260px;
}

.tablo-col1 caption {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tablo-col1 th,
.tablo-col1 td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  font-size:22px;
}

.tablo-col1 thead th {
  background: #f3f3f3;
}

.tablo-col1 .icons-row img {
  width: 22px;
  height: auto;
}

.tablo-compare {
  margin: 1.5rem auto;
  border-collapse: collapse;
  text-align: center;
  min-width: 260px;
}

.tablo-compare caption {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.tablo-compare th,
.tablo-compare td {
  border: 1px solid #ccc;
  padding: 0.5rem 0.75rem;
  font-size:25px;
}

.tablo-compare thead th {
  background: #f3f3f3;
}

.tablo-compare img {
  width: 22px;
  height: auto;
}

/* Noms de traduction en bleu comme avant */
.trad-label {
  font-size: 1.05rem;
  font-weight: 600;
}

.trad-darby,
.trad-tmn {
  color: #1f4fa8; /* bleu proche de ce que tu avais */
}

/* LIENS FIN de PAGE */
/* Bloc de liens juste avant le footer */
.page-links {
  max-width: 900px;
  margin: 3rem auto 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0; /* petite séparation avec le contenu */
}

/* Titre "Pour aller plus loin" */
.page-links-title {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #555;
  text-align: center;
}

/* Liste des liens */
.page-links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

/* Style des liens (pastilles noires sur fond blanc) */
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.3;
  transition:
    background-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease,
    box-shadow 0.12s ease,
    border-color 0.15s ease;
}

/* Petit chevron discret à droite */
.page-link::after {
  content: "›";
  font-size: 1.1rem;
  margin-left: 0.6rem;
  opacity: 0.7;
}

/* Hover : inversion noir/blanc, cohérent avec footer noir */
.page-link:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

/* Focus clavier */
.page-link:focus {
  outline: none;
  box-shadow:
    0 0 0 2px #fff,
    0 0 0 4px #000;
}

/* Sur écrans plus larges : 2 colonnes */
@media (min-width: 720px) {
  .page-links-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-links-list li {
    flex: 0 1 calc(50% - 0.75rem);
    display: flex;
    justify-content: center;
  }
}

.date {
  margin: 2.5rem auto 1.5rem;
  text-align: center;
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a4638;
  position: relative;
  display: inline-block;
  padding: 0.25rem 1.4rem;
  background: #f7f1e3;
  border: 1px solid #c6b79a;
  border-radius: 999px;        /* médaillon allongé */
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.06),
    0 6px 14px rgba(0,0,0,0.15);
}

.date::before,
.date::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 90px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(90, 78, 60, 0.5),
    transparent
  );
}

.date::before {
  right: 100%;
  margin-right: 0.75rem;
}

.date::after {
  left: 100%;
  margin-left: 0.75rem;
}

.date-year {
  font-weight: 700;
  margin-left: 1rem;
}

.date-mark {
  font-family: "Times New Roman", serif;
  font-size: 0.9rem;
  margin-left: 0.55rem;
  opacity: 0.8;
}
