/* Lightbox overlay */
.lightboxOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: none;
  }
  
  /* Lightbox container */
  .lightbox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
  }
  
  /* Lightbox image */
  .lightbox img {
    max-width: 100%;
    max-height: 80vh;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  }
  
  /* Lightbox caption */
  .lightbox-caption {
    margin-top: 10px;
    text-align: center;
    color: #fff;
    font-size: 16px;
  }
  /* Description text */
.lightbox-caption {
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    z-index: 1;
  }
  .Galerie_section .img-box a[data-lightbox] {
    position: relative;
  }
  
  .Galerie_section .img-box a[data-lightbox]::after {
    content: attr(data-title);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    display: none;
  }
  
  .Galerie_section .img-box a[data-lightbox]:hover::after {
    display: block;
  }
    