  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400');
  @import url('https://fonts.googleapis.com/css?family=Mr+Dafoe:300,400');
  @import url('https://fonts.googleapis.com/css2?family=Nothing+You+Could+Do&display=swap');

  body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('https://www.vandewerf.eu/vdw_VERHUIS/afb_vdw_shl.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: arial;
  }

  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(8px);
    z-index: -1;
  }

  .vdw_sign {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg) skew(20deg, 20deg);
    width: 500px;
    height: 500px;
    background: #EAE7DF;
    box-shadow: inset 0 0 0 10px #ffCB3A;
    border: 5px dotted #E6D1b2;
    border-top-left-radius: 70px;
    border-bottom-right-radius: 70px;
  }

  .vdw_text {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    white-space: nowrap;
    font-family: Helvetica, sans-serif;
    color: #0261DF;
  }

  .vdw_welcome {
    display: flex;
  }

  .vdw_welcome span {
    display: inline-block;
    width: 32px;
    height: 30px;
    padding: 15px;
    font-size: 30px;
    font-weight: bold;
    color: #FF020D;
    background: #EAE7DF;
    border: 1px solid #DEC08C;
    border-radius: 50%;
    box-shadow: 0px 10px 5px #5D646E;
  }

  .vdw_text .vdw_to {
    position: relative;
    top: 28px;
    left: -140px;
    font-family: 'Open Sans';
    font-size: 26px;
    font-weight: 400;
  }

  .vdw_text .vdw_fab {
    position: relative;
    top: -14px;
    left: 5px;
    font-family: 'Mr Dafoe';
    font-size: 64px;
    line-height: 50px;
    letter-spacing: 5px;
  }

  .vdw_text .vdw_las {
    position: relative;
    top: -20px;
    left: 8px;
    font-size: 66px;
    font-weight: 600;
    letter-spacing: 5px;
    color: red;
  }

  .vdw_text .vdw_nv {
    position: relative;
    top: -25px;
    left: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 6px;
  }
  /* Verbeterde button styling */
  .vdw_button,
  .vdw_button:visited {
    display: inline-block;
    min-width: 160px;
    padding: 0.75rem 1.25rem;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: 'Nothing You Could Do', cursive;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: hsl(50, 100%, 50%);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 2px 4px 6px hsl(50, 70%, 40%);
    transition: all 0.3s ease;
  }

  .vdw_button:hover {
    background-color: hsl(50, 100%, 40%);
    transform: scale(1.2);
  }

  .vdw_hover-effect {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
    transform-origin: bottom left;
  }

  .vdw_hover-effect:hover {
    width: 90%;
    height: auto;
  }

  .vdw_container {
    max-width: 100%;
    max-height: 95vh;
    height: 95%;
    margin: 2rem auto;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }

  .vdw_header {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Nothing You Could Do', cursive;
    color: hsl(50, 100%, 50%);
    margin-bottom: 1.5rem;
  }

  .vdw_news-container {
    max-height: 90%;
    overflow-y: auto;
    padding-right: 1rem;
  }

  .vdw_news-item {
    margin-bottom: 2rem;
    padding: 1rem;
    border-bottom: 1px solid hsl(50, 100%, 50%);
  }

  .vdw_news-item:last-child {
    border-bottom: none;
  }

  .vdw_news-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: hsl(50, 100%, 50%);
  }

  .vdw_news-content {
    margin: 1rem 0;
    font-size: 1.2rem;
    color: #FFFFFF;
  }

  .vdw_news-content a {
    color: hsl(50, 100%, 60%); /* Gele tint passend bij je thema */
    text-decoration: underline; /* Onderstreept voor herkenbaarheid */
    font-weight: bold; /* Optioneel: maak de tekst dikker */
  }

  .vdw_news-content a:hover {
    color: hsl(50, 100%, 80%); /* Lichtere kleur bij hover */
    text-decoration: none; /* Onderstreping verwijderen bij hover */
  }

  .vdw_news-image {
    display: block;
    width: 30%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease; /* Vloeiende overgang bij hover */
    transform-origin: bottom left; /* Linkeronderhoek blijft vast */
  }

  .vdw_news-image:hover {
    width: 50%; /* Laat de afbeelding over de hele breedte groeien */
    height: auto; /* Houdt aspectratio intact */
  }

  .vdw_nieuws-leeg {
    color: #ff0000;
    font-weight: bold;
  }

  .vdw_date {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: hsl(50, 100%, 40%);
  }

  .vdw_gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 10px;
    width: 1200px;
    box-sizing: border-box;
  }

  .vdw_gallery img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .vdw_gallery img:hover {
    transform: scale(1.03);
  }

  .vdw_lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem; /* ruimte aan alle kanten */
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-sizing: border-box;
  }

  .vdw_lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid white;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
  }

  .vdw_lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 0 15px;
    cursor: pointer;
    user-select: none;
    z-index: 10000;
  }

  .vdw_lightbox-arrow.left {
    left: 10px;
  }

  .vdw_lightbox-arrow.right {
    right: 10px;
  }

  .vdw_lightbox-caption {
    position: absolute;
    bottom: 10px;
    color: white;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 4px;
    max-width: 90%;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .vdw_lightbox-full {
    max-width: 90vw;
    max-height: 90vh;
    border: 4px solid white;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
    z-index: 9998;
    display: block;
    margin: 0 auto;
  }

  .vdw_lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10000;
    display: inline-block;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
  }

  .vdw_lightbox-arrow.left {
    left: 2vw; /* i.p.v. vaste pixels */
  }

  .vdw_lightbox-arrow.right {
    right: 2vw; /* zorgt dat hij zichtbaar blijft ook bij brede foto */
  }

  .vdw_lightbox-arrow img {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .vdw_lightbox-arrow img:hover {
    transform: scale(1.2);
  }

  .vdw_lightbox-icon {
    width: 24px;
    height: 24px;
    pointer-events: none;
  }

  .vdw_lightbox-icon:hover {
    transform: scale(1.2);
  }

  .vdw_lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    color: white;
  }

  .vdw_lightbox-close:hover {
    transform: scale(1.3);
  }

  .vdw_topnav {
    position: relative;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 1rem 2rem;
    font-family: 'Nothing You Could Do', cursive;
  }

  .vdw_topnav-title {
    font-size: 2.5rem;
    color: #FFE44C;
    text-shadow: 1px 1px 4px black;
    display: inline-block;
  }

  .vdw_topnav-link.left,
  .vdw_topnav-link.right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #FF020D;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    border: 3px solid #FF020D;
    border-radius: 6px;
    transition: all 0.2s ease;
  }

  .vdw_topnav-link.left {
    left: 0.5rem;
  }

  .vdw_topnav-link.right {
    right: 0.5rem;
  }

  .vdw_topnav-link:hover {
    background-color: #FF020D;
    color: white;
  }

  .vdw_date {
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 300;
    color: white;
    text-align: center;
    margin: 0.5em 0;
    opacity: 0.9;
  }

  .vdw_klok-frame {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 200px;
    height: 60px;
    border: none;
    opacity: 0.85;
    z-index: 999;
  }
  /* Toevoegingen voor like-pagina */

  .vdw_form {
    text-align: center;
    margin-bottom: 2rem;
  }

  .vdw_textarea {
    width: 90%;
    max-width: 600px;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #000;
  }

  .vdw_textarea::placeholder {
    color: #666;
  }

  .vdw_info {
    font-size: 1.1rem;
    color: #ffe;
    margin-bottom: 1rem;
  }

  .vdw_form label {
    font-size: 1.5rem;
    margin: 0 0.25rem;
    cursor: pointer;
  }

  .vdw_form input[type="radio"] {
    margin-right: 0.3rem;
  }


  .vdw_likes {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0.5rem;
  }

  .vdw_like-entry {
    margin-bottom: 1rem;
    padding: 0.75rem;
    border-bottom: 1px solid hsl(50, 100%, 50%);
    color: #fff;
    text-align: left;
    height: 100%;
  }

  .vdw_like-entry:last-child {
    border-bottom: none;
  }

  .vdw_like-entry .vdw_date {
    display: block;
    font-size: 0.8rem;
    color: #ccc;
    margin-top: 0.25rem;
  }
  .vdw_nieuws-leeg {
    color: #ff0000;
    font-weight: bold;
  }

  .vdw_button-static {
  position: static;
  display: inline-block;
  margin-top: 1rem;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  background-color: hsl(50, 100%, 50%);
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 2px 4px 6px hsl(50, 70%, 40%);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Submitknop en statische knop hover effect */
.vdw_button-static:hover,
.vdw_submit-button:hover {
  background-color: hsl(50, 100%, 40%);
  transform: scale(1.1);
}

  ::-webkit-scrollbar {
    width: 16px;
  }

  ::-webkit-scrollbar-track {
    background: hsl(225, 70%, 30%);
    box-shadow: inset 0 0 5px hsl(225, 70%, 25%);
    border-radius: 8px;
  }

  ::-webkit-scrollbar-thumb {
    background: hsl(50, 100%, 50%);
    border: 3px solid hsl(225, 70%, 30%);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: hsl(50, 100%, 40%);
    box-shadow: 0 2px 8px hsl(50, 100%, 40%);
  }

  @media screen and (min-width: 400px) and (max-width: 1023px) {
    .vdw_news-image {
      width: 70%;
      max-width: 90%;
    }

    .vdw_news-image:hover {
      width: 90%; /* Laat de afbeelding over de hele breedte groeien */
      height: auto; /* Houdt aspectratio intact */
    }

    .vdw_header {
      font-size: 1.5rem;
    }

    .vdw_news-title {
      font-size: 1.3rem;
    }

    .vdw_button {
        font-size: 1.2rem;
        min-width: 70%;
        padding: 1rem;
      }

    .vdw_hover-effect:hover {
      width: 100%;
    }
  }
