@charset "UTF-8";
/* Beispiel Galerie-Layout */
/*.lightbox-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}*/
.ul-flex-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0;
  list-style-image: none;
  list-style-type: none;
  padding-left: 0px;
  padding-right: 0px; }

/*@media (max-width: 1100px) {
  .lightbox-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 520px) {
  .lightbox-gallery {
    grid-template-columns: 1fr;
  }
}*/
/* Bilderreihe */
.display-none {
  display: none; }

/* Vorschaubild */
.lightbox-item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #000;
  color: #fff;
  text-decoration: none; }

.lightbox-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.45s ease, filter 0.45s ease, box-shadow 0.45s ease; }

/* Orange Einfärbung */
.lightbox-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 120, 0, 0.58);
  opacity: 0;
  transition: opacity 0.45s ease; }

/* Font Awesome Lupe */
.lightbox-item::before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 4;
  font-size: 42px;
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45);
  transition: opacity 0.35s ease, transform 0.35s ease; }

/* Bildtitel im a-Tag */
.lightbox-item-title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none; }

/* Hover Effekte */
.lightbox-item:hover::after {
  opacity: 1; }

.lightbox-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); }

.lightbox-item:hover .lightbox-item-title {
  opacity: 1;
  transform: translateY(0); }

.lightbox-item:hover img {
  transform: scale(1.08) rotate(7deg);
  filter: blur(2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45); }

/* Lightbox Overlay */
.responsive-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 80px 45px;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: background 0.35s ease, opacity 0.35s ease, visibility 0.35s ease; }

.responsive-lightbox.is-open {
  background: rgba(0, 0, 0, 0.88);
  opacity: 1;
  visibility: visible; }

/* Lightbox Inhalt */
.responsive-lightbox-content {
  max-width: 100%;
  max-height: 100%; }

.responsive-lightbox-image {
  display: block;
  max-width: calc(100vw - 180px);
  max-height: calc(100vh - 170px);
  width: auto;
  height: auto;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.65);
  transition: opacity 0.3s ease, transform 0.3s ease; }

.responsive-lightbox.is-loaded .responsive-lightbox-image {
  opacity: 1;
  transform: scale(1); }

/* Unterer Bereich */
.responsive-lightbox-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 25px;
  margin-top: 15px;
  color: #fff; }

.responsive-lightbox-info {
  flex: 1;
  text-align: left; }

.responsive-lightbox-caption {
  font-size: 15px;
  line-height: 1.5; }

.responsive-lightbox-counter {
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.8; }

.responsive-lightbox-action {
  flex: 0 0 auto;
  text-align: right; }

.responsive-lightbox-button {
  display: inline-block;
  padding: 10px 18px;
  background: #ff7800;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease; }

.responsive-lightbox-button:hover {
  background: #e66b00;
  transform: translateY(-2px); }

/* Schließen Symbol */
.responsive-lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  z-index: 100002;
  width: 45px;
  height: 45px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease; }

.responsive-lightbox-close:hover {
  opacity: 0.75;
  transform: rotate(90deg); }

/* Navigationspfeile */
.responsive-lightbox-nav {
  position: fixed;
  top: 50%;
  z-index: 100001;
  width: 58px;
  height: 58px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 34px;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.25s ease, opacity 0.25s ease; }

.responsive-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28); }

.responsive-lightbox-prev {
  left: 24px; }

.responsive-lightbox-next {
  right: 24px; }

.responsive-lightbox-nav.is-hidden {
  display: none; }

/* Mobile */
@media (max-width: 700px) {
  .responsive-lightbox {
    padding: 64px 18px 32px; }

  .responsive-lightbox-image {
    max-width: calc(100vw - 36px);
    max-height: calc(100vh - 190px); }

  .responsive-lightbox-meta {
    flex-direction: column;
    gap: 12px; }

  .responsive-lightbox-action {
    width: 100%;
    text-align: left; }

  .responsive-lightbox-button {
    display: inline-block; }

  .responsive-lightbox-nav {
    width: 46px;
    height: 46px;
    font-size: 26px; }

  .responsive-lightbox-prev {
    left: 10px; }

  .responsive-lightbox-next {
    right: 10px; }

  .responsive-lightbox-close {
    top: 16px;
    right: 18px; } }
