/* ---------------------------- */
/* Reset & Grundlegendes        */
/* ---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #111;
  overflow-x: hidden;
  padding-top: 80px; /* Platz für Navbar */
}

/* ---------------------------- */
/* Navbar & Header              */
/* ---------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  background: rgba(0,0,0,0.95);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2000;
}

.navbar .logo img {
  max-width: 100px;
  height: auto;
  display: block;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
}

.navbar .nav-links li {
  margin: 0 10px;
}

.navbar .nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.navbar .nav-links a:hover {
  color: #ff9800;
}

/* Burger Menü */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 28px;
  height: 25px;
}

.burger span {
  height: 3px;
  width: 100%;
  background: #fff;
  margin: 4px 0;
  border-radius: 5px;
  transition: all 0.4s ease;
  transform-origin: center;
}

@media (max-width: 768px) {
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; }
  .burger.toggle span:nth-child(1) { transform: rotate(45deg) translate(5.5px, 5.5px); }
  .burger.toggle span:nth-child(2) { opacity: 0; }
  .burger.toggle span:nth-child(3) { transform: rotate(-45deg) translate(5.5px, -5.5px); }
}

/* ---------------------------- */
/* Content Section              */
/* ---------------------------- */
.content-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.content-container h1,
.content-container h2,
.content-container h3 {
  color: #fff;
  margin-bottom: 20px;
}

.content-container p,
.content-container li {
  color: #fff;
  margin-bottom: 15px;
}

.content-container ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.content-container a {
  color: #ff9800;
  text-decoration: underline;
}

.content-container a:hover {
  color: #fff;
}

/* ---------------------------- */
/* Footer                       */
/* ---------------------------- */
footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #aaa;
  text-decoration: underline;
}
