/* Donate Page Custom Styles */

body {
  background: linear-gradient(135deg, #f8fafc 0%, #e8eaf6 100%);
}

.section.donation-primary {
  background: rgba(255,255,255,0.98);
  border-radius: 1.5rem;
  box-shadow: 0 8px 32px rgba(106, 90, 205, 0.10);
  margin: 3rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem;
  position: relative;
}

.donation-hero h2 {
  font-size: 2.7rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6a5acd 0%, #836fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.donation-tagline {
  font-size: 1.2rem;
  color: #836fff;
  font-style: italic;
  margin-bottom: 2rem;
}

.donation-content p {
  color: #4b0082;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.ways-to-give {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.give-option {
  background: linear-gradient(135deg, #f3e8ff 60%, #fff 100%);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(106, 90, 205, 0.08);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1.5px solid #e0d7fa;
  cursor: pointer;
}
.give-option:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 8px 32px rgba(106, 90, 205, 0.18);
  border-color: #ffd700;
}
.give-option h3 {
  color: #6a5acd;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.give-option p {
  color: #555;
  font-size: 1rem;
}

.impact-section {
  background: linear-gradient(135deg, #f8f9ff 60%, #f3e8ff 100%);
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 12px rgba(106, 90, 205, 0.07);
}
.impact-section h3 {
  color: #4b0082;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.impact-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.impact-item {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 10px rgba(106, 90, 205, 0.08);
  padding: 1.5rem 1rem;
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  margin-bottom: 1rem;
  transition: transform 0.22s, box-shadow 0.22s;
  border: 1.5px solid #e0d7fa;
  cursor: pointer;
}
.impact-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 6px 24px rgba(106, 90, 205, 0.15);
  border-color: #ffd700;
}
.impact-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.impact-item h4 {
  color: #6a5acd;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.impact-item p {
  color: #555;
  font-size: 0.98rem;
}

.tax-info {
  background: #f3e8ff;
  border-radius: 0.8rem;
  padding: 1.2rem 1rem;
  margin: 2rem auto 1.5rem auto;
  max-width: 600px;
  box-shadow: 0 2px 8px rgba(106, 90, 205, 0.07);
  text-align: center;
}
.tax-info h3 {
  color: #4b0082;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.tax-info p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.tax-id {
  color: #6a5acd;
  font-weight: bold;
  font-size: 1.05rem;
}

.button-center {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.cta-button.primary-cta {
  background: linear-gradient(90deg, #ffd700 60%, #ffe066 100%);
  color: #4b0082;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 2rem;
  padding: 1rem 2.5rem;
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.18);
  border: none;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cta-button.primary-cta:hover {
  background: linear-gradient(90deg, #ffe066 60%, #ffd700 100%);
  color: #6a5acd;
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(255, 215, 0, 0.25);
}

@media (max-width: 900px) {
  .section.donation-primary {
    padding: 1.2rem 0.5rem;
  }
  .ways-to-give, .impact-grid {
    flex-direction: column;
    gap: 1.2rem;
  }
} 