/* Body setup */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0b0c10;
  color: #c5c6c7;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
}

/* Headings */
h1, h2 {
  font-family: 'Playfair Display', serif;
  color: #66fcf1;
  margin-top: 1rem;
}

/* Paragraphs */
p {
  font-size: 1.5rem;
  margin-top: 1rem;
  max-width: 600px;
}

/* Normal links (breadcrumb, footer, etc.) */
a {
  background-color: transparent;
  color: #45a29e;
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #66fcf1;
  text-decoration: underline;
}

/* Special main button */
.main-button {
  margin-top: 2rem;
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  color: #45a29e;
  background-color: transparent;
  border: 1px solid #45a29e;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.main-button:hover {
  background-color: #45a29e;
  color: #0b0c10;
  border-color: #45a29e;
  text-decoration: none;
}

.back-link {
      display: block;
      text-align: center;
      margin-top: 3rem;
      text-decoration: none;
      color: #45a29e;
      border: 1px solid #45a29e;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background-color 0.3s, color 0.3s;
      max-width: 200px;
      margin-left: auto;
      margin-right: auto;
    }
    .back-link:hover {
      background-color: #45a29e;
      color: #0b0c10;
    }

/* Grid for archive tiles */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 3rem;
}

.tile {
  background: url('https://upload.wikimedia.org/wikipedia/commons/8/86/Old_Parchemin.jpg') center/cover;
  background-blend-mode: multiply;
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid #45a29e;
  padding: 2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #0b0c10;
}

.tile:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #66fcf1;
}

/* Back link (on Anaïs page) */
.back-link {
  color: #45a29e;
  margin-top: 2rem;
  text-decoration: none;
  border: 1px solid #45a29e;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.back-link:hover {
  background-color: #45a29e;
  color: #0b0c10;
}

/* Header and Footer */
header, footer {
  width: 100%;
  background-color: #0b0c10;
  padding: 1rem 0;
}

header h2, nav.breadcrumb, footer {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

/* Footer specifics */
footer {
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #c5c6c7;
  border-top: 2px solid #45a29e;
  padding-top: 1rem;
}

/* Breadcrumb navigation */
nav.breadcrumb {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

nav.breadcrumb a {
  color: #66fcf1;
  margin: 0 5px;
}

nav.breadcrumb a:hover {
  text-decoration: underline;
}
