/* =========================
   RESET
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BODY – inkomhal
   ========================= */
body.home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Georgia", "Times New Roman", serif;
  color: #2a2a2a;

  background-color: #f1eee9;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255, 242, 220, 0.35), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(235, 230, 215, 0.25), transparent 65%);
}

/* =========================
   HEADER
   ========================= */
.home-header {
  text-align: center;
  margin: 70px 0 50px;
}

.home-header h1 {
  font-size: 2.4em;
  font-weight: normal;
  letter-spacing: 0.06em;
}

/* =========================
   MAIN
   ========================= */
.home-main {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* =========================
   POSTER GRID
   ========================= */
.home-posters {
  max-width: 1200px;
  margin: 80px auto 120px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 0 40px;
}

/* =========================
   POSTER
   ========================= */
.poster {
  text-align: center;
}

.poster a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.poster img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e6e1d9;
  display: block;
}

.poster span {
  display: block;
  margin-top: 10px;
  font-size: 1.05em;
  letter-spacing: 0.05em;
}

/* =========================
   FOOTER
   ========================= */
.home-footer {
  text-align: center;
  margin-bottom: 20px;
}

.footer-text {
  display: flex;
  flex-direction: column;

  /* één uniforme bries tussen alle regels */
  gap: 3px;

  font-size: 1.05em;
  letter-spacing: 0.06em;
  line-height: 1.15;
}

.footer-mail {
  font-size: 0.85em;
  text-decoration: none;
  color: #2a2a2a;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.footer-mail img {
  width: 11px;
  height: auto;
  opacity: 0.5;
  display: block;
}
@media (max-width: 900px) {
  .home-posters {
    grid-template-columns: repeat(2, 1fr);
  }


@media (max-width: 500px) {
  .home-posters {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .home-header h1 {
    font-size: 1.9em;
  }
}
