/* Reset & basis */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 20px;
}

.header-logo {
  height: 54px;
  width: auto;
}

/* Video */
.video {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

.video video {
  width: 100%;
  max-width: 600px;
  background: none;           /* Geen zwarte achtergrond */
  box-shadow: none;           /* Geen schaduw */
  outline: none;              /* Geen rand */
  border: none;               /* Geen rand */
}

.video-wrapper {
  display: flex;
  justify-content: center;
  margin: 0px auto; /* 👈 minder verticale marge */
  flex-direction: column;
  align-items: center;
  gap: 16px; /* 👈 optioneel: ruimte tussen preview en video als ze naast elkaar komen */
}

.video-preview {
  position: relative;
  cursor: pointer;
  max-width: 600px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.preview-image {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #000;
  background: rgba(255, 255, 255, 0.8);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}


.play-button:hover {
  background: rgba(255, 255, 255, 1);
}

#video-container {
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
}

#video-container video {
  width: 100%;
  border-radius: 8px;
  display: block;
  background: none;
  box-shadow: none;
}

.hidden {
  display: none;
}


/* Content */
main {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 10px; /* minder ruimte boven de tekst */
}

h2 {
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
  font-size: 1.7rem;
}

p {
  margin-bottom: 20px;
}

a {
  color: #333;
  text-decoration: underline;
}

a:hover {
  color: #0077cc;
}

/* Footer */
footer {
  max-width: 1024px;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

footer hr {
  border-top: 1px solid #ccc;
  margin: 40px auto 20px;
  width: 100%;
}

footer a {
  color: #666;
  margin: 0 6px;
  text-decoration: underline;
}

footer a:hover {
  color: #0077cc;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 15px;
  }

  .header-logo {
    height: 30px;
  }

  .video video {
    width: 100%;
  }

  h2 {
    font-size: 1.2rem;
  }
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 20px;
}