/* [project]/src/app/learn-more/learn-more.css [app-client] (css) */
.mission-page {
  background: #fff;
  min-height: 90vh;
  padding: 4rem 2rem;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-header h1 {
  color: #004aad;
  background: linear-gradient(135deg, #004aad, #1c2253);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
}

.mission-header p {
  color: #666;
  font-size: 1.2rem;
}

.mission-content {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
}

.mission-content .mission-section {
  grid-column: auto;
  margin-bottom: 0;
}

.mission-section {
  color: #fff;
  background: linear-gradient(135deg, #004aad, #1c2253);
  border: 3px solid #fdd835;
  border-radius: 20px;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  transition: transform .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.mission-section:hover {
  transform: translateY(-5px);
}

.mission-section:before {
  content: "";
  background: linear-gradient(90deg, #fdd835, #43a047);
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

.section-icon {
  color: #fdd835;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.mission-section h2 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 600;
}

.statement-box {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.statement-box p {
  color: #fff;
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission-section {
  animation: .6s ease-out forwards fadeInUp;
}

.mission-section:nth-child(2) {
  animation-delay: .2s;
}

.mission-section:nth-child(3) {
  animation-delay: .4s;
}

.cta-section .statement-box {
  justify-content: space-between;
}

.cta-section .statement-box p {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.8;
}

.cta-section .statement-box strong {
  color: #fdd835;
  font-weight: 700;
}

.cta-buttons {
  justify-content: center;
  gap: 1rem;
  width: 100%;
  margin-top: auto;
  display: flex;
}

.cta-button {
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s;
}

.donate-btn {
  color: #fff;
  background: #43a047;
  border-color: #43a047;
}

.donate-btn:hover {
  background: #2e7d32;
  border-color: #2e7d32;
  transform: translateY(-2px);
}

.volunteer-btn {
  color: #fdd835;
  background: none;
  border-color: #fdd835;
}

.volunteer-btn:hover {
  color: #004aad;
  background: #fdd835;
  transform: translateY(-2px);
}

.modal-overlay {
  z-index: 1000;
  background: rgba(0, 0, 0, .7);
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  padding: 2rem;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.modal-close {
  cursor: pointer;
  color: #666;
  background: none;
  border: none;
  border-radius: 50%;
  padding: .5rem;
  font-size: 1.5rem;
  transition: all .3s;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal-close:hover {
  color: #333;
  background: #f5f5f5;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-header h2 {
  color: #004aad;
  margin-bottom: .5rem;
  font-size: 1.75rem;
}

.modal-header p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.heart-icon {
  color: #43a047;
  margin-bottom: 1rem;
}

.donation-form {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  color: #333;
  margin-bottom: .5rem;
  font-weight: 600;
  display: block;
}

.form-group input {
  border: 2px solid #e1e5e9;
  border-radius: 8px;
  width: 100%;
  padding: .75rem;
  font-size: 1rem;
  transition: border-color .3s;
}

.form-group input:focus {
  border-color: #004aad;
  outline: none;
}

.amount-input {
  align-items: center;
  display: flex;
  position: relative;
}

.currency-symbol {
  color: #666;
  font-weight: 600;
  position: absolute;
  left: .75rem;
}

.amount-input input {
  padding-left: 2rem;
}

.donate-button {
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #43a047, #4caf50);
  border: none;
  border-radius: 8px;
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all .3s;
}

.donate-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(67, 160, 71, .3);
}

.donate-button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.error-message {
  color: #c62828;
  background: #ffebee;
  border-radius: 8px;
  margin-bottom: 1rem;
  padding: 1rem;
  font-weight: 500;
}

.donation-info {
  background: #f8f9fa;
  border-left: 4px solid #43a047;
  border-radius: 8px;
  padding: 1rem;
}

.donation-info p {
  color: #666;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.donation-info strong {
  color: #43a047;
}

@media (max-width: 768px) {
  .mission-page {
    padding: 2rem 1rem;
  }

  .mission-header h1 {
    font-size: 2.2rem;
  }

  .mission-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mission-content .cta-section {
    grid-column: 1 / -1;
    margin-top: 1.5rem;
  }

  .mission-section {
    padding: 2rem;
  }

  .mission-section h2 {
    font-size: 1.5rem;
  }

  .statement-box p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .cta-buttons {
    flex-direction: column;
    gap: .75rem;
  }

  .cta-button {
    padding: .6rem 1.2rem;
    font-size: .9rem;
  }

  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }

  .modal-header h2 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=src_app_learn-more_learn-more_5d2ebef8.css.map*/