body {
    font-family: 'Merriweather', serif;
    background-color: #f3f1e7;
    color: #2e2b20;
    margin: 0;
    padding: 0;
  }
  
  header {
    background-color: #355e3b;
    color: white;
    text-align: center;
    padding-bottom: 1em;
  }
  
  .banner {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 10px;
  }

  .corner-logo-1 {
    position: relative;
    right: 10px;
    max-height: fit-content;
    max-width: 100px;
    width: 100px;
    opacity: 0.8;
    z-index: 1000;
  }

  .corner-logo-2 {
    position: relative;
    left: 1273px;
    max-height: fit-content;
    max-width: 100px;
    width: 100px; 
    opacity: 0.8;
    z-index: 1000;
  }

  nav {
    margin-top: 0.5em;
  }
  
  nav a {
    margin: 0 1em;
    text-decoration: none;
    color: #f0eada;
    font-weight: bold;
  }
  
  nav a:hover {
    text-decoration: underline;
  }
  
  section {
    margin-bottom: 2rem;
  }

  main {
    max-width: 800px;
    margin: auto;
    padding: 2em;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  h1 {
    margin-top: 0.5em;
    font-size: 2.5em;
    color: #fdf4dc;
  }
  
  h2 {
    color: #3a4d2d;
  }

  h3 {
    color: #3a4d2d;
  }

  footer {
    text-align: center;
    padding: 1em;
    background-color: #d9d5c8;
    margin-top: 3em;
  }

  form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Segoe UI', sans-serif;
  }
  
  form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #3e3e3e;
  }
  
  label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #2d2d2d;
    font-weight: 500;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    box-sizing: border-box;
  }
  
  textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  button[type="submit"] {
    background-color: #4f774f;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1em;
    border-radius: 8px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #3d5f3d;
  }
  
  .agenda {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .event {
    background-color: #f8f5f0;
    border-left: 6px solid #4f774f;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .event h3 {
    margin-top: 0;
    color: #2e4632;
  }
  
  .event p {
    margin-bottom: 0;
    line-height: 1.5;
  }
  
  .contact-info {
    margin-top: 2rem;
    background-color: #f8f8f8;
    padding: 1rem;
    border-radius: 10px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .contact-info h3 {
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  
  .contact-info ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info li {
    margin-bottom: 0.5rem;
  }
  
  .contact-info a {
    color: #006400;
    text-decoration: none;
  }
  
  .corner-logo {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 100px;
    opacity: 0.8;
    z-index: 1000;
  }
  
  .corner-logo:hover {
    opacity: 1;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  
/* Mobiele layout voor schermen kleiner dan 768px */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    padding: 1rem;
  }

  header, nav, main, footer {
    padding: 0.5rem;
  }

  nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .banner-title {
    font-size: 1.5rem;
    padding: 0.5rem;
  }

  img, iframe {
    max-width: 100%;
    height: auto;
  }

  .corner-logo-1 {
    position: relative;
    right: 0px;
    max-height: fit-content;
    max-width: 100px;
    width: 100px;
    opacity: 0.8;
    z-index: 1000;
  }

  .corner-logo-2 {
  
    left: 164px;
    max-height: fit-content;
    max-width: 100px;
    width: 100px; 
    opacity: 0.8;
    z-index: 1000;
  }

  form input,
  form textarea,
  form button {
    width: 100%;
    font-size: 1rem;
  }

  .contact-info ul {
    padding-left: 1rem;
  }

  .corner-logo {
    width: 60px;
    bottom: 10px;
    right: 10px;
  }
}
