/* ===================== */
/*         RESET         */
/* ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===================== */
/*     BODY & LAYOUT     */
/* ===================== */
html, body {
  width: 100%;
  min-height: 100%;
  background-color: #27292c;
  font-family: Verdana, sans-serif;
  color: #fff;
}

/* Conteneur principal : centre horizontalement, max-width pour la lisibilité */
.main-container {
  width: 100%;
  max-width: 971px; /* Largeur max de l'image d'origine */
  margin: 0 auto;
  padding: 20px 0;
}

/* Wrapper avec ratio pour conserver les proportions */
.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 971 / 1092;
}

/* ===================== */
/*     BACKGROUND IMG    */
/* ===================== */
.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* sécurité si ratio différent */
}

/* ===================== */
/*     TEXT CONTAINER    */
/* ===================== */
.text-container {
  position: absolute;
  left: 3.8%;
  top: 21.7%;
  width: 92.5%;
  height: 69.6%;
  background-color: #131016;
  padding: 10px; /* Par défaut */
  overflow-y: auto; /* Scroll si dépasse */
}

/* Sur desktop, on augmente le padding */
@media (min-width: 1024px) {
  .text-container {
    padding: 20px;
  }
}

.text-content {
  text-align: center;
}

.text-content p {
  margin-bottom: 1em;
  line-height: 1.4;
  font-size: 1em;
}

.text-content p.countdown {
  font-size: 0.8em;
  margin-top: 2em;
  margin-bottom: 2.5em;
}

.text-content p.made-in {
  font-size: 0.7em;
  margin-top: 4em;
  font-style: italic;
}

/* ===================== */
/*      TITRES / SPAN    */
/* ===================== */
.page-title {
  font-family: 'Permanent Marker', cursive;
  font-size: 1.5rem;
  color: #c9aa7d;
  text-align: center;
  margin-bottom: 1rem;
}

/* Accent sur le compte à rebours et l'âge */
#countdown,
#captureAge {
  font-weight: bold;
  color: #c9aa7d;
}

/* Wayback Machine : style "machine à écrire" + couleurs rappel logo */
.wayback {
  font-family: 'Special Elite', monospace;
  color: #000;       /* noir */
  background-color: #fff;
  padding: 2px 4px 0 4px;
  font-weight: bold;
}
.machine {
  font-family: 'Special Elite', monospace;
  color: #c00;       /* rouge */
  background-color: #fff;
  padding: 2px 4px 0 4px;
  font-weight: bold;
}

/* ===================== */
/*        BUTTONS        */
/* ===================== */
.archive-button,
.contact-button {
  display: block;
  width: fit-content;
  margin: 20px auto 10px; /* Centre horizontalement */
  padding: 10px 20px;
  border-radius: 5px;
  font-family: 'Permanent Marker', cursive;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}

.archive-button {
  border: 2px solid #444;
  background-color: #222;
  color: #fff;
  font-size: 1.1rem;
}
.archive-button:hover {
  background-color: #444;
  color: #c9aa7d;
}

.contact-button {
  border: 1px solid #444;
  background-color: #222;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 0;
}
.contact-button:hover {
  background-color: #333;
  color: #c9aa7d;
}

/* ===================== */
/*    FOREGROUND IMG     */
/* ===================== */
.foreground-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* On ne peut pas cliquer dessus */
  z-index: 2;
}

/* ===================== */
/*      RESPONSIVE       */
/* ===================== */
@media (max-width: 480px) {
  .text-content p {
    font-size: 0.85em;
  }
  .archive-button {
    font-size: 1rem;
    padding: 8px 16px;
  }
  .contact-button {
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  .page-title {
    font-size: 1.2rem;
  }
}
