/* events.css — Outreach & Events page specific styles */

/* NOTIFY BANNER */
.notify-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%); padding: 40px 24px; }
.notify-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.notify-text h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.notify-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.notify-form { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.notify-form input { padding: 11px 18px; border-radius: 50px; border: none; font-family: var(--font-body); font-size: 0.875rem; min-width: 220px; outline: none; color: var(--text); }
.notify-form button { background: var(--white); color: var(--blue); border: none; padding: 11px 24px; border-radius: 50px; font-family: var(--font-body); font-weight: 700; font-size: 0.875rem; cursor: pointer; transition: transform 0.15s, box-shadow 0.15s; white-space: nowrap; }
.notify-form button:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* PAST EVENTS */
.past-events { padding: 80px 24px 88px; }
.past-events-inner { max-width: var(--max-w); margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-header p { color: var(--text-light); font-size: 1rem; margin-top: 8px; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}
.event-card:hover { box-shadow: 0 8px 32px rgba(10,10,242,0.09); transform: translateY(-3px); }
.event-card-bar { height: 5px; }
.bar-giveaway   { background: linear-gradient(90deg, #f5a623, #f7c56e); }
.bar-violence   { background: linear-gradient(90deg, #0a0af2, #3a3aff); }
.bar-forum      { background: linear-gradient(90deg, #1a7f4b, #34c97a); }
.bar-fundraiser { background: linear-gradient(90deg, #c0392b, #e74c3c); }
.event-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.event-meta-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 8px; }
.event-date-badge { display: flex; align-items: center; gap: 8px; }
.event-month-day { background: var(--card); border-radius: 10px; padding: 6px 12px; text-align: center; }
.event-month-day .month { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); display: block; }
.event-month-day .day { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.event-year { font-size: 0.78rem; color: var(--text-light); font-weight: 500; }
.past-badge { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: #f0f0f0; color: #888; padding: 4px 10px; border-radius: 50px; white-space: nowrap; }
.event-card-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.event-card-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.event-details { display: flex; flex-direction: column; gap: 6px; padding-top: 14px; border-top: 1px solid var(--border); }
.event-detail-row { display: flex; align-items: flex-start; gap: 8px; font-size: 0.8rem; color: var(--text-light); }
.event-detail-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }
.event-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.event-tag { font-size: 0.7rem; font-weight: 600; padding: 3px 10px; border-radius: 50px; letter-spacing: 0.04em; }
.tag-free      { background: #e8f5ee; color: #1a7f4b; }
.tag-paid      { background: #fff3e0; color: #b45309; }
.tag-giveaway  { background: #fff8e1; color: #b45309; }
.tag-forum     { background: #e8f5ee; color: #1a7f4b; }
.tag-fundraiser{ background: #fce8e8; color: #c0392b; }

/* Responsive */
@media (max-width: 960px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .notify-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .events-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .notify-form {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .notify-form input {
    min-width: unset;
    width: 100%;
  }
  .notify-form button {
    width: 100%;
    text-align: center;
  }
}

.upcoming-badge { font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; background: #e8f5ee; color: #1a7f4b; padding: 4px 10px; border-radius: 50px; white-space: nowrap; }
