/* style.css */

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

h1, h2, h3 {
  margin-bottom: 0.5em;
}

p, ul {
  margin-bottom: 1.5em;
}

ul {
  padding-left: 1.2em;
}

.hero {
  background: url("sonnenblumenfeld.png") center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: flex-start;  /* nach oben */
  justify-content: flex-start; /* links */
  text-align: left;
  position: relative;
  padding: 2rem;
}

.hero .overlay {
  background: none;
  padding: 0;
  width: 100%;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #fff; /* Weiß */
  text-align: left;
}

.hero p {
  font-size: 1.5rem;
  font-style: italic;
  color: #fff; /* Weiß */
  text-align: left;
  margin-top: 0.2rem;
}

section {
  padding: 4rem 1rem;
}

section .content {
  max-width: 900px;
  margin: auto;
}

.intro .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.intro h2 {
  flex: 1;
  font-size: 2.5rem;
  color: #004000;
}

.intro img {
  flex: 1;
  max-width: 200px;
  height: auto;
  filter: invert(29%) sepia(79%) saturate(300%) hue-rotate(80deg) brightness(90%) contrast(90%);
}

.info {
  margin-top: -2rem;
}

.info h2, .info h3 {
  color: #004000;
}

.info ul li {
  margin-bottom: 0.5rem;
}

.partner {
  background: #f0f8f0;
  text-align: center;
}

.partner .button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background: #27ae60;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.partner .button:hover {
  background: #219150;
}

.kontakt {
  background: #fffbe6;
  text-align: center;
}

.kontakt-img {
  max-width: 150px;
  margin-bottom: 1rem;
}

.kontakt .button {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background: #f39c12;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.kontakt .button:hover {
  background: #d68910;
}

footer {
  background: #2c3e50;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

footer p {
  margin: 0.5rem 0;
}

footer p strong {
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    align-items: flex-start;  /* bleibt oben */
    justify-content: flex-start; /* bleibt links */
    text-align: left;
  }
  .hero h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    text-align: left;
  }
  .hero p {
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
  }
  section {
    padding: 2rem 1rem;
  }
  .intro .content {
    flex-direction: column;
    text-align: center;
  }
  .intro img {
    max-width: 150px;
    margin: 1rem auto 0;
  }
}

/* Footer Link Farben (Lesbarkeit & Barrierefreiheit) */
footer a {
  color: #f1f1f1;   /* hellgrau, gut lesbar auf dunkel */
  text-decoration: none;
}
footer a:hover {
  color: #ffffff;   /* weiß beim Hover */
  text-decoration: underline;
}
footer a:visited {
  color: #e0e0e0;   /* bleibt hell, kein Violett */
}
