/* =====================================================
   DONORS – FRONTEND
   Empire Valley
   ===================================================== */

html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}


/* Section */
#donors {
  flex: 1 0 auto;
  padding: 5rem 1.5rem;
  text-align: center;

  background:
    radial-gradient(circle at 50% 0%, rgba(255,122,0,.18), transparent 70%),
    rgba(0,0,0,.75);
}

/* Titel */
#donors h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;

  color: #ffcc80;
  text-shadow: 0 0 18px rgba(255,122,0,.45);
}

/* Intro Text */
#donors > p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e0e0ff;
}

/* =====================================================
   GRID (nutzt vorhandenes .features Grid)
===================================================== */

#donors .features {
  margin-top: 2.5rem;
}

/* =====================================================
   DONOR CARD
===================================================== */

#donors .card {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(160deg, rgba(25,25,45,.9), rgba(5,5,15,.95));

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 2rem 1.6rem;

  box-shadow:
    0 0 25px rgba(0,0,0,.55),
    inset 0 0 25px rgba(255,122,0,.06);

  transition: transform .35s ease, box-shadow .35s ease;
}

/* Hover */
#donors .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 0 35px rgba(255,122,0,.55),
    0 0 70px rgba(139,92,246,.35);
}

/* =====================================================
   NAME
===================================================== */

#donors .card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  margin-bottom: .6rem;

  color: #ffd369;
  text-shadow: 0 0 12px rgba(255,211,105,.4);
}

/* =====================================================
   AMOUNT
===================================================== */

#donors .card strong {
  display: inline-block;
  margin-top: .2rem;

  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .4px;

  color: #80ffdb;
  text-shadow: 0 0 10px rgba(128,255,219,.45);
}

/* =====================================================
   MESSAGE
===================================================== */

#donors .card p {
  margin-top: .7rem;
  font-size: .95rem;
  color: #ddd;
  line-height: 1.45;
}

/* Zitat-Stil */
#donors .card p em,
#donors .card p i {
  color: #ffcc80;
}

/* =====================================================
   EMPTY STATE
===================================================== */

#donors .features > p {
  grid-column: 1 / -1;
  margin-top: 2rem;

  font-size: .95rem;
  color: rgba(255,255,255,.55);
}

/* =====================================================
   SUBTLE FLOAT ANIMATION
===================================================== */

@keyframes donor-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

#donors .card {
  animation: donor-float 6s ease-in-out infinite;
}

#donors .card:hover {
  animation: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  #donors {
    padding: 4rem 1.2rem;
  }

  #donors h2 {
    font-size: 1.9rem;
  }

  #donors .card {
    padding: 1.6rem 1.3rem;
  }
}
