﻿  <style>
    @font-face {
      font-family: 'Rogue Sans';
      src: url('Rogue Sans Ext Light.ttf') format('truetype');
    }

    body {
      font-family: 'Rogue Sans', sans-serif;
      background: url('background.png') no-repeat center center fixed;
      background-size: cover;
      margin: 0;
      padding: 40px;
      color: white;
      line-height: 1.6;
    }

    .container {
      max-width: 900px;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 30px;
      margin: auto;
      border-radius: 10px;
    }

    .header {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      margin-bottom: 30px;
    }

    .header img {
      max-width: 200px;
      border-radius: 10px;
    }

    a {
      color: white;
      text-decoration: underline;
    }

    a:hover {
      color: #ccc;
    }

    .error-msg {
      color: #ff8888;
      font-size: 0.9em;
    }

    input:invalid, textarea:invalid {
      border: 2px solid red;
    }

    input:valid, textarea:valid {
      border: 2px solid green;
    }

    form {
      margin-top: 40px;
    }

    label {
      display: block;
      margin-top: 15px;
    }

    input, textarea {
      width: 100%;
      padding: 8px;
      margin-top: 5px;
      border: none;
      border-radius: 5px;
    }

    .g-recaptcha {
      margin-top: 15px;
    }

    button {
      margin-top: 20px;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      background: #ffffff;
      color: #000;
      cursor: pointer;
    }

    button:hover {
      background: #ddd;
    }
	
	.menubalk {
  display: flex;
  flex-direction: row;         /* Horizontale layout */
  justify-content: flex-start; /* Links uitlijnen */
  gap: 5mm;                    /* Afstand van 5 millimeter */
  margin-bottom: 30px;
  flex-wrap: wrap;             /* Handig voor kleinere schermen */
}

.menubalk a {
  font-family: 'Rogue Sans', sans-serif;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 10px;
  transition: background 0.3s, transform 0.2s;
}

.menubalk a:hover {
  background-color: rgba(255, 255, 255, 0.35);
  transform: scale(1.02);
}

.bovenkop {
  text-align: center;
  margin-bottom: 30px;
}

.bovenkop h2 {
  font-family: 'Rogue Sans', sans-serif;
  font-size: 2.8em;
  font-weight: bold;
  color: white;
  margin: 0 auto;
}

/* Mobile instelling */

@media (max-width: 600px) {
  body {
    padding: 15px;
    background-size: cover;
  }

  .container {
    padding: 20px;
    border-radius: 5px;
  }

  .header {
    flex-direction: column;
    align-items: center;
  }

  .header img {
    max-width: 100%;
  }

  .menubalk {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .bovenkop h2 {
    font-size: 1.8em;
  }

  input, textarea, button {
    font-size: 1em;
  }

  </style>
/* Voeg hier al je andere CSS toe zoals .container, .menubalk, .titel, enz. */