/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* BODY: Dark Mode */
  body {
    font-family: Arial, sans-serif;
    background-color: #121212; /* Tiefer Dunkelton */
    color: #f1f1f1;            /* Helle Schrift */
    line-height: 1.6;
    /* Weitere Hintergründe oder Themes können hier hinzugefügt werden */
  }
  
  /* NAVIGATION */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1f1f1f;
    padding: 1rem 2rem;
    /* Optional: Position fixed/sticky, falls gewünscht 
       position: sticky;
       top: 0;
       z-index: 999;
    */
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffcc00;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: #f1f1f1;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    color: #ffcc00;
    transform: scale(1.05);
  }
  
  /* HERO SECTION */
  .hero {
    background: url('https://www.schmonz-faq.de/images/hero-background.jpg') no-repeat center center/cover;
    /* Beispiel-Hintergrund, muss ggf. angepasst werden */
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
  }
  
  .btn {
    display: inline-block;
    background: #ffcc00;
    color: #121212;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .btn:hover {
    background: #ffe066;
    transform: translateY(-2px);
  }
  
  /* SECTIONS */
  section.intro,
  section.content-section {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background: #1f1f1f;
    margin-top: 1.5rem; /* etwas mehr Platz oben */
    border-radius: 6px;
    /* Leichtes Schatten-Design für mehr Tiefe */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  }
  
  section.intro h2,
  section.content-section h1,
  section.content-section h2 {
    margin-bottom: 1rem;
  }
  
  section.intro p,
  section.content-section p {
    margin-bottom: 1rem;
  }
  
  section.content-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
  
  /* Footer */
  footer {
    background: #1f1f1f;
    color: #f1f1f1;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  /* Zusätzliche „Eyecatcher“-Klasse */
  .eyecatcher {
    color: #ffcc00;
    font-weight: bold;
  }
  
  /* RESPONSIVE DESIGN */
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 1rem;
    }
    .navbar {
      flex-direction: column;
    }
    .nav-links {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    section.intro,
    section.content-section {
      padding: 1rem;
      margin-top: 1rem;
    }
  }
  