@charset "UTF-8";
/* CSS Document */

/* ===============================
   POLICE
=============================== */
@font-face {
  font-family: 'RecursiveMono';
  src: url('../fonts/Recursive-VariableFont_CASL,CRSV,MONO,slnt,wght.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ===============================
   SCROLL INDICATOR
=============================== */
#scroll-indicator {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-family: 'RecursiveMono', monospace;
  font-size: 45px;
  color: #B0B0B0;
  z-index: 9999;
  pointer-events: none;
  user-select: none;
}

/* ===============================
   LIENS BAS DE PAGE
=============================== */
#bottom-right-links {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

#bottom-right-links a {
  font-family: 'RecursiveMono', monospace;
  font-size: 45px;
  color: black;
  text-decoration: none;
  transition: all 0.2s ease;
}

#bottom-right-links a:hover {
  -webkit-text-stroke: 1px white;
}

/* ===============================
   TAGS
=============================== */
#tags-fiche {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: nowrap;
}

#tags-fiche button {
  font-family: 'RecursiveMono', monospace;
  font-size: 20px;
  padding: 4px 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: black;
  transition: all 0.2s ease;
}

#tags-fiche button:hover {
  -webkit-text-stroke: 1px white;
}

/* ===============================
   FICHE
=============================== */
.fiche-colonne {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}

.fiche-titre {
  font-family: 'RecursiveMono', monospace;
  font-size: 45px;
  margin-bottom: 20px;
  text-align: center;
}

/* ===============================
   TEXTE
=============================== */
.fiche-texte p {
  font-family: 'RecursiveMono', monospace;
  font-size: 20px;
  line-height: 1.6;
  max-width: 60ch;      /* ≈ 50 caractères par ligne */
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ===============================
   IMAGE
=============================== */
.fiche-image {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 80px;
}

.fiche-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}



/* ===============================
   TAGS DANS LA FICHE
=============================== */
.fiche-tag {
  font-family: 'RecursiveMono', monospace;
  font-size: 35px;
  margin-right: 15px;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  color: black;
  transition: all 0.2s ease;
}
.fiche-tag:hover {
  color: black;
  -webkit-text-stroke: 1px white;
}

