/* Donate Page Styles */

.donate-page {
  padding: 40px 0;
}

.donate-page h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color, #003366);
  border-bottom: 3px solid var(--primary-color, #003366);
  padding-bottom: 20px;
}

/* Donation Intro Section */
.donate-intro {
  background: linear-gradient(135deg, #f5f5f5 0%, #ebebeb 100%);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 50px;
  border-left: 5px solid var(--primary-color, #003366);
}

.donate-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin: 0 0 15px 0;
}

.donate-intro p:last-child {
  margin-bottom: 0;
}

/* Donation Options Section */
.donate-options {
  margin-bottom: 60px;
}

.donate-options h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color, #003366);
}

.donation-levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.donation-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.donation-card:hover {
  border-color: var(--primary-color, #003366);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.15);
  transform: translateY(-5px);
}

.donation-card.featured {
  border-color: var(--accent-color, #0066cc);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.donation-card.featured:hover {
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
  transform: scale(1.05) translateY(-5px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color, #0066cc);
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.donation-card h3 {
  font-size: 2rem;
  color: var(--primary-color, #003366);
  margin: 10px 0;
  font-weight: 700;
}

.donation-desc {
  color: #666;
  font-size: 0.95rem;
  margin: 15px 0 25px 0;
}

/* Custom Donation Section */
.custom-donation {
  background: #f9f9f9;
  border: 2px dashed var(--primary-color, #003366);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  margin-top: 40px;
}

.custom-donation h3 {
  font-size: 1.5rem;
  color: var(--primary-color, #003366);
  margin-bottom: 10px;
}

.custom-donation p {
  color: #666;
  margin-bottom: 25px;
}

/* Donation Impact Section */
.donate-impact {
  background: #f5f5f5;
  padding: 50px 30px;
  border-radius: 8px;
  margin-bottom: 60px;
}

.donate-impact h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--primary-color, #003366);
  text-align: center;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.impact-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-color, #003366);
}

.impact-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.impact-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.impact-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color, #003366);
  margin-bottom: 10px;
}

.impact-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Donation Details Section */
.donate-details {
  margin-bottom: 60px;
}

.donate-details h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--primary-color, #003366);
}

.details-content {
  background: #fff;
  border-left: 5px solid var(--primary-color, #003366);
  padding: 30px;
  border-radius: 4px;
}

.details-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color, #003366);
  margin-top: 25px;
  margin-bottom: 10px;
}

.details-content h3:first-child {
  margin-top: 0;
}

.details-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.details-content p:last-child {
  margin-bottom: 0;
}

/* Thank You Section */
.donate-thanks {
  background: linear-gradient(135deg, var(--primary-color, #003366) 0%, #004d99 100%);
  color: #fff;
  padding: 50px 30px;
  border-radius: 8px;
  text-align: center;
}

.donate-thanks h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #fff;
}

.donate-thanks p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.donate-thanks p:last-child {
  margin-bottom: 0;
}

.donate-thanks a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.donate-thanks a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-donate {
  background: var(--accent-color, #0066cc);
  color: #fff;
}

.btn-donate:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Donation Amounts Grid */
.donation-amounts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
  margin-bottom: 30px;
}

.amount-btn {
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  background: #fff;
  color: var(--primary-color, #003366);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  text-decoration: none;
}

.amount-btn:hover {
  border-color: var(--primary-color, #003366);
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.15);
  text-decoration: none;
  color: var(--primary-color, #003366);
}

.amount-btn.featured {
  border-color: var(--accent-color, #0066cc);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
  color: var(--accent-color, #0066cc);
}

.amount-btn.featured:hover {
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
  color: var(--accent-color, #0066cc);
}

/* Custom Amount Section */
.custom-amount-section {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.custom-amount-section label {
  display: block;
  font-weight: 600;
  color: var(--primary-color, #003366);
  margin-bottom: 12px;
  font-size: 1rem;
}

.amount-input-group {
  display: flex;
  align-items: center;
  max-width: 200px;
}

.amount-input-group .currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color, #003366);
  margin-right: 8px;
}

.amount-input-group input {
  flex: 1;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.amount-input-group input:focus {
  outline: none;
  border-color: var(--accent-color, #0066cc);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}


.donation-intro-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .donate-page h1 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

  .donate-intro {
    padding: 20px;
    margin-bottom: 30px;
  }

  .donation-levels {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
  }

  .donation-card {
    padding: 20px 15px;
  }

  .donation-card h3 {
    font-size: 1.5rem;
  }

  .donation-card.featured {
    transform: scale(1.02);
  }

  .donation-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
  }

  .custom-donation {
    padding: 25px 20px;
    margin-top: 25px;
  }

  .donate-impact {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .donate-impact h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .donate-details {
    margin-bottom: 40px;
  }

  .donate-details h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .details-content {
    padding: 20px;
  }

  .donate-thanks {
    padding: 30px 20px;
  }

  .donate-thanks h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .donate-thanks p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .donation-amounts {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .amount-btn {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .custom-amount-section {
    padding: 20px;
  }

  .amount-input-group {
    max-width: 150px;
  }

  #checkout-button {
    max-width: 100%;
  }
}
