/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.7;
  font-size: 15px;
}
a { color: #2271b1; text-decoration: none; }
a:hover { color: #135e96; text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ── TOP BAR ── */
.top-bar {
  background: #1d2327;
  color: #c3c4c7;
  font-size: 12px;
  padding: 6px 0;
  text-align: right;
}
.top-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.top-bar a {
  color: #c3c4c7;
  margin-left: 16px;
  font-size: 12px;
}
.top-bar a:hover { color: #fff; text-decoration: none; }

/* ── HEADER ── */
header {
  background: #fff;
  border-bottom: 3px solid #2e7d32;
  padding: 16px 0;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo-cost {
  display: inline-block;
  font-family: 'Arial Black', 'Impact', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: #2e7d32;
  letter-spacing: 1px;
  line-height: 1;
}
.logo-cost .cents {
  font-size: 38px;
  position: relative;
  top: 1px;
  color: #2e7d32;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #2e7d32;
  line-height: 1.2;
}
.logo-text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.5px;
}

/* ── NAV ── */
nav { background: #1a5276; }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
nav a {
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 500;
  display: inline-block;
  text-decoration: none;
  transition: background 0.15s;
}
nav a:hover {
  background: rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
}
nav a.active {
  background: rgba(255,255,255,0.15);
  font-weight: 700;
}
nav a.donate-link {
  background: #2ea043;
  color: #fff;
  margin-left: auto;
  font-weight: 700;
  padding: 12px 22px;
}
nav a.donate-link:hover { background: #278a39; }
nav a.zombie-link {
  background: #5c2d91;
  color: #4ecca3;
  font-weight: 700;
}
nav a.zombie-link:hover { background: #4a2375; }

/* ── HERO BANNER ── */
.hero-banner {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #8fb3cc;
}
.hero-banner img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  padding: 48px 20px 24px;
}
.hero-overlay-inner { max-width: 1100px; margin: 0 auto; }
.hero-overlay a { color: #fff; font-size: 15px; text-decoration: underline; }
.hero-overlay a:hover { color: #f0f0f0; }

/* ── PAGE HEADER ── */
.page-header {
  background: #f0f6fb;
  border-bottom: 1px solid #d0dce5;
  padding: 36px 20px;
}
.page-header-inner { max-width: 1100px; margin: 0 auto; }
.page-header h1 { font-size: 28px; color: #1a5276; font-weight: 700; }

/* ── PAGE CONTENT AREA ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 40px;
  margin-top: 36px;
  margin-bottom: 48px;
}
.main-content { flex: 1; min-width: 0; }
.sidebar { width: 300px; flex-shrink: 0; }

/* ── TAGLINE ── */
.tagline {
  text-align: center;
  padding: 32px 0 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 32px;
}
.tagline h2 { font-size: 22px; color: #1a5276; font-style: italic; font-weight: 400; margin-bottom: 12px; }
.tagline p { font-size: 15px; color: #333; max-width: 780px; margin: 0 auto; line-height: 1.7; }
.tagline p strong { font-weight: 700; }

/* ── SECTION TITLES ── */
.section-title { font-size: 24px; color: #1a5276; font-weight: 700; margin: 32px 0 16px; }
.main-content p { margin-bottom: 16px; line-height: 1.75; }

/* ── SUB-NAV ── */
.sub-nav { list-style: none; margin: 16px 0 32px; padding: 0; }
.sub-nav li { margin-bottom: 6px; }
.sub-nav li a { display: inline-block; padding: 6px 0; font-size: 15px; color: #2271b1; font-weight: 500; }

/* ── NUMBERED LIST ── */
.mission-list { margin: 16px 0 24px 24px; line-height: 1.8; }
.mission-list li { margin-bottom: 4px; }

/* ── THREE COLUMN FEATURES ── */
.features { display: flex; gap: 28px; margin: 36px 0; }
.feature { flex: 1; text-align: center; }
.feature-icon { font-size: 48px; margin-bottom: 12px; display: block; }
.feature h3 { font-size: 17px; font-weight: 700; color: #1a5276; margin-bottom: 8px; }
.feature p { font-size: 14px; color: #555; line-height: 1.65; }

/* ── NEWS ITEMS ── */
.news-section { margin-top: 40px; padding-top: 32px; border-top: 1px solid #e0e0e0; }
.news-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #eee; }
.news-item:last-child { border-bottom: none; }
.news-item h4 { font-size: 18px; margin-bottom: 4px; }
.news-item h4 a { color: #1a5276; }
.news-item h4 a:hover { color: #135e96; text-decoration: underline; }
.news-date { font-size: 13px; color: #888; margin-bottom: 8px; }
.news-item p { font-size: 14px; color: #555; }
.read-more { display: inline-block; margin-top: 8px; font-size: 14px; font-weight: 600; color: #2271b1; }

/* ── EXEMPTIONS ── */
.exemptions-section { margin-top: 36px; padding-top: 32px; border-top: 1px solid #e0e0e0; }
.exemptions-box { display: flex; gap: 24px; align-items: center; margin-top: 16px; }
.exemptions-img {
  width: 280px; height: 185px;
  background: linear-gradient(135deg, #f8e8d4, #e8d4c0);
  border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; border: 1px solid #e0d8cc;
}
.exemptions-text p { font-size: 14px; color: #555; margin-bottom: 12px; }
.exemptions-text a.more-link { font-weight: 700; font-size: 15px; color: #2271b1; }

/* ── ACCOMPLISHMENT TABLE ── */
.accomplishments-table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; }
.accomplishments-table th, .accomplishments-table td { text-align: left; padding: 12px 16px; border-bottom: 1px solid #e0e0e0; font-size: 14px; vertical-align: top; }
.accomplishments-table th { background: #1a5276; color: #fff; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.accomplishments-table tr:nth-child(even) { background: #f9f9f9; }
.accomplishments-table .result-defeated { color: #d63638; font-weight: 700; }
.accomplishments-table .result-endorsed { color: #2ea043; font-weight: 700; }

/* ── BOARD MEMBERS GRID ── */
.board-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; margin: 20px 0 32px; }
.board-card { border: 1px solid #e0e0e0; border-radius: 6px; padding: 20px; text-align: center; background: #fafafa; }
.board-avatar { width: 80px; height: 80px; border-radius: 50%; background: #d0dce5; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.board-card h4 { font-size: 15px; color: #1a5276; margin-bottom: 2px; }
.board-card .board-title { font-size: 12px; color: #888; font-style: italic; margin-bottom: 6px; }
.board-card .board-bio { font-size: 12px; color: #666; line-height: 1.5; }

/* ── FEAR TACTICS CALLOUT ── */
.fear-callout {
  background: linear-gradient(135deg, #fff5f5, #fff0f0);
  border: 2px solid #d63638;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
}
.fear-callout h3 { color: #d63638; font-size: 18px; margin-bottom: 10px; }
.fear-callout p { font-size: 14px; color: #555; }
.fear-word { display: inline-block; background: #d63638; color: #fff; padding: 2px 8px; border-radius: 3px; font-weight: 700; font-size: 13px; margin: 2px; }

/* ── ZOMBIE PAGE ── */
.zombie-banner {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  padding: 48px 20px;
  text-align: center;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}
.zombie-banner::before {
  content: '🧟🧟‍♂️🧟‍♀️';
  position: absolute;
  font-size: 120px;
  opacity: 0.06;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 40px;
}
.zombie-banner h2 { font-size: 32px; color: #4ecca3; margin-bottom: 8px; position: relative; }
.zombie-banner p { color: #a0a0b0; font-size: 15px; max-width: 600px; margin: 0 auto; position: relative; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 20px 0 32px; }
.comparison-table th, .comparison-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid #e0e0e0; font-size: 14px; vertical-align: top; }
.comparison-table th { font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-table th:nth-child(1) { background: #1a5276; color: #fff; }
.comparison-table th:nth-child(2) { background: #2d4a22; color: #fff; }
.comparison-table tr:nth-child(even) { background: #f9f9f9; }
.comparison-table td:nth-child(2) { color: #2d4a22; font-weight: 500; }
.zombie-quote {
  background: #f0f6fb;
  border-left: 4px solid #5c2d91;
  padding: 16px 20px;
  margin: 20px 0;
  font-style: italic;
  color: #444;
}
.zombie-quote .attribution { font-style: normal; font-weight: 700; color: #5c2d91; margin-top: 8px; font-size: 13px; }

/* ── PLAYGROUND BURN PAGE ── */
.burn-banner {
  background: linear-gradient(135deg, #b71c1c, #e65100, #ff8f00);
  padding: 48px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.burn-banner::before {
  content: '🔥🔥🔥🔥🔥';
  position: absolute;
  font-size: 100px;
  opacity: 0.1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  letter-spacing: 30px;
}
.burn-banner h2 { font-size: 30px; position: relative; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.burn-banner p { color: #ffe0b2; font-size: 15px; max-width: 600px; margin: 8px auto 0; position: relative; }
.event-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.event-date-badge {
  background: #b71c1c;
  color: #fff;
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 90px;
  flex-shrink: 0;
}
.event-date-badge .month { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; }
.event-date-badge .day { font-size: 36px; font-weight: 900; line-height: 1.1; }
.event-date-badge .year { font-size: 12px; }
.event-details h3 { font-size: 18px; color: #b71c1c; margin-bottom: 4px; }
.event-details p { font-size: 14px; color: #555; }
.itinerary-step {
  display: flex;
  gap: 16px;
  margin: 16px 0;
  align-items: flex-start;
}
.step-time {
  font-size: 13px;
  font-weight: 700;
  color: #b71c1c;
  min-width: 70px;
  flex-shrink: 0;
  padding-top: 2px;
}
.step-content { font-size: 14px; color: #555; }
.step-content strong { color: #333; }

/* ── BOARD PHOTO PAGE ── */
.board-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
  margin: 24px 0 36px;
}
.board-photo-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fafafa;
}
.board-photo-placeholder {
  width: 100%;
  height: 280px;
  background: #e8e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  text-align: center;
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
.board-photo-placeholder .placeholder-icon { font-size: 48px; margin-bottom: 8px; opacity: 0.5; }
.board-photo-placeholder img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-photo-info {
  padding: 16px 20px;
}
.board-photo-info h3 { font-size: 17px; color: #1a5276; margin-bottom: 2px; }
.board-photo-info .board-role { font-size: 12px; color: #b71c1c; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 8px; }
.board-photo-info .board-details { font-size: 13px; color: #666; line-height: 1.55; }
.board-photo-info .board-details strong { color: #444; }

/* ── SIDEBAR ── */
.sidebar-widget { margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #e0e0e0; }
.sidebar-widget:last-child { border-bottom: none; }
.sidebar-widget h3 { font-size: 17px; color: #1a5276; margin-bottom: 12px; font-weight: 700; }
.sidebar-widget p { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 10px; }
.search-box { display: flex; gap: 0; }
.search-box input { flex: 1; padding: 8px 12px; border: 1px solid #ccc; border-right: none; font-size: 14px; border-radius: 3px 0 0 3px; }
.search-box button { padding: 8px 16px; background: #1a5276; color: #fff; border: none; font-size: 13px; cursor: pointer; border-radius: 0 3px 3px 0; font-weight: 600; }
.donate-btn { display: block; background: #2ea043; color: #fff !important; text-align: center; padding: 14px 20px; border-radius: 4px; font-size: 16px; font-weight: 700; text-decoration: none !important; margin-bottom: 10px; transition: background 0.15s; }
.donate-btn:hover { background: #278a39; }
.disclaimer-box { background: #f7f7f7; border: 1px solid #e0e0e0; border-radius: 4px; padding: 14px 16px; font-size: 12px; color: #888; font-style: italic; }

/* ── CALCULATOR WIDGET ── */
.calc-widget { background: #f0f6fb; border: 2px solid #2271b1; border-radius: 6px; padding: 20px; margin-bottom: 24px; }
.calc-widget h3 { color: #1a5276; font-size: 16px; margin-bottom: 14px; }
.calc-widget label { display: block; font-size: 12px; font-weight: 600; color: #444; margin-bottom: 4px; margin-top: 10px; }
.calc-widget input, .calc-widget select { width: 100%; padding: 8px 10px; border: 1px solid #ccc; border-radius: 3px; font-size: 14px; }
.calc-widget button { width: 100%; margin-top: 14px; padding: 10px; background: #1a5276; color: #fff; border: none; border-radius: 3px; font-size: 14px; font-weight: 700; cursor: pointer; }
.calc-widget button:hover { background: #154463; }
.calc-result { display: none; margin-top: 14px; padding: 12px; background: #fff; border: 1px solid #d0dce5; border-radius: 4px; text-align: center; }
.calc-result.visible { display: block; }
.calc-result .label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.calc-result .amount { font-size: 28px; font-weight: 800; color: #1a5276; }
.calc-result .context { font-size: 12px; color: #666; margin-top: 6px; font-style: italic; line-height: 1.5; }

/* ── DONATE PAGE ── */
.donate-tiers { display: flex; gap: 20px; margin: 24px 0 32px; flex-wrap: wrap; }
.donate-tier { flex: 1; min-width: 200px; border: 2px solid #e0e0e0; border-radius: 6px; padding: 24px 20px; text-align: center; transition: border-color 0.2s; }
.donate-tier:hover { border-color: #2271b1; }
.donate-tier h3 { font-size: 32px; color: #1a5276; margin-bottom: 8px; }
.donate-tier .tier-name { font-size: 14px; font-weight: 700; color: #1a5276; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.donate-tier p { font-size: 13px; color: #666; line-height: 1.6; }
.donate-tier .tier-btn { display: inline-block; margin-top: 14px; padding: 10px 28px; background: #2ea043; color: #fff; text-decoration: none; border-radius: 4px; font-weight: 700; font-size: 14px; }
.donate-tier .tier-btn:hover { background: #278a39; text-decoration: none; color: #fff; }

/* ── FORMS ── */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #333; margin-bottom: 4px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid #ccc; border-radius: 4px; font-size: 14px; font-family: inherit; }
.form-group textarea { height: 120px; resize: vertical; }
.form-submit { padding: 12px 32px; background: #1a5276; color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; }
.form-submit:hover { background: #154463; }

/* ── FOOTER ── */
footer { background: #1d2327; color: #a7aaad; padding: 32px 0 20px; font-size: 13px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.footer-title { font-size: 14px; font-weight: 700; color: #c3c4c7; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links { list-style: none; margin-bottom: 24px; }
.footer-links li { margin-bottom: 4px; }
.footer-links a { color: #a7aaad; font-size: 13px; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid #3c434a; padding-top: 16px; margin-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 12px; color: #72777c; }
.footer-bottom a { color: #a7aaad; }

/* ── PARODY FOOTER ── */
.parody-footer { background: #d63638; color: #fff; text-align: center; padding: 14px 20px; font-size: 13px; font-weight: 600; line-height: 1.5; }
.parody-footer a { color: #ffd700; text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .page-wrap { flex-direction: column; }
  .sidebar { width: 100%; }
  .features { flex-direction: column; }
  .exemptions-box { flex-direction: column; }
  .nav-inner { flex-wrap: wrap; }
  nav a { padding: 10px 8px; font-size: 12px; }
  .donate-tiers { flex-direction: column; }
  .board-grid { grid-template-columns: 1fr 1fr; }
  .hero-banner { height: 280px; }
}
