body, html {
  margin: 0;
  padding: 0;
  font-family: 'Oswald', sans-serif;
  background: #111;
  color: #eee;
}

.hero {
  position: relative;
  height: 100vh;
  background: url("bandfoto_header.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/*
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,18,31,0.8), rgba(10,10,10,0.85));
  mix-blend-mode: multiply;
  z-index: 1;
}*/

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-logo {
  width: 800px;
  position: relative;
  top: 100px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 5px rgba(255,140,0,0.9));
  animation: fadeIn 2s ease forwards;
}

/*.hero-content h1 {
  font-size: 5rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(193,18,31,0.8);
}*/

.hero-content p {
  font-size: 1.6rem;
  position: relative;
  top: 60px;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}

.hero-buttons {
  position: relative;
  top: 60px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 14px 40px;
  border: 2px solid #FF8C00;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  background: transparent;
  transition: all 0.3s ease;
  border-radius: 40px;
  box-shadow: 0 0 8px #FF8C00;
}

.hero-btn:hover {
  background: #FF8C00;
  box-shadow: 0 0 20px #FF8C00;
  transform: scale(1.05);
}

.hero-btn-secondary {
  border-color: #fff;
  color: #fff;
  box-shadow: 0 0 8px #fff;
}

.hero-btn-secondary:hover {
  background: #fff;
  color: #FF8C00;
  box-shadow: 0 0 20px #fff;
  transform: scale(1.05);
}

.scroll-icon {
  position: absolute;
  /*bottom: 30px;
  position: relative;*/
  top: 450px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 3;
  animation: bounce 2.5s infinite;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.scroll-icon:hover {
  opacity: 1;
  filter: drop-shadow(0 0 8px #FF8C00);
}

/* Galerie-Vorschau auf Startseite */
.gallery-preview-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.gallery-preview-container img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.gallery-preview-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255,140,0,0.9);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@media (max-width: 768px) {
  .hero-content h1 { font-size: 3.2rem; letter-spacing: 5px; }
  .hero-content p { font-size: 1.2rem; }
  .hero-logo { width: 240px; margin-bottom: 15px; }
  .hero-buttons { flex-direction: column; gap: 15px; }
  .hero-btn { width: 70%; max-width: 280px; }
}

/* Lightbox add-on */
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 70%;	/* 90% */
  max-height: 60vh;	/* 80vh */
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.gallery-preview-container img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

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

/* Navigation arrows */
.lightbox-prev,
.lightbox-next {
  position: absolute; /*absolute*/
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #FF8C00;
}

/* Caption */
.lightbox-caption {
  text-align: center;
  color: #ccc;
  margin-top: 15px;
  font-size: 18px;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 40px;
  }
}

/* LIGHTBOX THUMBNAILS */
.lightbox-thumbnails {
  position: absolute; 
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  max-width: 90%;
  overflow-x: auto;
  padding: 10px;
}

.lightbox-thumbnails img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border-radius: 5px;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.lightbox-thumbnails img:hover {
  opacity: 1;
}

.lightbox-thumbnails img.active {
  opacity: 1;
  border: 2px solid #FF8C00;
}

@media (max-width: 768px) {

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

}

@media (max-width: 768px) {

  .gallery-preview-button {
    margin-top: 150px;   /* mehr Abstand nach oben */
  }

}