:root {
    --bg: #f9f9f9;
    --primary: #d32f2f;
    --accent: #388e3c;
    --text: #212121;
    --secondary: #eeeeee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

html {
    scroll-behavior: smooth;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://bilder.deutschlandfunk.de/3b/a2/cc/c9/3ba2ccc9-a068-493a-a4c3-47a3b68f79b5/gaza-stadt-106-1920x1080.jpg')
    no-repeat center center / cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    color: white;
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    0% {
    transform: translateY(20px);
    opacity: 0;
    }
    100% {
    transform: translateY(0);
    opacity: 1;
    }
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.hero-button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: var(--accent);
}

/* NAVIGATION */
.main-nav {
    background-color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--primary);
}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.quote-card {
    min-width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    margin: 0 1rem;
    text-align: center;
}

.quote-card p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote-card small {
    color: #555;
    font-style: italic;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #222;
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.8;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background-color: #000;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.slider-dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots .active {
    background: #333;
}

.video-next-button {
    all: unset;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #c62828; /* tiefes Rot für Ernsthaftigkeit */
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.video-next-button:hover {
  background-color: #a71c1c;
}

.help-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

.btn-red:hover {
    background-color: #c5303f;
}
.btn-blue:hover {
    background-color: #3a5f7d;
}
.btn-green:hover {
    background-color: #24746e;
}
/* Animations on scroll - fade and slide up */
@keyframes fadeSlideUp {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}
.help-card {
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards;
    animation-delay: 0.2s;
}
.help-card:nth-child(2) {
    animation-delay: 0.4s;
}
.help-card:nth-child(3) {
    animation-delay: 0.6s;
}

footer {
  height: 120px;
  padding: 0 2rem;
  text-align: center;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;   
}

.statistik-section {
  background: linear-gradient(#f8f9fa, #eef3f7);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.statistik-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #222;
}

.statistik-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
}

.statistik-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.statistik-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
}

.icon-bg {
  position: absolute;
  font-size: 5.5rem;
  color: #74c0fc;
  opacity: 0.08;
  right: 15px;
  bottom: 15px;
  user-select: none;
}

.statistik-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #222;
}

.statistik-zahl {
  font-size: 2.6rem;
  font-weight: bold;
  color: #c0392b;
  margin: 1rem 0;
}

.statistik-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
}

.btn-statistik {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 10px;
  background-color: #457b9d;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-statistik:hover {
  background-color: #2f5e78;
}

.card-red .icon-bg {
  color: #e74c3c;
  opacity: 0.1;
}

.card-blue .icon-bg {
  color: #457b9d;
  opacity: 0.1;
}

.card-green .icon-bg {
  color: #2a9d8f;
  opacity: 0.1;
}

.quelle {
  font-size: 0.85rem;
  color: #777;
  display: block;
  margin-top: 0.5rem;
}

.statistik-quellen {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
  max-width: 600px;
  margin-inline: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: var(--bg);
  color: var(--text);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1 1 60%;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex: 1 1 30%;
  justify-content: flex-end;
}

.cookie-buttons button {
  background-color: var(--accent);
  border: none;
  padding: 0.6rem 1.2rem;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-buttons button:hover {
  background-color: #388e3c5c;
  transform: scale(1.05);
  transform: translateY(-2px);
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 2rem;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.05);
  background-color: white;
  font-family: 'Open Sans', sans-serif;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.footer-center {
  text-align: center;
}

.footer-right {
  text-align: right;
}

.footer-left a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.footer-left a:hover {
  color: var(--primary);
}
