* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

/* Listen: Einzug für Aufzählungszeichen wiederherstellen (das * { padding: 0 } strippt sonst ul/ol) */
ul:not(.navbar-nav):not(.list-unstyled),
ol {
  padding-left: 1.5rem;
}

ul:not(.navbar-nav):not(.list-unstyled) li,
ol li {
  padding-left: 0.35rem;
  margin-bottom: 0.25rem;
}

/* Accessibility: sichtbarer Fokus-Zustand */
a:focus-visible,
button:focus-visible,
.gallery-item:focus-visible,
[role="button"]:focus-visible {
  outline: 2px solid #660708;
  outline-offset: 2px;
  border-radius: 2px;
}

@font-face {
  font-family: 'MPLUS2';
  /* Check the exact filename of the .ttf you downloaded */
  src: url('../fonts/MPLUS2-VariableFont_wght.ttf') format('truetype-variations');
  
  /* This tells the browser the file supports weights from 100 to 900 */
  font-weight: 100 900; 
  font-style: normal;
  font-display: swap;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: white;
  font-family: "MPLUS2", sans-serif;
}

header {
  background-color: white;
  width: 100%;
  display: inline-block;
  box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 100;
}

li::marker {
  color: #660708ff;
}

.contactbtn {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #660708ff;
}

.contactbtn:hover {
  text-decoration: none;
  color: #ba181bff;
}

.mobiletel {
  display: none;
}

.navbar {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  min-height: 70px;
  font-weight: 600;
  font-size: 13pt;
  background-color: white;
}

.nav-item {
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-brand {
  width: 20%;
}

button {
  border: none;
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: white;
}

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show > .nav-link {
  color: #660708ff;
  border-top: solid 1px #ba181bff;
}

.navbar-light .navbar-nav .nav-link:hover {
  color: #ba181bff;
}

.hero {
  background-image: url(../images/hero.webp);
  height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.hero-text > h1 {
  font-size: 50px;
}

.hero-text > p {
  font-size: 30px;
}

.text-red {
  color: #660708ff;
}

.text-lred {
  color: #ba181bff;
}

.text-black {
  color: #333333ff;
}

.border-red {
  border: 1px solid #660708ff;
  border-radius: 3px;
}

.card {
  border: none;
}

footer {
  background-color: #e8e8e8ff;
}

.footer-container {
  max-width: 1400px;
}

.feature-img {
    width: 100%;
    height: 600px; /* Adjust this to your liking */
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.feature-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
  .fa-bars {
    font-size: 26px;
  }

  .contact {
    display: none;
  }

  .contantbtn {
    display: none;
  }

  .navbar {
    margin-top: -1.5rem;
  }

  .navbar-brand {
    margin: auto;
    width: 80px;
  }

  .navbar-brand-img {
    width: 80%;
  }

  .mobiletel {
    display: flex;
    text-decoration: none;
    color: #ba181bff;
    margin-left: 1rem;
    padding: 5px;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 10vw;
    width: 100%;
  }
  .feature-img {
      height: 250px;
  }
  .card-body {
       padding: 1.5rem 0 !important;
  }
}
@media (max-width: 991.98px) {
  .desktop-card {
    display: none;
  }

  .navbar-collapse {
    border: transparent;
  }

  .navbar-collapse.show {
    background-color: white;
    padding: 0.5rem 0 1rem;
  }

  .navbar-light .navbar-nav .nav-link.active {
    color: #660708ff;
    border-top: solid 1px transparent;
  }

  button:focus {
    outline: none;
  }

  .page-hero-text {
    padding: 0 1.25rem;
  }
}
/* ── Page Hero (Kategorie-Banner) ── */
.page-hero {
  position: relative;
  height: 260px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.page-hero-text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}
.page-hero-text h1 {
  font-size: 2.5rem;
  font-weight: 600;
}
.page-hero-text p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: #f0f0f0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.lightbox.active {
  display: flex;
}
.lightbox-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-content img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 26px;
  color: white;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.8;
  transition: opacity 0.2s;
  padding: 0;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  padding: 12px 18px;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}
.lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
.lightbox-counter {
  position: fixed;
  top: 22px;
  left: 26px;
  color: white;
  background: rgba(0, 0, 0, 0.55);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
}

/* Lightbox Caption (Jahr · Ort + Info-Text) */
.lightbox-caption {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  max-width: 90vw;
  padding: 0 1rem;
  pointer-events: none;
}
.lightbox-caption:empty { display: none; }
.lightbox-meta {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  opacity: 0.85;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}
.lightbox-meta span:empty { display: none; }
.lightbox-meta .lightbox-year:not(:empty) + .lightbox-location:not(:empty)::before {
  content: " · ";
  opacity: 0.55;
}
.lightbox-info {
  font-size: 0.95rem;
  line-height: 1.4;
  max-width: 620px;
  margin: 0 auto;
}
.lightbox-info:empty { display: none; }

@media (max-width: 576px) {
  .lightbox-content img { max-height: 70vh; }
  .lightbox-caption { bottom: 12px; }
  .lightbox-info { font-size: 0.85rem; }
}

/* ── Datenschutz / Legal pages ── */
.dsgvo-section {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #e8e8e8;
}
.dsgvo-section:last-of-type {
  border-bottom: none;
}
.dsgvo-section h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #660708;
  margin-bottom: 0.6rem;
}
.dsgvo-section p,
.dsgvo-section address {
  color: #333;
  line-height: 1.75;
  font-style: normal;
  margin-bottom: 0;
}
.dsgvo-section p + p,
.dsgvo-section p + address {
  margin-top: 0.6rem;
}
.dsgvo-section a {
  color: #660708;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dsgvo-section a:hover {
  color: #ba181b;
}
.legal-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 2.5rem;
}

/* ── Kontakt ── */
.kontakt-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 2rem;
}
.kontakt-card .icon {
  width: 20px;
  margin-right: 10px;
  vertical-align: middle;
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .page-hero { height: 180px; }
  .page-hero-text h1 { font-size: 1.75rem; }
}

/*# sourceMappingURL=style.css.map */
