/* Global Styles */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
  margin-top: 0;
  text-align: center;
}

h4 {
  text-align: center;
}

a {
  color: #6a0dad; /* violett */
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Navbar */
header {
  background: #fff;
  border-bottom: 1px solid #ddd;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #6a0dad; /* violett */
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li {
  display: inline;
}
.nav-links a {
  font-weight: 600;
}

.help {
  text-align: center;
  padding: 2rem 0;
}

.ft-small {
  font-size: 12px;
}

.help h2 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.5rem;
}

.help h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 0;
}

/* Drei Info-Boxen */
.info-rows {
  background: #a867d6;
  padding: 3rem 0;
}
.info-box {
  background: #b57edc;
  text-align: center;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-box h3 {
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 1.5rem;
}
.info-box p {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr; /* untereinander auf Mobil */
  }
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Abstand zwischen Logo und Text */
  text-decoration: none;
}

.logo-img {
  height: 50px; /* Höhe des Logos anpassen */
  width: auto;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000; /* dunkles Violett */
}

.logo-container:hover .logo-text {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .logo-container {
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 0;
}
.hero img {
  width: 100%;
  max-width: 900px;
  margin-top: 2rem;
  border-radius: 10px;
}

/* Colored Sections */
.bg-blue {
  background: #6a0dad; /* violett */
  color: #fff;
  padding: 2rem 0;
}
.bg-lightblue {
  background: #a867d6; /* hellviolett */
  color: #fff;
  padding: 2rem 0;
}

/* Mission + Spenden Text */
.mission p,
.spenden p,
.cta p {
  text-align: center;
  font-size: 1.1rem; /* leicht größer als Standard */
}

.spenden p {
  font-size: 1.2rem; /* noch größer für bessere Lesbarkeit */
  margin-bottom: 1rem;
}

.spenden p a {
  font-weight: 700;
  color: #fff;
  text-decoration: underline;
}
.spenden p a:hover {
  text-decoration: underline;
}

/* Gallery */
.gallery {
  padding: 2rem 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.grid-3 img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1.5rem 0;
}
footer a {
  color: #b57edc; /* hellviolett */
}

/* Responsive */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: col
