 * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f5f0;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }
        
        header {
            background: linear-gradient(120deg, #2c5e1a 0%, #318d5a 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .content-section {
            padding: 30px;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .content-section:last-child {
            border-bottom: none;
        }
        
        h2 {
            color: #2c5e1a;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e8f5e9;
            font-size: 1.8rem;
        }
        
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .highlight {
            background-color: #e8f5e9;
            padding: 20px;
            border-radius: 10px;
            margin: 25px 0;
            border-left: 4px solid #4caf50;
        }
        
        ul {
            padding-left: 25px;
            margin: 20px 0;
        }
        
        li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }
        
        li:before {
            content: "•";
            color: #4caf50;
            font-size: 1.4rem;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        .icon-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .icon-box {
            flex: 1;
            min-width: 200px;
            background: #f1f8e9;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }
        
        .icon {
            font-size: 2.5rem;
            color: #388e3c;
            margin-bottom: 15px;
        }
        
        /*footer {
            background: #2c5e1a;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 1rem;
        }*/
        
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            
            .icon-box {
                min-width: 100%;
            }
        }
/* =====================================
   Footer
   ===================================== */
footer {
  background-color: #eee;
  text-align: center;
  padding: 1em;
  font-size: 0.9em;
  color: #555;
  margin-top: 2em;
}
footer a {
  color: #2e8b57;
  text-decoration: none;
  margin: 0 0.5em;
}

footer a:hover {
  text-decoration: underline;
}

/* =====================================
  Responsive Navigation für kleine Bildschirme
   ===================================== */
  
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.5em 0;
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }
  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5em;
    margin-top: 0;
  }
}
/* Bis 768px: Mobile-Menü */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    margin-left: 1em;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1em;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a {
    padding: 0.6em 1em;
    background: #256f45;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
}
.nav-toggle {
  font-size: 1.1em;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  padding: 0.5em 1em;
  border-radius: 4px;
  cursor: pointer;
  align-self: center;  /* Wichtig für vertikale Zentrierung im Flex-Container */
  margin: 10px 20px 10px 20px;
}

/* Anpassungen fuer breakpoint und Headerbild */

.hero-container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-image-freizeit {
  background-image: url('../img/headerbild_ferienhaus.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.hero-text {
  text-align: center;
  color: white;
  font-size: 2.5em;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  max-width: 90%;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .hero-image-freizeit {
    height: 400px;
  }
  
  .hero-text {
    font-size: 2em;
  }
}

@media (max-width: 480px) {
  .hero-image-freizeit {
    height: 300px;
  }
  
  .hero-text {
    font-size: 1.8em;
  }
}
