/* ======================================================
   DONATE PAGE — MATCHED WITH ALL OTHER PAGES DESIGN
====================================================== */

:root {
  --primary: #0d6efd;
  --primary-dark: #084bb8;
  --green: #0b7a2a;
  --text-dark: #1d1d1d;
  --bg-light: #f4f9ff;
  --radius: 18px;
}

body {
  margin-top: 80px;
  background: var(--bg-light);
  font-family: "Segoe UI", sans-serif;
}

/* ===================== NAVBAR ===================== */
.navbar {
  background: linear-gradient(90deg, var(--green), var(--primary)) !important;
  padding: 15px 0;
  border: none !important;
  box-shadow: 0px 4px 30px rgba(0,0,0,.25);
}

.navbar-brand {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff !important;
  text-shadow:
  2px 2px 6px rgba(0,0,0,0.55),
  0 0 18px rgba(255,255,255,0.55);
}

.nav-link {
  font-weight: 600;
  color: #fff !important;
  padding: 10px 14px !important;
}

.nav-link.active,
.nav-link:hover {
  color: #ffeb3b !important;
  text-shadow: 0 0 10px #fff;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}


/* ===================== HEADER BANNER ===================== */
.donate-banner {
  height: 40vh;
  background: linear-gradient(#00000070, #00000070),
              url('../assets/images/donate-bg.jpg') center/cover no-repeat;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-banner h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 0px 5px 18px rgba(0,0,0,0.5);
}


/* ===================== DONATION SECTION ===================== */
.donate-section {
  padding: 65px 0;
}

/* QR Code Box */
.qr-box {
  background: #fff;
  padding: 25px;
  width: 260px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.15);
}

/* Bank Details Box */
.bank-box {
  background: #fff;
  padding: 25px;
  border-radius: var(--radius);
  max-width: 500px;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.12);
}

/* CTA Button */
.btn-donate {
  background: #ffd500;
  font-weight: 700;
  border-radius: var(--radius);
  padding: 12px 30px;
  transition: .3s;
}

.btn-donate:hover {
  background: #ffb800;
  transform: translateY(-5px);
}


/* ===================== WHY DONATE — Impact Cards ===================== */
.impact-card {
  background: var(--primary);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: 0px 8px 26px rgba(0,0,0,.15);
  transition: .3s;
}

.impact-card:hover {
  transform: translateY(-8px);
}


/* ===================== FOOTER ===================== */
.footer-pro {
  background: linear-gradient(90deg, #003c9e, #0d6efd);
  padding: 30px 0;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
  margin-top: 60px;
  color: #fff;
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .donate-banner { height: 30vh; }
  .donate-banner h1 { font-size: 2.2rem; }
  .qr-box { margin: 0 auto; }
  .bank-box { margin: auto; }
}
