/* Grunddesign */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #FFD700;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Hero */
.hero {
  background: url('assets/header.png') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: relative;
  background: rgba(255, 215, 0, 0.95);
  padding: 4rem 5rem;
  border-radius: 20px;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* Glanz-Effekt */
.overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.274) 50%, transparent 100%);
  transform: rotate(25deg);
  animation: shine 4s infinite;
  pointer-events: none;
  z-index: 1;
}

/* Inhalt über Glanz legen */
.overlay * {
  position: relative;
  z-index: 2;
}

/* Animation */
@keyframes shine {
  0% {
    transform: rotate(25deg) translateX(-100%);
  }
  100% {
    transform: rotate(25deg) translateX(100%);
  }
}
.hero h1 {
  font-size: 3rem;
  color: #222;
  margin: 0;
}

.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: #222;
  color: #FFD700;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}

.cta-button:hover {
  background: #444;
}

.cta-button.dark {
  background: #111;
  margin-top: 2rem;
}

/* Spieltour */
.tour-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff8dc;
  color: #222;
}

.tour-section h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.tour-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Galerie */
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.gallery img {
  max-width: 300px;
  border: 4px solid #222;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.03);
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  background: #222;
  color: #FFD700;
}
.slider {
  position: relative;
  width: 98%;
  max-width: 1200px;
  margin: 2rem auto;
  overflow: hidden;
  border: 4px solid #222;
  border-radius: 12px;
  box-shadow: 6px 6px 0 #000;
}

.slides-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  color: #FFD700;
  border: none;
  padding: 1rem;
  cursor: pointer;
  font-size: 2rem;
  z-index: 2;
  opacity: 0.8;
}

.slide-btn:hover {
  opacity: 1;
}

.slide-btn.prev {
  left: 0;
}

.slide-btn.next {
  right: 0;
}
.roadmap {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
  font-family: 'Courier New', monospace;
  color: #f1d17b;
  background-color: #111; /* dunkler Hintergrund */
  border: 1px solid gold;
  border-radius: 8px;
}

.roadmap h2 {
  color: gold;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.roadmap h3 {
  color: #ffe97e;
  margin-top: 2rem;
}

.roadmap ul {
  padding-left: 1.5rem;
}

.roadmap li {
  margin-bottom: 0.5rem;
}

.roadmap hr {
  border: 1px dashed #ffe97e;
  margin: 3rem 0;
}

.roadmap p {
  text-align: center;
  color: #ccc;
}
.sticky-nav {
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  padding: 0.5rem 0;
  border-bottom: 1px solid gold;
  text-align: center;
  backdrop-filter: blur(4px);
}

.sticky-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 2rem;
}

.sticky-nav a {
  color: gold;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  transition: color 0.2s;
}

.sticky-nav a:hover {
  color: #fff;
}