/* NIEUW: Importeer het Lexend Deca lettertype van Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');

/* Algemene paginastijlen */
body {
  /* AANGEPAST: Gebruik Lexend Deca als het standaard lettertype */
  font-family: 'Lexend Deca', sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3 {
  font-weight: 300; /* dunnere lettertypes voor een minimalistische look */
  margin: 0.5rem 0;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- NIEUW: Header, Footer en Main Content Stijlen --- */
.site-header, .site-footer {
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer {
  border-top: 1px solid #eee;
  border-bottom: none;
  margin-top: auto; /* Duwt de footer naar de onderkant */
  text-align: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #888;
}

.logo img {
  height: 24px; /* Pas de hoogte van uw logo aan */
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
}

.main-content {
  padding: 2rem;
  flex-grow: 1; /* Zorgt ervoor dat de hoofdinhoud de beschikbare ruimte vult */
}
/* --- EINDE NIEUWE STIJLEN --- */


/* Herbruikbare grid-container */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Kaartstijl voor series en prints */
.card {
  border: 1px solid #eee;
  padding: 1rem;
  text-align: center;
  transition: box-shadow 0.2s ease-in-out;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background-color: #f0f0f0;
}

.card h2, .card h3 {
  margin-top: 0.5rem;
}

/* Stijlen voor de detailpagina van een print */
.print-detail-container {
  display: grid;
  grid-template-columns: 1fr; /* Standaard 1 kolom voor mobiel */
  gap: 2rem;
  align-items: start;
}

/* Vanaf een schermbreedte van 768px, gebruik 2 kolommen */
@media (min-width: 768px) {
  .print-detail-container {
    grid-template-columns: 1fr 1fr;
  }
}

.print-detail-container img {
  width: 100%;
  height: auto;
}
