/* Donations & Give Back page styling */

/* Banner */
.donations-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 25px;
  text-align: center;
  color: #ffffff;
}

.donations-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  transform: scale(1.08);
  z-index: 1;
}

.donations-banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.65);
  z-index: 2;
}

.donations-banner-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.donations-banner h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.donations-banner p {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Page Layout Background */
.donations-page-bg {
  background-color: #f8fafc;
  padding: 60px 0 100px 0;
}

/* Section Headings */
.donations-section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: #1e293b;
  text-align: center;
  margin-bottom: 10px;
}

.donations-section-underline {
  border: none;
  height: 3.5px;
  background: linear-gradient(90deg, #d1281c, #991b1b);
  width: 65px;
  margin: 15px auto 40px auto;
  border-radius: 2px;
}

/* Step Cards */
.step-card-container {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  margin-bottom: 50px;
}

.donation-step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
  transition: all 0.3s ease;
}

.donation-step-card img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.donation-step-card:hover img {
  transform: scale(1.05);
  border-color: rgba(209, 40, 28, 0.2);
}

.donation-step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.donation-step-card p {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}

/* Donate Button */
.donate-btn-container {
  display: flex;
  justify-content: center;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.donate-now-btn {
  background: #d1281c !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 50px !important;
  padding: 15px 45px !important;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(209, 40, 28, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  text-decoration: none !important;
}

.donate-now-btn:hover {
  background: #991b1b !important;
  box-shadow: 0 8px 20px rgba(209, 40, 28, 0.35);
  transform: translateY(-3px) scale(1.02);
}

/* Fund Cards */
.reunion-fund-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.reunion-fund-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.reunion-fund-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(209, 40, 28, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(209, 40, 28, 0.15);
}

.reunion-fund-card:hover img {
  transform: scale(1.03);
}

.reunion-fund-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.reunion-fund-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.reunion-fund-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
