/* ===== Base ===== */
:root {
  --navy: #0a2d5e;
  --navy-dark: #061d3d;
  --red: #c8252c;
  --gold: #d4af37;
  --light: #f5f5f5;
  --white: #ffffff;
  --gray: #6b6b6b;
  --gray-light: #e0e0e0;
  --text: #1a1a1a;
  --font-head: 'Merriweather', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #a01d24; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-nav { background: var(--gold); color: var(--navy-dark); padding: 10px 24px; font-size: 14px; }
.btn-nav:hover { background: #c19c2b; }

/* ===== Header ===== */
.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { text-decoration: none; color: var(--white); display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-head); font-weight: 900; font-size: 22px; }
.logo-role { font-size: 13px; color: var(--gold); letter-spacing: 0.5px; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--gold); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 26px; height: 3px; background: var(--white); border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  text-align: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M30 0L0 60h60z" fill="%23ffffff" opacity="0.03"/></svg>');
}
.hero-content { position: relative; z-index: 2; padding: 80px 24px; }
.hero h1 { font-family: var(--font-head); font-size: 64px; font-weight: 900; margin-bottom: 8px; letter-spacing: -1px; }
.hero-tagline { font-size: 24px; color: var(--gold); font-weight: 700; margin-bottom: 20px; letter-spacing: 1px; }
.hero-subtitle { font-size: 20px; max-width: 600px; margin: 0 auto 36px; opacity: 0.9; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Sections ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--light); }
.section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy);
}
.section-subtitle { text-align: center; color: var(--gray); font-size: 18px; margin-bottom: 48px; }

/* ===== About ===== */
.two-col { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: center; }
.about-photo .photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
}
.about-text h2 { font-family: var(--font-head); font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.about-text p { margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 20px; }
.about-list li { padding: 8px 0 8px 28px; position: relative; font-weight: 600; }
.about-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* ===== Issues ===== */
.issues-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.issue-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 4px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}
.issue-card:hover { transform: translateY(-4px); }
.issue-card h3 { font-family: var(--font-head); font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.issue-card p { color: var(--gray); font-size: 16px; }

/* ===== Endorsements ===== */
.endorsement-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
.endorsement-item { padding: 24px; }
.endorsement-photo {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--gray-light);
  margin: 0 auto 16px;
}
.endorsement-item h4 { font-size: 18px; color: var(--navy); margin-bottom: 4px; }
.endorsement-item p { color: var(--gray); font-size: 15px; }

/* ===== Events ===== */
.events-list { max-width: 700px; margin: 0 auto; }
.event-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.event-date {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  min-width: 80px;
}
.event-day { display: block; font-size: 28px; font-weight: 900; line-height: 1; }
.event-month { display: block; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.event-details h4 { font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.event-details p { color: var(--gray); }
.event-time { font-size: 14px; color: var(--gray); }

/* ===== Volunteer CTA ===== */
.cta-section { background: var(--navy); color: var(--white); }
.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255,255,255,0.8); }
.volunteer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.volunteer-card {
  background: rgba(255,255,255,0.1);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.volunteer-card h3 { font-family: var(--font-head); font-size: 24px; margin-bottom: 12px; }
.volunteer-card p { margin-bottom: 20px; opacity: 0.9; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info h3, .contact-form h3 { font-family: var(--font-head); font-size: 24px; color: var(--navy); margin-bottom: 16px; }
.contact-info p { margin-bottom: 12px; }
.contact-info a { color: var(--red); text-decoration: none; }
.contact-info a:hover { text-decoration: underline; }
.social-links { display: flex; gap: 16px; margin-top: 20px; }
.social-links a {
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.social-links a:hover { background: var(--red); }

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 16px;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }

/* ===== Footer ===== */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.7); padding: 40px 0; font-size: 14px; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--font-head); font-weight: 700; color: var(--white); margin-bottom: 4px; }
.footer-right { text-align: right; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 20px 24px;
    gap: 16px;
  }
  .hero h1 { font-size: 40px; }
  .hero-tagline { font-size: 18px; }
  .hero-subtitle { font-size: 16px; }
  .two-col { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin: 0 auto 24px; }
  .issues-grid { grid-template-columns: 1fr; }
  .endorsement-list { grid-template-columns: 1fr; }
  .volunteer-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
  .section-title { font-size: 28px; }
}