:root {
    /* Farben */
    --primary: #00c388;
    --secondary: #7d4cdb;
    --surface: #ffffff;
    --background: #f0fef9;
    --text: #222222;
    --text-secondary: #555555;
  
    /* Abstände */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
  
    /* Rundungen & Schatten */
    --radius: 12px;
    --shadow-md: 0 2px 6px rgba(0,0,0,0.10);
  
    /* Fonts */
    --font-base: 'Nunito', sans-serif;
    --font-heading: 'Red Hat Display', sans-serif;
  }
  
  /* Grundlegendes Reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: var(--font-base);
    background: var(--background);
    color: var(--text);
    line-height: 1.5;
  }
  
  /* Überschriften */
  h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--space-md);
  }
  
  /* Hero */
  .hero {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: var(--space-lg) var(--space-md) var(--space-md);
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
  }
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
  }
  .hero-text p {
    font-size: 1rem;
    margin-bottom: var(--space-md);
  }
  
  /* Buttons */
  .btn-primary {
    display: inline-block;
    background: var(--surface);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: var(--space-sm) var(--space-lg);
    border-radius: 30px;
    text-decoration: none;
    transition: transform .1s;
  }
  .btn-primary:hover {
    transform: scale(1.05);
  }
  
  /* Features */
  .features {
    padding: var(--space-lg) var(--space-md);
  }
  .feature-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }
  .feature {
    background: var(--surface);
    width: 280px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: var(--space-md);
    text-align: center;
  }
  .feature .material-icons {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: var(--space-sm);
  }
  .feature h3 {
    margin-bottom: var(--space-sm);
  }
  .feature p {
    color: var(--text-secondary);
    font-size: 0.95rem;
  }
  
  /* Call to Action */
  .cta {
    background: var(--surface);
    padding: var(--space-lg) var(--space-md);
    text-align: center;
  }
  .cta p {
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
  }
  
  /* Footer */
  .footer {
    background: var(--surface);
    text-align: center;
    padding: var(--space-md);
    border-top: 1px solid #eee;
  }
  .footer p {
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
  }
  .socials a {
    margin: 0 var(--space-sm);
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
  }
  .socials a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  @media (max-width: 600px) {
    .feature-container {
      flex-direction: column;
      align-items: center;
    }
  }

  /* Bild im Hero-Header */
.hero-image {
    display: block;
    max-width: 300px;      /* Passe Breite nach Wunsch an */
    width: 100%;
    height: auto;
    margin: 0 auto var(--space-md);  /* zentriert + Abstand nach unten */
    border-radius: var(--radius);    /* optional: abgerundete Ecken */
    box-shadow: var(--shadow-md);    /* optional: Schatten */
  }

  /* Kontakt-Box */
/* Kontakt */
.contact {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
  }
  .contact h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--space-xs);
  }
  .contact a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Unterstützt durch */
  .support {
    text-align: center;
    padding-bottom: var(--space-lg);
  }
  .support h2 {
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: var(--space-md);
  }
  
  /* Logos-Grid */
  .support-logos {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-sm);
  }
  
  /* Einzelnes Logo-Item */
  .support-item {
    text-align: center;
  }
  
  /* Logo-Bild */
  .support-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: var(--space-xs);
    border-radius: var(--radius);
    transition: filter .3s;
  }
  .support-logo:hover {
    filter: none;
  }
  
  /* Beschriftung unter dem Logo */
  .support-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
  }
  
  .social-icon {
    width: 20px;             /* Icon-Größe */
    height: 20px;
    vertical-align: middle;  /* auf Text-Höhe zentrieren */
    margin-right: 8px;       /* Abstand zum Text */
  }

  .hero-image {
  display: block;
  /* feste Quadratkanten, damit border-radius 50% sauber rund wird */
  width: 240;       /* nach Bedarf anpassen */
  height: 240;      /* gleiches Maß wie width */
  object-fit: cover;  /* Bild füllt den Container und wird nicht verzerrt */
  border-radius: 50%; /* macht daraus einen Kreis */
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-md);
}

  
  
