html, body {
    height: 100%;
}
body {
    background-color: #f1eae0;
    color: #0b2f39;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
	font-size: 18px; 
}
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px;
    flex: 1; 
}
header {
    text-align: center;
    padding: 32px 20px 0px 20px;
    ;
}
img.logo {
    max-width: 320px;
    height: auto;
}
h1 {
    text-align: center;
    margin: 0 0 24px;
}
.title-name {
    display: block;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.2;
}
.title-tagline {
    display: block;
    font-size: 30px;
    font-weight: normal;
    color: #234c5a;
    line-height: 1.2;
}
h2 {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0b2f39;
    border-bottom: 2px solid #0b2f39;
    padding-bottom: 6px;
}
p {
    margin-bottom: 16px;
    font-size: 1.05em;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
}
ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}
ul li::before {
    content: "✅";
    margin-right: 8px;
}
.contact-info {
  background-color: #f9f5f0;
  padding: 28px 24px;
  border-radius: 10px;
  font-size: 1.1em;
  line-height: 1.8;
  margin: 32px 0 24px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e3d7c4;
  width: 100%;
  box-sizing: border-box;
}
.contact-info p {
  margin: 0 0 16px;
}
.contact-info strong {
  display: block;
  margin-bottom: 4px;
  color: #0b2f39;
}
.contact-info a {
  color: #0b2f39;
  font-weight: bold;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Algemene link-opmaak */
a {
    color: #0b2f39;
    text-decoration: underline;
}
a:hover {
    color: #234c5a;
}
/* FOOTER */
.footer {
    background-color: #e6d8c3; 
    padding: 36px 0;
    margin-top: auto;
    width: 100%;
}
.footer .button-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 20px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.button {
    flex: 1 1 180px;
    max-width: 220px;
    min-width: 180px;
    padding: 12px 24px;
    background-color: #0b2f39;
    color: #f1eae0;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
}
.button:hover {
    background-color: #234c5a;
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 480px) {
    .container, .container p, .container ul, .container li {
        text-align: center;
    }
}
.gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .gallery img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      border-radius: 6px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      transition: transform 0.2s ease;
      cursor: pointer;
    }

    .gallery img:hover {
      transform: scale(1.02);
    }
.gallery figure {
  margin: 0;
  text-align: center;
}

.gallery figcaption {
  margin-top: 8px;
  font-size: 0.95em;
  color: #234c5a;
}
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85);
  align-items: center;
  justify-content: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 1001;
}


    @media (max-width: 800px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .gallery {
        grid-template-columns: 1fr;
      }
    }

@media (max-width: 500px) {
  body {
    font-size: 20px; /* mobiel groter lettertype */
  }
}


/* hamburger menu 
.main_nav_wrapper {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  z-index: 100;
  user-select: none;
}

.hamburger {
  font-size: 30px;
  font-weight: bold;
  color: #0b2f39;
  cursor: pointer;
  user-select: none;
  padding: 4px 10px;
  background-color: #ecdfcc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main_nav_dropdown {
  position: absolute;
  top: 55px;
  right: 10px;
  background-color: #0b2f39;
  display: flex;
  flex-direction: column;
  z-index: 101;
  padding: 20px 28px;
  border-radius: 6px;
  gap: 12px;
  width: max-content;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.main_nav_dropdown.visible {
  opacity: 1;
  pointer-events: auto;
}

.game-link {
  color: #f1eae0;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
}

.game-link:hover {
  text-decoration: underline;
}


@media (max-width: 480px) {
  .main_nav_wrapper {
    right: auto;
    left: 10px;
  }

  .main_nav_dropdown {
    right: auto;
    left: 10px;
  }
}
*/