:root {
  --black: #111;
  --red: #d60000;
  --gold: #ffcc00;
  --white: #ffffff;
  --gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  color: hsl(0, 0%, 0%);
  background: white;
}

.flag-strip {
  height: 8px;
  background: linear-gradient(
    to right,
    black 33%,
    #d60000 33%,
    #d60000 66%,
    #ffcc00 66%
  );
}

.hero {
  position: relative;
  height: 70vh;
  min-height: 500px;

  background: url("images/hero.jpg");
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65));
}

.hero-content {
  position: relative;
  z-index: 2;

  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.donation-progress {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
}

.progress-headline {
  color: white;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 24px;

  background: rgba(255, 255, 255, 0.2);

  border-radius: 999px;

  overflow: hidden;

  border: 2px solid rgba(255, 255, 255, 0.3);
}

.progress-fill {
  height: 100%;

  background: linear-gradient(90deg, #000, #d60000, #ffcc00);

  transition: 1s;
}

.progress-text {
  margin-top: 10px;
  color: white;
  font-size: 1.1rem;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-buttons a {
  text-decoration: none;
  color: white;
  background: var(--red);
  padding: 12px 22px;
  border-radius: 6px;
  transition: 0.3s;
}

.hero-buttons a:hover {
  transform: translateY(-3px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;

  margin: 20px auto 50px;
  gap: 20px;
  padding: 0 20px;
}

.stat {
  background: #111;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  padding: 25px;
  text-align: center;
  border-radius: 10px;
}

.stat span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--gold);
}

.team {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.team img {
  width: 100%;
  border-radius: 16px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.action-gallery {
  max-width: 1200px;
  margin: 40px auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  padding: 0 20px;
}

.action-card {
  overflow: hidden;
  border-radius: 12px;
}

.action-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  transition: 0.4s;
}

.action-card:hover img {
  transform: scale(1.08);
}

.news {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-grid article {
  background: var(--gray);
  padding: 25px;
  border-radius: 10px;
}

.news-grid h3 {
  color: var(--red);
  margin-bottom: 10px;
}

.events {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
}

.events ul {
  list-style: none;
}

.events li {
  padding: 15px;
  margin-bottom: 10px;

  border-left: 5px solid var(--gold);
  background: #fafafa;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .action-gallery {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

.support {
  background: #000;
  color: white;
  max-width: 100%;
  margin: 60px 0 0 0; /* nur oben Abstand */
  padding: 80px 20px;
  text-align: center;
}

.support .section-title h2 {
  color: white;
}

.support-text {
  color: rgba(255, 255, 255, 0.9);
}

.support-text {
  max-width: 800px;
  margin: 20px auto 40px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.donation-grid {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.donation-card {
  width: 420px;
  min-height: 180px;

  border-radius: 20px;

  background: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.donation-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.donation-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.donation-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.donation-card span {
  color: #666;
  font-size: 0.95rem;
}

.alt-payment {
  margin-top: 40px;
  margin-bottom: 20px;

  color: #ffcc00;

  font-size: 2rem;
  font-weight: 700;

  text-decoration: underline;
  text-underline-offset: 8px;
}

.bank-box {
  max-width: 500px;

  margin: 40px auto 0;

  padding: 30px;

  background: #1b1b1b;

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 20px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.bank-box p {
  margin: 15px 0;
}

.copy-btn {
  margin-top: 20px;

  padding: 14px 28px;

  background: var(--red);
  color: white;

  border: none;
  border-radius: 8px;

  cursor: pointer;
  font-weight: bold;

  transition: 0.3s;
}

.copy-btn:hover {
  background: #b40000;
}

@media (max-width: 900px) {
  .donation-grid {
    grid-template-columns: 1fr;
  }
}

.team-wrapper {
  position: relative;
}

.sponsors {
  position: absolute;
  right: 20px;
  bottom: 20px;

  display: flex;
  gap: 15px;

  background: rgba(255, 255, 255, 0.9);
  padding: 12px;
  border-radius: 10px;
}

.sponsors img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.section-divider {
  height: 8px;

  background: linear-gradient(
    to right,
    #000 33%,
    #d60000 33%,
    #d60000 66%,
    #ffcc00 66%
  );
}

.bank-box strong {
  color: #ffcc00;
}

.logo4 {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
}

.logo4 img {
  height: 90px;
  width: auto;
}

.logo4 img {
  height: 90px;

  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.35));
}

.paypal-button img {
  height: 130px;
  width: auto;

  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.paypal-button:hover img {
  transform: scale(1.08);
}

.paypal-button span {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
}

.paypal-button:visited span {
  color: var(--gold);
}

.paypal-button:hover span {
  color: #ffcc00;
}

.paypal-button {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 15px;

  text-decoration: none;

  margin: 40px auto;
  width: fit-content;
}

.support-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 900px;

  margin: 50px auto;
  padding: 0 40px;
}

.support-logos img:hover {
  transform: scale(1.05);
}

.support-logos img {
  height: 140px;
  width: auto;

  object-fit: contain;

  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));

  transition: 0.3s;
}

.bank-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.bank-wrapper {
  margin-top: 80px;
}

.side-logo {
  position: absolute;

  top: -120px;

  height: 180px;
  width: auto;

  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.left-logo {
  left: -150px;
}

.right-logo {
  right: -150px;
}

/* =========================
   MOBILE OPTIMIERUNG
========================= */

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 20px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .donation-progress {
    width: 95%;
  }

  .progress-headline {
    font-size: 0.95rem;
  }

  .progress-text {
    font-size: 1rem;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .team {
    padding: 10px;
  }

  .team img {
    border-radius: 12px;
  }

  /* Logo oben links auf Teamfoto */
  .logo4 {
    top: 10px;
    left: 10px;
  }

  .logo4 img {
    height: 55px;
  }

  /* Sponsoren unter Bild statt Overlay */
  .sponsors {
    position: static;
    margin-top: 15px;

    justify-content: center;
    flex-wrap: wrap;

    background: transparent;
    padding: 0;
  }

  .sponsors img {
    height: 70px;
  }

  .action-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .action-card img {
    height: 220px;
  }

  .support {
    padding: 60px 15px;
  }

  .support-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .paypal-button img {
    height: 90px;
  }

  .paypal-button span {
    font-size: 1.05rem;
  }

  .alt-payment {
    font-size: 1.5rem;
  }

  .bank-box {
    padding: 20px;
    width: 100%;
  }

  /* Seitenlogos ausblenden */
  .side-logo {
    display: none;
  }

  .bank-wrapper {
    margin-top: 30px;
  }

  .copy-btn {
    width: 100%;
  }

  footer {
    padding: 20px;
    font-size: 0.9rem;
  }
}
