/*
Theme Name: Rich Lyles for Abilene
Theme URI: https://richlyles4abilene.com
Author: Rich Lyles Campaign
Author URI: https://richlyles4abilene.com
Description: Official campaign website theme for Rich Lyles, Candidate for Abilene City Council Place 4. Practical Leadership for Abilene.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: richlyles
Tags: campaign, political, one-page, custom-colors, custom-logo
*/

/* ============================================
   CSS VARIABLES & RESET
============================================ */
:root {
  --blue: #10069f;
  --blue-dark: #0a0460;
  --red: #b41710;
  --red-dark: #8f0f0b;
  --white: #ffffff;
  --light-gray: #f4f4f6;
  --mid-gray: #666666;
  --dark: #1a1a1a;
  --shadow: 0 8px 32px rgba(16,6,159,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1, h2, h3, h4 {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
}

/* ============================================
   UTILITY CLASSES
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-pad { padding: 80px 0; }

.section-label {
  font-family: 'Dancing Script', cursive;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 1px;
  display: block;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-text {
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 650px;
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

.btn-blue { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); }

.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; color: white; }

.btn-outline-blue { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-blue:hover { background: var(--blue); color: white; }

/* ============================================
   SITE HEADER
============================================ */
#site-header {
  background: var(--blue);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
}

.logo-elect {
  font-family: 'Dancing Script', cursive;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  letter-spacing: 1px;
}

.logo-name {
  font-weight: 900;
  font-size: 20px;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.logo-sub {
  font-family: 'Dancing Script', cursive;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* Navigation */
#site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

#site-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  display: block;
}

#site-nav ul li a:hover { background: rgba(255,255,255,0.15); }

#site-nav ul li.menu-donate a {
  background: var(--red);
  font-weight: 700;
  padding: 10px 20px;
}

#site-nav ul li.menu-donate a:hover { background: var(--red-dark); }

/* Hamburger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  background: linear-gradient(135deg, rgba(16,6,159,0.92) 0%, rgba(10,4,96,0.95) 100%),
              url('images/photo-professional.jpeg') center top / cover no-repeat;
  color: var(--white);
  padding: 110px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(180,23,16,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-tag {
  font-family: 'Dancing Script', cursive;
  font-size: 22px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero-section h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.hero-section h1 .highlight { color: var(--red); }

.hero-place {
  font-family: 'Dancing Script', cursive;
  font-size: 24px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
}

.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   PRIORITY STRIP
============================================ */
.priority-strip {
  background: var(--red);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.priority-strip-item {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.priority-strip-item::before { content: '★'; font-size: 10px; opacity: 0.7; }

/* ============================================
   ABOUT SECTION
============================================ */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--blue);
}

.about-content .section-text { margin-bottom: 16px; }

/* ============================================
   THREE PRIORITIES
============================================ */
.priorities-section { background: var(--light-gray); }

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.priority-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px 32px;
  border-top: 4px solid var(--blue);
  transition: transform 0.2s, box-shadow 0.2s;
}

.priority-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.priority-card:nth-child(2) { border-top-color: var(--red); }
.priority-card:nth-child(3) { border-top-color: #333; }

.priority-icon {
  width: 52px; height: 52px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.priority-card:nth-child(2) .priority-icon { background: var(--red); }
.priority-card:nth-child(3) .priority-icon { background: #333; }

.priority-card h3 { font-size: 22px; color: var(--blue); margin-bottom: 12px; }
.priority-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; }
.priority-card .btn { margin-top: 20px; font-size: 13px; padding: 8px 20px; }

/* ============================================
   WHY RUNNING SECTION
============================================ */
.why-section {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.why-section .section-title { color: var(--white); }
.why-section .section-label { color: rgba(255,255,255,0.6); }
.why-section .section-text { color: rgba(255,255,255,0.85); margin: 0 auto 20px; }

.quote-block {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 40px 48px;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--red);
  border-radius: 0 4px 4px 0;
  text-align: left;
}

.quote-block p { font-size: 18px; line-height: 1.75; color: rgba(255,255,255,0.9); font-weight: 300; }
.quote-attr { margin-top: 16px; font-family: 'Dancing Script', cursive; font-size: 18px; color: rgba(255,255,255,0.6); }

/* ============================================
   COMMUNITY SECTION
============================================ */
.community-section { background: var(--white); }

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.community-photo img {
  width: 100%;
  border-radius: 4px;
  box-shadow: -20px 20px 0 var(--light-gray);
}

.fact-list { list-style: none; margin: 24px 0; }

.fact-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.fact-list li::before { content: '▶'; color: var(--red); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* ============================================
   INFRASTRUCTURE SECTION
============================================ */
.infra-section { background: var(--light-gray); }

.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.infra-card {
  background: var(--white);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid var(--blue);
}

.infra-card h3 { font-size: 18px; color: var(--blue); margin-bottom: 10px; }
.infra-card p { font-size: 15px; color: var(--mid-gray); line-height: 1.65; }

/* ============================================
   VOLUNTEER SECTION
============================================ */
.volunteer-section {
  background: var(--blue);
  color: var(--white);
}

.volunteer-section .section-title { color: var(--white); }
.volunteer-section .section-label { color: rgba(255,255,255,0.6); }

.volunteer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.volunteer-info p { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 24px; }

.volunteer-form-wrap {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 40px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus { border-color: rgba(255,255,255,0.6); }
.form-group input::placeholder { color: rgba(255,255,255,0.4); }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 6px; }

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  font-family: inherit;
}

.form-submit:hover { background: var(--red-dark); }

/* ============================================
   CONTACT FORM 7 STYLES
   Targets CF7's generated HTML structure
============================================ */

/* Remove default CF7 paragraph wrapping */
.volunteer-form-wrap .wpcf7 p,
.volunteer-section .wpcf7 p {
  margin: 0 0 18px 0;
}

/* CF7 form element itself */
.volunteer-form-wrap .wpcf7-form,
.volunteer-section .wpcf7-form {
  width: 100%;
}

/* All CF7 text/email/tel/textarea inputs */
.volunteer-form-wrap .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.volunteer-section .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s;
  display: block;
  box-sizing: border-box;
}

.volunteer-form-wrap .wpcf7-form-control:focus,
.volunteer-section .wpcf7-form-control:focus {
  border-color: rgba(255,255,255,0.6);
}

/* Placeholder text */
.volunteer-form-wrap .wpcf7-form-control::placeholder,
.volunteer-section .wpcf7-form-control::placeholder {
  color: rgba(255,255,255,0.4);
}

/* CF7 span wrappers around inputs — make them block */
.volunteer-form-wrap .wpcf7-form-control-wrap,
.volunteer-section .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-top: 6px;
}

/* Labels inside CF7 */
.volunteer-form-wrap .wpcf7 label,
.volunteer-section .wpcf7 label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
  margin-top: 18px;
}

/* Textarea */
.volunteer-form-wrap .wpcf7-textarea,
.volunteer-section .wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  outline: none;
  min-height: 100px;
  resize: vertical;
  box-sizing: border-box;
}

/* Checkboxes and radio buttons */
.volunteer-form-wrap .wpcf7-checkbox,
.volunteer-form-wrap .wpcf7-radio,
.volunteer-section .wpcf7-checkbox,
.volunteer-section .wpcf7-radio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.volunteer-form-wrap .wpcf7-checkbox .wpcf7-list-item,
.volunteer-form-wrap .wpcf7-radio .wpcf7-list-item,
.volunteer-section .wpcf7-checkbox .wpcf7-list-item,
.volunteer-section .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.volunteer-form-wrap .wpcf7-list-item-label,
.volunteer-section .wpcf7-list-item-label {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: normal;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
}

/* CF7 Submit button */
.volunteer-form-wrap .wpcf7-submit,
.volunteer-section .wpcf7-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: block;
}

.volunteer-form-wrap .wpcf7-submit:hover,
.volunteer-section .wpcf7-submit:hover {
  background: var(--red-dark);
}

/* CF7 validation error messages */
.volunteer-form-wrap .wpcf7-not-valid-tip,
.volunteer-section .wpcf7-not-valid-tip {
  color: #ffaaaa;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.volunteer-form-wrap .wpcf7-not-valid,
.volunteer-section .wpcf7-not-valid {
  border-color: #ff6666 !important;
}

/* CF7 response output (success/error message) */
.volunteer-form-wrap .wpcf7-response-output,
.volunteer-section .wpcf7-response-output {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 14px;
  border: none !important;
}

.volunteer-form-wrap .wpcf7-mail-sent-ok,
.volunteer-section .wpcf7-mail-sent-ok {
  background: rgba(255,255,255,0.15);
  color: white;
}

.volunteer-form-wrap .wpcf7-mail-sent-ng,
.volunteer-form-wrap .wpcf7-spam-blocked,
.volunteer-section .wpcf7-mail-sent-ng,
.volunteer-section .wpcf7-spam-blocked {
  background: rgba(180,23,16,0.4);
  color: white;
}

/* ============================================
   EVENTS PAGE
============================================ */
.event-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: 4px;
  padding: 28px 32px;
  border: 1px solid #e8e8e8;
  border-left: 4px solid var(--blue);
  transition: box-shadow 0.2s, transform 0.2s;
}

.event-card:hover {
  box-shadow: 0 8px 32px rgba(16,6,159,0.1);
  transform: translateY(-2px);
}

.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: white;
  border-radius: 4px;
  padding: 12px 18px;
  min-width: 72px;
  text-align: center;
  flex-shrink: 0;
}

.event-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  margin-bottom: 4px;
}

.event-day {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: white;
}

.event-details { flex: 1; }

.event-details h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 10px;
}

.event-meta { display: flex; flex-direction: column; gap: 6px; }

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mid-gray);
}

.event-meta-item svg { flex-shrink: 0; color: var(--red); }

@media (max-width: 600px) {
  .event-card { flex-direction: column; gap: 16px; }
  .event-date-block { flex-direction: row; gap: 8px; align-items: baseline; padding: 10px 16px; width: 100%; }
  .event-day { font-size: 24px; }
}

/* ============================================
   DONATE SECTION
============================================ */
.donate-section { background: var(--light-gray); text-align: center; }

.donate-amounts { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 32px 0; }

.amount-btn {
  padding: 14px 28px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  background: var(--white);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.amount-btn:hover { background: var(--blue); color: var(--white); }

.mail-donate {
  margin: 28px auto 0;
  padding: 24px;
  background: var(--white);
  border-radius: 4px;
  max-width: 380px;
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  border: 1px solid #ddd;
}

.mail-donate strong {
  color: var(--dark);
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   SOCIAL BAR
============================================ */
.social-bar {
  background: var(--blue-dark);
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.social-bar span { color: rgba(255,255,255,0.6); font-size: 13px; }

.fb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}

.fb-link:hover { background: rgba(255,255,255,0.2); color: white; }

/* ============================================
   CONTACT SECTION
============================================ */
.contact-section { background: var(--blue); color: white; }
.contact-section .section-title { color: white; }
.contact-section .section-label { color: rgba(255,255,255,0.5); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.contact-card {
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 32px;
}

.contact-card h3 {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card p, .contact-card a {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  text-decoration: none;
}

.contact-card a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   SITE FOOTER
============================================ */
#site-footer {
  background: #080440;
  color: rgba(255,255,255,0.5);
  padding: 32px 24px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.compliance {
  font-size: 12px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ============================================
   MOBILE STICKY DONATE
============================================ */
.mobile-donate-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--red);
  padding: 14px;
  text-align: center;
}

.mobile-donate-bar a {
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   MEET RICH PAGE
============================================ */
.meet-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.meet-hero-text {
  padding: 72px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.meet-hero-text h1 { font-size: clamp(32px,4vw,52px); color: white; margin-bottom: 8px; }
.meet-hero-text h1 span { color: var(--red); }
.meet-hero-text p { font-family: 'Dancing Script',cursive; font-size: 22px; color: rgba(255,255,255,0.7); }

.meet-hero-photo { overflow: hidden; }
.meet-hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

.bio-body { padding: 72px 0; }

.bio-inner p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 20px; }

.bio-inner h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue);
  margin: 44px 0 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-gray);
}

.family-block {
  background: var(--light-gray);
  border-radius: 4px;
  padding: 32px;
  margin: 32px 0;
  border-left: 4px solid var(--blue);
}

.family-block img { width: 100%; border-radius: 4px; margin-bottom: 20px; }
.family-block p { margin-bottom: 12px; font-size: 16px; color: #555; }
.family-block p:last-child { margin-bottom: 0; }

.speaking-block {
  margin: 40px 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.speaking-block img { width: 100%; }
.speaking-caption { background: var(--light-gray); padding: 12px 16px; font-size: 13px; color: var(--mid-gray); font-style: italic; }

.bio-list { list-style: none; margin: 16px 0; }
.bio-list li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #555;
  position: relative;
}
.bio-list li::before { content: '▸'; color: var(--red); position: absolute; left: 0; }
.bio-list li:last-child { border-bottom: none; }

/* ============================================
   PRIORITIES PAGE
============================================ */
.priorities-hero {
  background: var(--blue);
  color: white;
  padding: 80px 24px 60px;
  text-align: center;
}

.priorities-hero h1 { font-size: clamp(36px,5vw,56px); color: white; }
.priorities-hero p { font-family: 'Dancing Script',cursive; font-size: 22px; color: rgba(255,255,255,0.7); margin-top: 8px; }

.priority-section {
  max-width: 820px;
  margin: 0 auto 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #eee;
}

.priority-section:last-child { border-bottom: none; margin-bottom: 0; }
.priority-section h2 { font-size: 32px; color: var(--blue); margin-bottom: 8px; }

.priority-section .tag {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.priority-section p { font-size: 17px; line-height: 1.8; color: #444; margin-bottom: 16px; }

.priority-section ul { list-style: none; margin: 20px 0; }
.priority-section ul li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #555;
  position: relative;
}
.priority-section ul li::before { content: '▸'; color: var(--red); position: absolute; left: 0; }

/* ============================================
   WHY I'M RUNNING PAGE
============================================ */
.why-hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: white;
  padding: 80px 24px 60px;
  text-align: center;
}

.why-hero .sub { font-family: 'Dancing Script',cursive; font-size:20px; color:rgba(255,255,255,0.6); margin-bottom:8px; }
.why-hero h1 { font-size: clamp(36px,5vw,56px); color: white; margin-bottom: 8px; }
.why-hero p { font-family: 'Dancing Script',cursive; font-size: 22px; color: rgba(255,255,255,0.7); }

.why-body { padding: 72px 0; }

.quote-highlight {
  background: var(--light-gray);
  border-left: 4px solid var(--red);
  padding: 32px;
  border-radius: 0 4px 4px 0;
  margin: 40px 0;
}

.quote-highlight p { font-size: 18px; line-height: 1.8; color: #333; font-weight: 500; }

/* ============================================
   ENDORSEMENTS PAGE
============================================ */
.endorsements-note {
  max-width: 600px;
  padding: 32px;
  background: var(--light-gray);
  border-radius: 4px;
  margin-top: 32px;
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  border-left: 3px solid var(--blue);
}

.endorsement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.endorsement-item {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 4px;
  font-size: 15px;
  color: var(--dark);
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-section > * { animation: fadeUp 0.6s ease forwards; }
.hero-section > *:nth-child(2) { animation-delay: 0.1s; }
.hero-section > *:nth-child(3) { animation-delay: 0.2s; }
.hero-section > *:nth-child(4) { animation-delay: 0.3s; }
.hero-section > *:nth-child(5) { animation-delay: 0.4s; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .priorities-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  #site-nav {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--blue);
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  #site-nav.open { display: block; }
  #site-nav ul { flex-direction: column; gap: 4px; }
  #site-nav ul li a { padding: 12px 16px; }

  .about-grid,
  .community-grid,
  .volunteer-grid,
  .infra-grid,
  .meet-hero { grid-template-columns: 1fr; }

  .meet-hero-photo { height: 300px; }
  .meet-hero-text { padding: 48px 24px; }

  .priorities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }
  .quote-block { padding: 24px; }
  .endorsement-grid { grid-template-columns: 1fr 1fr; }

  .mobile-donate-bar { display: block; }
  body { padding-bottom: 52px; }

  .section-pad { padding: 56px 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .priority-strip { gap: 20px; }
  .endorsement-grid { grid-template-columns: 1fr; }
}
