/* ============================================
   Veterans for Hudson – vetsforhudson.com
   Main Stylesheet
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fff;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Color Palette ---- */
:root {
  --red:       #C0392B;
  --red-dark:  #a93226;
  --navy:      #1b2f4e;
  --navy-dark: #14263f;
  --white:     #ffffff;
  --off-white: #f5f5f5;
  --gray:      #6c757d;
  --font-cond: 'Barlow Condensed', sans-serif;
}

/* ---- Utility ---- */
.red-text  { color: var(--red); }
.navy-text { color: var(--navy); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn-red   { background: var(--red);   color: var(--white); }
.btn-red:hover   { background: var(--red-dark); }
.btn-navy  { background: var(--navy);  color: var(--white); }
.btn-navy:hover  { background: var(--navy-dark); }
.btn-lg    { padding: 0.85rem 2rem; font-size: 1rem; }

/* ---- Announcement Banner ---- */
.announcement-banner {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.55rem 1rem;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.announcement-banner a { color: var(--white); }
.announcement-banner a:hover { text-decoration: underline; }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 80px;
}
.logo-link { flex-shrink: 0; }
.site-logo { height: 52px; width: auto; }

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul { list-style: none; display: flex; gap: 0.2rem; }
.main-nav a {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.4rem 0.7rem;
  border-radius: 3px;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--red); }

/* Social icons in header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.social-icon {
  color: var(--navy);
  transition: color 0.2s ease;
  display: flex; align-items: center;
}
.social-icon:hover { color: var(--red); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---- Hero Section ---- */
.hero-section {
  background: var(--off-white);
  min-height: calc(100vh - 120px);
}
.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 120px);
}
.hero-text {
  padding: 4rem 3rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-headline {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 2rem;
}
.hero-headline .line1,
.hero-headline .line2,
.hero-headline .line3 { display: block; }
.hero-headline .line3 { color: var(--red); }

/* Signup Form */
.signup-form-wrap { margin-top: 1rem; }
.signup-form .form-row {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: #333;
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus { border-color: var(--navy); }
.form-row--check { align-items: flex-start; gap: 0.6rem; flex-wrap: wrap; }
.form-row--check input[type="checkbox"] { margin-top: 3px; accent-color: var(--navy); }
.form-row--check label { font-size: 0.9rem; color: #444; flex: 1; }
.form-disclaimer { font-size: 0.75rem; color: #666; margin: 0.5rem 0 1rem; line-height: 1.4; }

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

/* ---- Quote Section ---- */
.quote-section {
  background: #fff;
}
.quote-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.quote-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quote-text-block {
  background: var(--red);
  color: var(--white);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-text-block blockquote {
  font-family: var(--font-cond);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 1.5rem;
}
blockquote::before { content: '"'; }
blockquote::after  { content: '"'; }
.quote-text-block cite {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-style: normal;
}

/* ---- Donate Section ---- */
.donate-section {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  clip-path: polygon(0 0, 50% 0, 50% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}
.donate-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 420px;
  align-items: center;
}
.donate-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
}
.jh-badge {
  opacity: 0.15;
  max-width: 200px;
  filter: invert(1);
}
.donate-content {
  padding: 3.5rem 3rem 3.5rem 0;
}
.donate-title {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.donate-title .red-text { color: var(--red); }
.donate-amounts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.donate-btn {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.65rem 1.3rem;
  border-radius: 3px;
  min-width: 80px;
  text-align: center;
  transition: background 0.2s ease;
  letter-spacing: 0.04em;
}
.donate-btn:hover { background: var(--red-dark); }

/* ---- Bio Section ---- */
.bio-section {
  background: #fff;
  padding: 5rem 2rem;
}
.bio-inner {
  max-width: 760px;
  margin: 0 auto;
}
.bio-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 1.5rem;
}

/* ---- Coalition Section ---- */
.coalition-section {
  background: var(--off-white);
  padding: 5rem 2rem;
}
.coalition-inner { max-width: 1100px; margin: 0 auto; }
.coalition-inner h2 {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
.coalition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.coalition-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  text-align: center;
}
.coalition-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.coalition-card h3 {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.coalition-card p { font-size: 0.95rem; color: #555; line-height: 1.6; }

/* ---- Endorse Section ---- */
.endorse-section {
  background: var(--navy);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
}
.endorse-inner { max-width: 700px; margin: 0 auto; }
.endorse-inner h2 {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.endorse-inner p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }

/* ---- Footer ---- */
.site-footer { background: #fff; border-top: 1px solid #e5e5e5; padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}
.footer-logo { height: 60px; width: auto; }
.footer-tagline {
  font-family: var(--font-cond);
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.footer-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.footer-social { display: flex; gap: 1rem; align-items: center; }
.footer-social a { color: var(--navy); transition: color 0.2s; }
.footer-social a:hover { color: var(--red); }
.footer-bottom { text-align: center; font-size: 0.82rem; color: #666; }
.footer-legal-box {
  border: 1px solid #ddd;
  padding: 0.6rem 1.5rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: #888;
}
.footer-contact { margin-bottom: 1rem; }
.footer-contact a { color: var(--red); }
.footer-disclaimer { max-width: 700px; margin: 0 auto 1rem; font-style: italic; line-height: 1.5; }
.footer-privacy { color: var(--red); }
.footer-privacy:hover { text-decoration: underline; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .main-nav, .header-actions .social-icon, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-image { min-height: 300px; }
  .quote-inner { grid-template-columns: 1fr; }
  .quote-photo { max-height: 300px; overflow: hidden; }
  .donate-inner { grid-template-columns: 1fr; }
  .donate-badge { display: none; }
  .donate-content { padding: 2.5rem 1.5rem; }
}
@media (max-width: 600px) {
  .hero-text { padding: 2.5rem 1.25rem; }
  .signup-form .form-row { flex-direction: column; }
  .donate-amounts { justify-content: center; }
}