/* ======== ALGEMEEN ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background-color: #f7faff;
  color: #222;
  line-height: 1.6;
}

/* ======== HEADER ======== */
.site-header {
  background-color: #0b4a8b;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

.site-header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.site-header p {
  font-size: 1rem;
  color: #d7e6ff;
}



/* promt van rik */
#prompts-van-rik {
  text-align: center;
  margin: 30px auto;
}

.collage {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.collage img {
  width: 180px !important;   /* 🔥 forceert breedte */
  height: 180px !important;  /* 🔥 forceert hoogte */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.collage img:hover {
  transform: scale(1.05);
}


/* ======== NAVIGATIE ======== */
.top-nav {
  margin-top: 1rem;
}

.top-nav a {
  color: #fff;
  background-color: #1565c0;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.top-nav a:hover {
  background-color: #64b5f6;
}

/* ======== SECTIES ======== */
.deel {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 2px solid #e0e0e0;
}

.deel h2 {
  color: #0b4a8b;
  margin-bottom: 0.5rem;
}

.deel .intro {
  font-style: italic;
  color: #444;
  margin-bottom: 1rem;
}

/* ======== TERMEN GRID ======== */
.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.term {
  background-color: #e3f2fd;
  border: 2px solid #90caf9;
  border-radius: 10px;
  padding: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  color: #0b4a8b;
}

.term:hover {
  background-color: #bbdefb;
  transform: scale(1.03);
}

/* ======== FOOTER MET UITLEG ======== */
.explain-footer {
  background-color: #0b4a8b;
  color: white;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.explain-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.explain-container h3 {
  font-size: 1.3rem;
  color: #bbdefb;
}

.explain-container h4 {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  color: #fff;
}

.explain-container p {
  margin-top: 0.75rem;
  font-size: 1rem;
  background-color: #1565c0;
  padding: 1rem;
  border-radius: 10px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 600px) {
  .top-nav a {
    display: inline-block;
    margin: 0.25rem 0.15rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
  }

  .term {
    font-size: 0.9rem;
    padding: 0.5rem;
  }

  .explain-container p {
    font-size: 0.95rem;
  }
}


#prompts-van-rik img {
  width: 180px !important;
  height: 180px !important;
}
