/* Donate Page Styles — css/donate.css */

/* ── Shared section typography (used by all four sections)
   ========================================================================== */

.donate-section-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-green);
  margin-bottom: var(--space-3);
}

.donate-section-heading {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  line-height: var(--leading-tight);
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

.donate-section-intro {
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.8);
  max-width: 68ch;
  margin-bottom: var(--space-12);
}

/* 1. Page Header + Jump Cards
   ========================================================================== */

.donate-header {
  background-color: var(--color-white);
  padding-block: var(--space-16) var(--space-20);
  text-align: center;
}

.donate-header__inner {
  max-width: 860px;
}

.donate-header__label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-green);
  margin-bottom: var(--space-3);
}

.donate-header__heading {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  line-height: var(--leading-tight);
  color: var(--color-dark);
  margin-bottom: var(--space-5);
}

.donate-header__subhead {
  font-size: var(--text-md);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.7);
  max-width: 60ch;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.donate-jump-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  text-align: left;
}

.donate-jump-card {
  background-color: var(--color-white);
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.donate-jump-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.donate-jump-card__icon {
  color: var(--color-green);
  margin-bottom: var(--space-2);
}

.donate-jump-card__title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
}

.donate-jump-card__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.7);
  flex: 1;
}

.donate-jump-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .donate-jump-cards {
    grid-template-columns: 1fr;
  }
}

/* 2. Donate Money
   ========================================================================== */

.donate-money {
  background-color: var(--color-mint);
  padding-block: var(--space-20);
}

.donate-money__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.impact-list {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.impact-list__heading {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-6);
}

.impact-list__items {
  display: flex;
  flex-direction: column;
}

.impact-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding-block: var(--space-4);
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.impact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.impact-item__amount {
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  color: var(--color-green);
  flex-shrink: 0;
  min-width: 4rem;
}

.impact-item__label {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.8);
}

.bloomerang-widget {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-6));
}

.widget-placeholder {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.widget-placeholder p {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.widget-placeholder p:last-child {
  margin-bottom: 0;
}

.widget-placeholder a {
  color: var(--color-green);
  font-weight: var(--font-weight-bold);
}

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

  .bloomerang-widget {
    position: static;
  }
}

/* 3. Donate Furniture
   ========================================================================== */

.donate-furniture {
  background-color: var(--color-sky);
  padding-block: var(--space-20);
}

.furniture-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.furniture-list {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
}

.furniture-list__heading {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid;
}

.furniture-list__heading--accept {
  color: var(--color-green);
  border-color: var(--color-green);
}

.furniture-list__heading--decline {
  color: rgba(26, 26, 46, 0.5);
  border-color: rgba(26, 26, 46, 0.15);
}

.furniture-list__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-left: 0;
  list-style: none;
}

.furniture-list__items li {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.8);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.furniture-list__items li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.furniture-list--accept .furniture-list__items li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2305a372' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

.furniture-list--decline .furniture-list__items li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

.furniture-list__guideline {
  margin-top: var(--space-6);
  font-size: var(--text-sm);
  font-style: italic;
  color: rgba(26, 26, 46, 0.6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.furniture-how {
  background-color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-sm);
}

.furniture-how__heading {
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-8);
}

.furniture-how__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.furniture-how__step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.furniture-how__number {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--color-green);
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.furniture-how__step-title {
  font-weight: var(--font-weight-bold);
  font-size: var(--text-base);
  color: var(--color-dark);
  margin-bottom: var(--space-2);
}

.furniture-how__step-desc {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.7);
  margin-bottom: var(--space-3);
}

.furniture-how__link {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--transition-fast);
}

.furniture-how__link:hover {
  color: var(--color-green-dark);
}

.furniture-contact {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  font-size: var(--text-sm);
  color: rgba(26, 26, 46, 0.7);
}

.furniture-contact a {
  color: var(--color-green);
  font-weight: var(--font-weight-bold);
  transition: color var(--transition-fast);
}

.furniture-contact a:hover {
  color: var(--color-green-dark);
}

@media (max-width: 768px) {
  .furniture-lists {
    grid-template-columns: 1fr;
  }
}

/* 4. Volunteer Your Time
   ========================================================================== */

.donate-volunteer {
  background-color: var(--color-white);
  padding-block: var(--space-20);
}

.volunteer-roles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

.volunteer-role {
  background-color: var(--color-mint);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

.volunteer-role__title {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-dark);
  margin-bottom: var(--space-4);
}

.volunteer-role__desc {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(26, 26, 46, 0.8);
}

.volunteer-form {
  max-width: 720px;
}

.volunteer-form-placeholder {
  background-color: var(--color-sky);
  border-radius: var(--radius-lg);
  padding: var(--space-12);
  text-align: center;
}

.volunteer-form-placeholder p {
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
}

.volunteer-form-placeholder p:last-child {
  margin-bottom: 0;
}

.volunteer-form-placeholder a {
  color: var(--color-green);
  font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
  .volunteer-roles {
    grid-template-columns: 1fr;
  }
}
