@charset "UTF-8";
@font-face {
  font-family: "NeueHaasBold";
  src: url("../fonts/neueHaas/NeueHaasGroteskText75Bold/font.woff2") format("woff2"), url("../fonts/neueHaas/NeueHaasGroteskText75Bold/font.woff") format("woff");
}
@font-face {
  font-family: "NeueHaasRoman";
  src: url("../fonts/neueHaas/NeueHaasGroteskText55Roman/font.woff2") format("woff2"), url("../fonts/neueHaas/NeueHaasGroteskText55Roman/font.woff") format("woff");
}
@font-face {
  font-family: "NeueHaasMedium";
  src: url("../fonts/neueHaas/NeueHaasGroteskText65Medium/font.woff2") format("woff2"), url("../fonts/neueHaas/NeueHaasGroteskText65Medium/font.woff") format("woff");
}
body {
  margin: 0;
  font-family: NeueHaasRoman, Arial, Helvetica, sans-serif;
}

.main-content {
  margin-top: 4rem;
}

footer {
  background-color: rgb(240, 240, 238);
  margin-top: 4rem;
}

/* --- Galerie mit Grid --- */
.galerie-wrapper h1 {
  margin-bottom: 3rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.gallery img {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
  justify-self: start;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* --- Media Queries für kleinere Geräte --- */
@media (max-width: 900px) {
  .gallery img {
    max-width: 426px;
  }
}
/* --- Lightbox Modal --- */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1000;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 10px;
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.active img {
  transform: scale(1);
  opacity: 1;
}

/* Bildtitel */
#caption {
  margin-top: 10px;
  font-size: 1em;
  color: #ddd;
  max-width: 90%;
  text-align: center;
}

/* Navigation Buttons */
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5em;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  line-height: 1;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.close {
  top: 20px;
  right: 30px;
  font-size: 2em;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  color: white;
}

.custom-submit-btn {
  display: inline-block;
  background: linear-gradient(to right, #ff7e5f, #feb47b);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  /* Responsive Verhalten */
  width: auto;
}
.custom-submit-btn:hover {
  filter: brightness(1.1);
  transform: scale(1.05);
}
.custom-submit-btn:active {
  transform: scale(0.95);
}
.custom-submit-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.4);
}
@media (max-width: 576px) {
  .custom-submit-btn {
    width: 100%;
    padding: 0.6rem 0;
  }
}
@media (min-width: 577px) and (max-width: 992px) {
  .custom-submit-btn {
    width: 75%;
    margin: 0 auto;
  }
}
@media (min-width: 993px) {
  .custom-submit-btn {
    width: 50%;
    margin: 0 auto;
  }
}/*# sourceMappingURL=styles.css.map */