/* volunteer.css - OHTCC Volunteer & Seva Page */

/* ── Volunteer Section background ── */
.volunteer-section { background: #faf7f2; }

/* ── Feature Cards (Ways to Serve) ── */
.feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.09);
  border-top: 4px solid #cc4e00;
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(204,78,0,0.15);
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #cc4e00, #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 auto 16px
}
.feature-card h4 {
  color: #7a0c10;
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ── Salvation Army Spotlight ── */
.salvation-highlight {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border-left: 6px solid #cc4e00;
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
}
.salvation-highlight h3 {
  color: #7a0c10;
  font-weight: 700;
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.salvation-highlight p {
  font-size: 1rem;
  line-height: 1.75;
  color: #444;
}
.salvation-highlight .badge-pill {
  display: inline-block;
  background: #cc4e00;
  color: #fff;
  border-radius: 20px;
  padding: 6px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Why/Join cards ── */
.volunteer-why { background: #fff8f0; }
.volunteer-why .card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  background: #fff;
}
.volunteer-why .card ul li {
  padding: 5px 0;
  font-size: 0.95rem;
  color: #444;
  border: none;
}

/* ── Spotlight info card ── */
.spotlight-info-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 28px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  border: none;
  height: 100%;
}
.spotlight-info-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid #f0e0d0;
  font-size: 0.95rem;
  color: #444;
}
.spotlight-info-card ul li:last-child {
  border-bottom: none;
}

/* ── Spotlight section bg ── */
.section-spotlight { background: #fffbf3; }
