:root{
  --bg:#000;
  --text:#fff;
  --muted:#bdbdbd;
  --accent:#00d7ff;
  --header-height:10vh;
  --footer-height:8vh;
}

/* Basis */
html,body{height:100%;margin:0;font-family:Arial,sans-serif;background:var(--bg);color:var(--text);}
.page{display:flex;flex-direction:column;height:90vh;}

/* Header */
.site-header{flex:0 0 var(--header-height);display:flex;justify-content:center;align-items:center;}
.logo{max-width:220px;width:36%;height:auto;display:block;}

/* Hero / Carousel */
.hero{
  flex:1 1 auto;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  height: calc(90vh - var(--header-height) - var(--footer-height));
}

/* Slideshow */
.slideshow{
  width:90%;
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  background:#000;
  border-radius:1px;
}
.slider{display:flex;width:100%;height:100%;transition:transform 0.68s ease;}
.slide{flex:0 0 100%;display:flex;justify-content:center;align-items:center;height:100%;width:100%;}

/* Bilder: dynamisch skaliert */
.slide img{
  cursor:pointer;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
}

/* Dots */
.controls{width:90%;display:flex;justify-content:center;margin-top:6px;}
.dots{display:flex;gap:8px;align-items:center;}
.dot{
  width:12px;height:12px;border-radius:50%;background:rgba(255,255,255,0.25);border:1px solid rgba(255, 255, 255, 0.25);cursor:pointer;
}
.dot.active{background:var(--accent);box-shadow:0 0 6px rgba(0,170,255,0.2);}

/* Footer */
.site-footer{flex:0 0 var(--footer-height);display:flex;align-items:center;justify-content:center;color:var(--muted);font-size:0.95rem;}
.site-footer a{color:var(--accent);text-decoration:none;}

/* Popup */
.popup{
  position:fixed;inset:0;background:rgba(0,0,0,0.85);display:none;justify-content:center;align-items:center;line-height:1.5;text-align:center;z-index:900;
}

.popup-box{
  background:#111;padding:20px 24px;border-radius:8px;color:#fff;max-width:90%;box-shadow:0 8px 30px rgba(0,0,0,0.6);
}
.popup-box h2{margin-top:0;}
.popup-box button{margin-top:12px;padding:8px 14px;border-radius:5px;border:none;background:var(--accent);color:#000;cursor:pointer;}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;display:none;justify-content:center;align-items:center;background:rgba(0,0,0,0.95);z-index:999;
}
.lightbox img{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  object-position:center;
}

/* Responsive */
@media (max-width:700px){
  .logo{width:52%;}
  .dot{width:10px;height:10px;}
}
