/* --- GLOBAL --- */
body {
  background-color: #d7c9cb;
  font-family: 'Verdana', Arial, sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

.page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* --- HEADER --- */

.header {
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}

.backlink {
  display: inline-block;
  margin-bottom: 20px;
  color: #000;
  text-decoration: underline;
  font-size: 16px;
}

.logo {
  max-width: 150px;
}

/* --- CONTENT --- */
.content-section {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5dce9;
  margin-bottom: 50px;
}

.stellenanzeige-block {
  background: #f7f3f8;
  border-left: 6px solid #c1a0da;
  padding: 25px;
  margin-bottom: 30px;
}

/* --- CTA + BADGE GRID --- */
.cta-badge-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 30px;
  margin-top: 40px;
  align-items: center;
}

.cta-box {
  background: #c1a0da;
  color: #fff;
  padding: 40px;
  border: 1px solid #b48acb;
}

.cta-box a {
  color: #fff;
  text-decoration: underline;
}

.badge-box img {
  width: 100%;
  border: 1px solid #e5dce9;
}

/* --- GALLERY --- */
.gallery-section {
  background: #ffffff;
  padding: 40px;
  border: 1px solid #e5dce9;
  margin-bottom: 50px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery img {
  width: 100%;
  border: 1px solid #e5dce9;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  cursor: pointer;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  margin: 5% auto;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lb-nav {
  position: fixed;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.lb-btn {
  pointer-events: all;
  font-size: 50px;
  color: #fff;
  padding: 20px;
  cursor: pointer;
}

.lb-close {
  position: fixed;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/* Standard: Navigation & Close-Button verstecken */
.lb-nav,
.lb-close {
  display: none;
}

/* Nur anzeigen, wenn Lightbox aktiv ist */
.lightbox.active ~ .lb-nav,
.lightbox.active ~ .lb-close {
  display: block;
}


/* --- CONTACT --- */
.contact-section {
  background: #c1a0da;
  color: #fff;
  padding: 40px;
  border: 1px solid #b48acb;
  text-align: center;
}

.contact-section a {
  color: #fff;
  text-decoration: underline;
}

.map-img {
  max-width: 100%;
  margin-bottom: 20px;
}

/* --- FOOTER --- */
.footer {
 background-color: #ffffff;
    color: #000000;
  padding: 20px;
  text-align: center;
  margin-top: 40px;
}

.footer a {
  color: #000;
  margin: 0 10px;
  text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .cta-badge-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery {
    grid-template-columns: repeat(1, 1fr);
  }
}
.job-badge-top {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 220px;
}

.job-badge-top img {
  width: 100%;
  border: 1px solid #e5dce9;
  background: #ffffff;
  padding: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.job-badge-top img:hover {
  transform: scale(1.03);
}
