/* Styles for the redesigned donate page (app/Views/pages/donate.php and donate_result.php).
   Scoped under .donate / .donate-result so the shared header/menu/footer keep the site's
   regular styles.css typography and colors. */

.donate,
.donate-result {
  background: #F5F5F6;
  font-family: 'Montserrat', sans-serif;
  padding: 48px 24px 96px;
  max-width: 860px;
  margin: 0 auto;
}

.donate h1,
.donate h2,
.donate-result h1 {
  font-family: 'Cormorant Garamond', serif;
}

.donate .donate-heading {
  font-size: 48px;
  font-weight: 800;
  color: #3A1A12;
  text-align: center;
  margin: 12px 0 8px;
}

.donate .donate-subheading {
  text-align: center;
  color: #6B6B70;
  font-size: 18px;
  margin: 0 0 40px;
}

.donate .donate-why {
  background: #5B9DF3;
  border-radius: 20px;
  padding: 40px 48px;
  margin-bottom: 40px;
}

.donate .donate-why h2 {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
}

.donate .donate-why p {
  color: #fff;
  text-align: center;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.donate .donate-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.donate .donate-tabs {
  display: flex;
  border-bottom: 2px solid #EEEEF0;
  margin-bottom: 28px;
}

.donate .donate-tab {
  flex: 1;
  padding: 14px 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: -2px;
  color: #A0A0A6;
}

.donate .donate-tab.active {
  color: #3A1A12;
  border-bottom-color: #4F97F3;
}

.donate .donate-amounts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 480px) {
  .donate .donate-amounts {
    grid-template-columns: 1fr;
  }
}

.donate .donate-amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-radius: 12px;
  border: 2px solid #D6E4FB;
  background: #fff;
  color: #3A67B8;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 22px;
  box-sizing: border-box;
  transition: border-color .15s;
}

.donate .donate-amount:hover {
  border-color: #4F97F3;
  color: #3A67B8;
}

.donate .donate-amount-cta {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.8;
}

.donate .donate-custom-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: 16px;
  border-radius: 12px;
  border: 2px dashed #C9D9F5;
  background: #F7FAFF;
  color: #3A1A12;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  margin-top: 4px;
}

.donate .donate-note {
  text-align: center;
  color: #8A8A90;
  font-size: 14px;
  line-height: 1.6;
  margin: 28px 0 0;
}

.donate .donate-terms-notice {
  text-align: center;
  color: #8A8A90;
  font-size: 14px;
  line-height: 1.6;
  margin: 40px 0;
}

.donate .donate-terms-notice a {
  color: inherit;
  text-decoration: underline;
}

.donate .donate-share {
  background: #F7C948;
  border-radius: 20px;
  padding: 32px 48px;
  margin-top: 40px;
}

.donate .donate-share p {
  color: #3A1A12;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* Thank-you / result page */

.donate-result {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.donate-result .donate-result-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

.donate-result h1 {
  font-size: 44px;
  font-weight: 800;
  color: #3A1A12;
  margin: 0 0 12px;
}

.donate-result p {
  color: #6B6B70;
  font-size: 18px;
  max-width: 480px;
  margin: 0 0 32px;
}

.donate-result .donate-back {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  background: #4F97F3;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.donate-result .donate-back:hover {
  background: #3B7FDB;
  color: #fff;
}
