/* Algemene resets en basis */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #f0f0f0;
  background-color: #121212;
  position: relative;
  min-height: 100vh;
}

/* Achtergrond-overlay door background.js */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) blur(3%);
  opacity: 0.25;
  transition: background-image 0.5s ease, opacity 0.5s ease;
}

/* Links */
a {
  color: #4dabf7;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Wrapper */
.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero sectie */
.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.hero .title h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.hero .subtitle {
  font-weight: 300;
  font-size: 1rem;
  color: #cccccc;
  margin-bottom: 1rem;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-block;
  background-color: #1f1f1f;
  color: #f0f0f0;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.875rem;
  border: 1px solid #333;
}

/* Quote */
blockquote.quote {
  border-left: 4px solid #4dabf7;
  padding-left: 1rem;
  color: #e0e0e0;
  font-style: italic;
  background-color: rgba(31, 31, 31, 0.9);
  border-radius: 6px;
}

blockquote.quote p + p {
  margin-top: 1rem;
}

/* Grid secties */
.grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Kaarten */
.card {
  background-color: rgba(31, 31, 31, 0.95);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

/* Kaarttitels */
.card h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tl-item {
  position: relative;
  padding-left: 1.5rem;
  color: #e0e0e0;
}

.tl-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #4dabf7;
  border-radius: 50%;
}

/* Lijsten */
.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  margin-bottom: 0.75rem;
  color: #e0e0e0;
}

.muted {
  color: #999;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 0.875rem;
  color: #aaa;
}

footer .btn {
  display: inline-block;
  margin-left: 0.5rem;
  background-color: #4dabf7;
  color: #121212;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
}

footer .btn:hover {
  background-color: #1e7dd8;
}

/* Responsiveness */
@media (max-width: 600px) {
  .hero {
    gap: 1.5rem;
  }
  .hero .title h1 {
    font-size: 2rem;
  }
  .card h2 {
    font-size: 1.25rem;
  }
}
