  .gallery {
  	margin: 1rem auto 2rem;
  }
  @media (max-width: 750px) {
    .gallery-wrap {
        flex-direction: column;
    }
  }
  .gallery-wrap {
    display: flex;
    gap: 2rem;
  }
  .theme {
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .theme:hover {
    transform: scale(1.05);
  }
  .theme img {
    width: 100%;
    object-fit: cover;
  }
.theme .card-text {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  text-align: left;
}
.theme .card-text h6 {
  color: #333;
  font-weight: 600;
}
.theme .card-text p {
  color: #333;
}
  .theme span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #444;
  }

  /* Lightbox */
  .light-box {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    padding: 10px;
  }

  .light-box.active {
    display: flex;
  }

  .light-box img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 25px rgba(0,0,0,0.6);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Navigatieknoppen */
  .light-box .close,
  .light-box .prev,
  .light-box .next {
    position: absolute;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.2s ease;
  }

  .light-box .close:hover,
  .light-box .prev:hover,
  .light-box .next:hover {
    color: #ccc;
  }

  .light-box .close { top: 200px; right: 30px; font-size: 35px; }
  .light-box .prev { left: 10px; top: 50%; transform: translateY(-50%); font-size: 50px; }
  .light-box .next { right: 10px; top: 50%; transform: translateY(-50%); font-size: 50px; }

  @media (max-width: 600px) {
    .light-box .prev, .light-box .next { font-size: 40px; }
  }
