:root {
      --primary: #3b7d3b;
      --secondary: #8bc34a;
      --accent: #f4b400;
      --bg: #fafdf9;
      --text: #222;
    }

    * { box-sizing: border-box; } 

    body {
      font-family: 'Inter', system-ui, sans-serif;
      margin: 0;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.7;
    }

    header {
      background: var(--primary);
      color: white;
      text-align: center;
      padding: 0.3rem 0.3rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    nav {
      display: flex;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: opacity 0.3s;
    }
    
    nav a.shop {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: opacity 0.3s;
    }

    nav a:hover { opacity: 0.8; }
    
    /* ===== Burger-Icon ===== */
    .burger {
      width: 30px;
      height: 22px;
      position: relative;
      cursor: pointer;
      display: none; /* wird nur bei kleiner Bildschirmbreite angezeigt */
    }

    .burger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background: #fff;
      border-radius: 3px;
      transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
    }

    .burger span:nth-child(1) {
      top: 0;
    }
    .burger span:nth-child(2) {
      top: 9px;
    }
    .burger span:nth-child(3) {
      top: 18px;
    }

    /* ===== Animation: Burger → X ===== */
    .burger.open span:nth-child(1) {
      transform: rotate(45deg);
      top: 9px;
    }

    .burger.open span:nth-child(2) {
      opacity: 0;
    }

    .burger.open span:nth-child(3) {
      transform: rotate(-45deg);
      top: 9px;
    }

 

    @media (max-width: 700px) {

      .burger {
        display: block;
      }

      nav {
        position: absolute;
        top: 100%; /*70px;*/
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
        display: none;
      }

      nav.active {
        display: flex;
      }
      
     .hero {
          min-height: 50vh;
          padding: 3rem 1rem;
      }
      
    }

    .hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero.jpg') center/cover no-repeat;
      color: white;
      text-align: center;
      padding: 4rem 1rem;
    }

    .hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 1rem; font-weight: 700; text-shadow: 0 0 0.5em black;}
    .hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 1.5rem; text-shadow: 0 0 0.5em black;}
    

    .cta {
      display: inline-block;
      background: var(--accent);
      color: #000;
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
    }
    .cta:hover { background: #ffd65a; }

    main { max-width: 960px; margin: 0 auto; padding: 1rem 1rem; }
    section { margin-bottom: 3rem; }
    h2 { color: var(--primary); font-size: 1.8rem; margin-bottom: 1rem; }
    footer { background: var(--primary); color: white; text-align: center; padding: 1.5rem; font-size: 0.9rem; margin-top: 3rem; }
    
    section {
      scroll-margin-top: 10rem; /* Höhe der Menüleiste */
    }
    html {
     scroll-behavior: smooth;
    }
    
    .logo {
      cursor: pointer; /* Mauszeiger wird zur Hand */
    }
    
        /* Kontaktformular */
        
    form {
      max-width: 600px;
      margin: 0 auto;
      background: white;
      padding: 2rem;
      border-radius: 1rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    label { display: block; font-weight: 600; margin-top: 1rem; }
    input, textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 0.5rem;
      font-size: 1rem;
    }
    button {
      background: var(--primary);
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      border-radius: 999px;
      margin-top: 1.5rem;
      cursor: pointer;
      transition: background 0.3s;
    }
    button:hover { background: #2e602e; }
    

    .hidden { display: none; }
    
    .faq-answer {
display: none;
padding: 0.5rem 1rem;
}
.faq-question {
    font-size: 1rem;
width: 100%;
text-align: left;
background: var(--primary);
color: white;
border: none;
padding: 0.8rem 1rem;
cursor: pointer;
margin-bottom: 0.5rem;
}
.faq-question:hover {
background: var(--secondary);
}


/* Aktuelles */
.eintrag {
      background: white;
      margin: 15px 0;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 5px 20px;
    }

    .inhalt {
      display: none;
      margin-top: 8px;
    }

    .eintrag.aktiv .inhalt {
      display: block;
    }

    .toggle-btn {
      background: none;
      color: #0077cc;
      border: none;
      cursor: pointer;
      font-size: 0.95em;
      margin-top: 8px;
      padding: 0;
    }

    .toggle-btn:hover {
      text-decoration: underline;
      background: none;
    }



