/* === Grundlayout === */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Segoe UI", sans-serif;
  background: url("../Bilder/Hintergrund/Startseite.jpg") center center / cover no-repeat;
  color: #f0f0f0;
  overflow: hidden;
}

/* Halbtransparente Abdunkelung über dem Hintergrund */
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* === Hauptinhalt === */
.content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem;
}

.title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 15px #000;
  color: #fff;
  border-bottom: 2px solid #888;
  padding-bottom: 0.5rem;
}

/* === Gallerie === */
.anno-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 90%;
}

.anno-item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.anno-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Hover-Effekt */
.anno-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Disabled für "Coming Soon" */
.anno-item.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Tooltip / Title-Effekt schöner machen */
.anno-item:hover::after {
  content: none !important;
}

/* === Responsiv === */
@media (max-width: 1000px) {
  .anno-item img {
    width: 300px;
  }
}

@media (max-width: 700px) {
  .anno-item img {
    width: 240px;
  }

  .title {
    font-size: 1.8rem;
  }
}
