html { overflow-y: scroll; }

body {
  margin: 0;
  font-family: 'Raleway', Arial, sans-serif;
  color: #f0f0f0;
  background: #000;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  font-size: 14px;
}

/* Hintergrund Dark */
.background {
  position: fixed;
  inset: 0;
  background: url("bilder/background-d.jpg") center top / cover no-repeat;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .background {
    position: absolute;
    inset: 0;
    min-height: 100dvh;
    height: auto;
    background: url("bilder/background-m.jpg") center top / cover no-repeat;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(38,38,38,0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 1000;
  justify-content: center;
}
header .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .menu a {
  margin: 0 30px;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  transition: font-weight 0.2s ease, color 0.3s ease;
}
header .menu a:hover {
  font-weight: 700;
  color: #fff;
}

.menu-toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #f0f0f0;
}

/* Overlay-Menü */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,20,20,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 2000;
}
.menu-overlay.open { transform: translateX(0); }
.menu-overlay a {
  color: #f0f0f0;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 400;
}
.menu-overlay a:hover { font-weight: 700; color: #fff; }

.menu-close {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 767px) {
  header .menu { display: none; }
}
@media (min-width: 768px) {
  .menu-toggle { display: none; }
  .menu-overlay { display: none; }
}

/* Hero */
.hero {
  margin-top: 60px;
  min-height: 52vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.logo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 70%;
}
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}
#glitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.manifest {
  font-family: 'League Spartan', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 16px;
  line-height: 25px;
  color: #f0f0f0;
  text-align: center;
  max-width: 520px;
}

/* Galerie */
.gallery {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 15px;
}
.thumbs-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.thumbnails {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.thumbnails::-webkit-scrollbar { display: none; }

.thumbnails img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  flex: 0 0 auto;
  transition: transform 0.3s, filter 0.3s;
  filter: grayscale(60%) brightness(70%);
}
.thumbnails img:hover {
  transform: scale(1.05);
  filter: grayscale(0%) brightness(100%);
}
.thumb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #fff;
  background: rgba(0,0,0,0.6);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 5;
}
.thumbs-wrapper:hover .thumb-arrow { opacity: 1; }
.thumb-arrow.left { left: 5px; }
.thumb-arrow.right { right: 5px; }

.more-work {
  max-width: 750px;
  margin: 10px auto 40px auto;
  padding: 0 15px;
  text-align: right;
}
.more-work a {
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  text-decoration: none;
}
.more-work a:hover { color: #fff; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.lightbox img {
  max-width: 80%;
  max-height: 80%;
}
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
.lightbox .prev, .lightbox .next {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  user-select: none;
}
.lightbox-footer {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 18px;
  color: #fff;
}
.lightbox-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

/* About */
.about-info {
  margin-top: 0;
  margin-bottom: 40px;
  padding: 10px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}
.about-info h2 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 6px 0;
  text-align: left;
  color: #fff;
}
.about-info p {
  margin: 0;
  font-size: 13px;
  line-height: 26px;
  letter-spacing: 1.5px;
  font-weight: 400;
  color: #e0e0e0;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(20,20,20,0.8);
  font-size: 14px;
  color: #bbb;
}

@media (min-width: 1024px) {
  .hero { margin-bottom: 35px; }
  body { padding-left: 0; }
}
