body {
  margin: 0;
  font-family: "Comic Sans MS", cursive, sans-serif;
  background: #4b0082; /* Donkerpaars */
  color: #fff;
}

header {
  background: #2e0854; /* Donkerdere paars */
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  text-align: center;
}

.logo {
  width: 150px;
  margin-bottom: 10px;
}

.site-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #fff;
}

.slogan {
  font-size: 1.1em;
  color: #f0e6ff;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  background: #6a0dad;
  padding: 8px 14px;
  border-radius: 5px;
  transition: background 0.3s;
}

nav a:hover {
  background-color: #9b4dcc;
}

main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.intro h1 {
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
}

.intro p {
  text-align: center;
  line-height: 1.6;
}

.video-gallery h2 {
  text-align: center;
  font-size: 1.5em;
  margin: 30px 0 20px;
}

.video-grid {
  display: grid;
  display: center;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  justify-items: center;
}

.video-grid iframe {
  width: 100%;
  max-width: 320px;
  height: 180px; /* 240p verhouding */
  border: none;
  border-radius: 8px;
  background: #000;

}

footer {
  text-align: center;
  padding: 20px;
  background: #2e0854;
  font-size: 0.9em;
  color: #ccc;
  margin-top: 40px;
}
