body { font-family: Arial, sans-serif; margin: 0; background: #111; color: #00C070; center; }
header { background: #222; padding: 20px; text-align: center; }
hero { background: #222; padding: 20px; text-align: center; }
nav { background: #333; display: flex; flex-wrap: wrap; justify-content: center; }
nav a { color: #00C070; padding: 15px; text-decoration: none; }
nav a:hover { background: #555; }
a { color: #00C070; }
.section { padding: 20px; max-width: 1000px; margin: auto; }
.kopf { padding: 10px; max-width: 800px; margin: auto; }
.footer { background: #222; text-align: center; padding: 20px; font-size: 0.8em; }
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
  object-position: top center;
}
.hero-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -60px;
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}
.hero-links img {
  width: 05vw; /* 10% der Bildschirmbreite */
  max-width: 60px; /* aber nie größer als 60px */
  height: auto;
  border-radius: 50%;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 2px solid black;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.hero-links img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  cursor: pointer;
}
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  color: white;
}
/* Logo-Text oder -Bild */
.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo-center img {
  height: 40px;
  object-fit: contain;
}

/* Menücontainer */
.menu-container {
  position: relative;
}

/* Hamburger-Icon */
.menu-icon {
  font-size: 30px;
  cursor: pointer;
  user-select: none;
  color: white;
}

/* Versteckte Checkbox */
#menu-toggle {
  display: none;
}

/* Dropdown-Menü */
.dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 60px;
  background-color: #111;
  flex-direction: column;
  padding: 10px;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.dropdown a {
  color: #00FF00;
  padding: 8px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown a:hover {
  background-color: #222;
  color: #FF3333;
}

/* Wenn aktiviert: Dropdown anzeigen */
#menu-toggle:checked + .menu-icon + .dropdown {
  display: flex;
}

/* Inhalt rutscht nach unten, damit er nicht unter der Leiste liegt */
body {
  padding-top: 60px;
}
.albums img { width: 100%; max-width: 300px; }
.menu-toggle { display: none; cursor: pointer; padding: 15px; background: #333; color: #eee; text-align: center; }
.menu-toggle:hover { background: #555; }
#menu { display: flex; flex-wrap: wrap; justify-content: center; }
@media (max-width: 800px) {
  nav { flex-direction: column; }
  #menu { display: none; flex-direction: column; }
  .menu-toggle { display: block; }
  nav a { padding: 10px; border-top: 1px solid #444; }
}
.hover-icon img {
  width: 48px;
  height: auto;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.hover-icon img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
  cursor: pointer;
}
 .gallery-section {
  padding: 40px 20px;
  background-color: #111;
  color: #00FF00;
  text-align: center;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.gallery a {
  display: block;
  width: 140px;
  height: 140px;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery a:hover img {
  transform: scale(1.1);
}

.gallery a:hover {
  box-shadow: 0 6px 16px rgba(0,255,0,0.4);
}