/*
Theme Name: Denise For Nevada
Theme URI: https://goraistrategies.com
Author: Gorai Strategies
Author URI: https://goraistrategies.com
Description: Campaign website for Denise Daniels Fanning, Assembly District 23
Version: 3.6
*/

/* =====================
   VARIABLES
   ===================== */
:root {
  --red:   #D8121D;
  --navy:  #03354C;
  --white: #ffffff;
  --gray:  #f5f5f5;
  --text:  #222222;
  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-body:    Arial, Helvetica, sans-serif;
}

/* =====================
   RESET
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); font-size: 17px; line-height: 1.75; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================
   TYPOGRAPHY
   NOTE: Bebas Neue -- no bold, letter-spacing: 0
   ===================== */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.05;
  color: var(--navy);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.6rem); }
p  { margin-bottom: 1.1em; font-size: 1.06rem; color: #444; line-height: 1.85; }

/* =====================
   LAYOUT
   ===================== */
.container        { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 700px;  margin: 0 auto; padding: 0 28px; }
.section          { padding: 72px 0; }
.section-gray     { background: var(--gray); }

/* =====================
   BUTTONS
   -- Bebas Neue, no bold, letter-spacing: 0
   ===================== */
.btn {
  display: inline-block;
  padding: 10px 28px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.2;
}
.btn-red     { background: var(--red);   color: var(--white); border-color: var(--red); }
.btn-red:hover { background: #b80e18; border-color: #b80e18; color: var(--white); }
.btn-dark    { background: #011f2c; color: var(--white); border-color: #011f2c; }
.btn-dark:hover { background: #000; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* Clean gradient: brand navy → brand red */
  background: linear-gradient(to right, #03354c 0%, #03354c 30%, #961024 65%, #d9141e 100%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.header-logo a { display: flex; align-items: center; }
.header-logo img {
  height: 66px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav ul { display: flex; gap: 28px; }
.header-nav ul li a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--white);
  transition: opacity 0.2s;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.header-nav ul li a:hover,
.header-nav ul li a.current {
  opacity: 0.8;
  border-bottom-color: rgba(255,255,255,0.6);
}
.nav-buttons { display: flex; gap: 8px; }

/* VOLUNTEER = solid navy box, sampled from screenshot */
.btn-volunteer {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  background: #03354c;
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-volunteer:hover { background: #d9141e; color: var(--white); }

/* DONATE = solid red box, sampled from screenshot */
.btn-donate {
  display: inline-block;
  padding: 13px 36px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  background: #03354c;
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-donate:hover { background: #d9141e; color: var(--white); }

/* Mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.mobile-nav {
  display: none;
  background: #03354c;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 28px;
}
.mobile-nav.active { display: block; }
.mobile-nav ul li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-nav ul li a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  color: var(--white);
}
.mobile-buttons { display: flex; gap: 10px; margin-top: 16px; }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
/* Red gradient: photo shows left, transitions to solid red right */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(216,18,29,0.42) 0%,
    rgba(216,18,29,0.70) 38%,
    rgba(216,18,29,0.90) 62%,
    #D8121D 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  /* This wrapper keeps title aligned with page content */
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,0.2);
  text-align: right;
}

/* =====================
   ABOUT PAGE
   ===================== */
.hero-about .hero-bg {
  background-image: url('images/hero-bg.jpg');
}

/* Meet Denise: float layout -- photo left, text wraps around */
.meet-denise {
  padding: 60px 0 0;
}
.meet-denise .container {
  overflow: hidden;
}
.meet-denise-photo {
  float: left;
  width: 47%;
  margin: 0 44px 24px 0;
}
.meet-denise-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.meet-denise-bio h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.meet-denise-bio p {
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
}
.meet-denise-clearfix { clear: both; }

/* Gallery: two images side by side, larger */
.about-gallery {
  padding: 44px 0 80px;
}
.about-gallery .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.about-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* =====================
   ENDORSEMENTS PAGE
   ===================== */
.hero-endorsements .hero-bg {
  background-image: url('images/hero-bg.jpg');
  background-position: center 60%;
}

/* Governor featured section */
.endorsement-featured { padding: 72px 0; background: var(--white); }
.endorsement-featured .container {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.endorsement-featured-photo img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
/* Two-line title: GOVERNOR (small navy) then JOE LOMBARDO (large red) */
.endorser-role {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.9rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 0;
  line-height: 1.1;
}
.endorser-name {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}
.endorsement-featured-content blockquote {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.85;
  color: #444;
  font-style: normal;
}

/* Officials grid with headshots */
.endorsements-grid-section { padding: 64px 0; background: var(--gray); }
.endorsements-grid-section h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 40px;
}
.endorsers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.endorser-card {
  background: var(--white);
  border-top: 4px solid var(--red);
  border-radius: 0 0 8px 8px; /* straight top corners, curved bottom */
  text-align: center;
  overflow: hidden;
}
.endorser-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 0;
}
.endorser-card .card-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
  color: var(--red);
  text-transform: uppercase;
  margin: 12px 12px 0;
  line-height: 1;
}
.endorser-card .card-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin: 4px 12px 16px;
  line-height: 1.1;
}

/* Organizations -- white bg with navy border to separate from donate strip */
.endorsements-orgs { padding: 64px 0; background: var(--white); }
.endorsements-orgs h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.orgs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.org-badge {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: var(--white);
  padding: 0 16px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  border-radius: 6px;
  line-height: 1.2;
  transition: all 0.2s;
}
.org-badge:hover { background: var(--navy); color: var(--white); }

/* Donate strip -- navy bg, large red square buttons */
.donate-section { padding: 72px 0; background: var(--navy); text-align: center; }

.donate-subtext {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: -8px auto 28px;
  padding: 0 16px;
}

.donate-section h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.donate-amounts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 70px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 3px solid var(--red);
  border-radius: 6px;
  transition: all 0.2s;
}
.donate-btn:hover { background: #b80e18; border-color: #b80e18; color: var(--white); }
.donate-btn-other {
  background: transparent;
  color: var(--red);
  border: 3px solid var(--white);
  border-radius: 6px;
}
.donate-btn-other:hover { background: var(--white); color: var(--red); }

/* =====================
   VOLUNTEER PAGE
   ===================== */
.hero-volunteer .hero-bg {
  background-image: url('images/hero-bg.jpg');
  background-position: center 30%;
}

.volunteer-section { padding: 72px 0; }

/* Two-column layout */
.volunteer-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Left: Form */
.volunteer-form-col h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.volunteer-form { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 13px 16px;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(217,20,30,0.12);
}
.form-group input::placeholder {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 1rem;
  color: #999;
}
.form-group input:focus { border-color: var(--navy); }

.involvement-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
  margin-top: 4px;
  display: block;
}
.checkbox-group { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.checkbox-item { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--navy); flex-shrink: 0; }
.checkbox-item span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #444;
}

/* Consent checkbox */
.consent-check { margin: 16px 0 24px; padding-top: 16px; border-top: 1px solid #e5e5e5; }
.consent-check .checkbox-item span { text-transform: none; font-size: 0.95rem; font-family: var(--font-body); color: #444; }

.form-submit { margin-bottom: 20px; }
.form-submit button {
  width: 100%;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit button:hover { background: #02263a; }

/* SMS disclaimer */
.sms-disclaimer {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.6;
  color: #777;
  margin-top: 16px;
}
.sms-disclaimer a { color: var(--navy); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: #f0fff4;
  border: 1.5px solid #48bb78;
}
.form-success.active { display: block; }
.form-success h3 { color: #276749; margin-bottom: 8px; font-weight: 400; letter-spacing: 0; }

/* Right: Contact info + Map */
.volunteer-info-col { display: flex; flex-direction: column; gap: 36px; }

.contact-info-block {
  background: var(--gray);
  padding: 28px;
  border-top: 4px solid var(--red);
  border-radius: 0 0 8px 8px;
}
.contact-info-block h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; flex-direction: column; gap: 2px; }
.contact-label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  display: block;
  margin-bottom: 1px;
}
.contact-list a,
.contact-list span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.contact-list a:hover { color: var(--red); }

.district-map-block h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 12px;
}
#district-map {
  width: 100%;
  height: 340px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 900px) {
  .volunteer-layout { grid-template-columns: 1fr; gap: 40px; }
  #district-map { height: 280px; }
}

/* =====================
   FOOTER
   ===================== */
.site-footer { background: #fff; }
.footer-top { background: #03354C; border-top: 4px solid #D8121D; padding: 38px 0; }
.footer-top-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 36px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center;
}
.footer-logo img { width: 180px; height: auto; }
.footer-nav {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
}
.footer-nav a {
  font-family: var(--font-heading); font-weight: 400; font-size: 1.05rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }
.footer-donate-btn {
  background: var(--red); color: #fff !important;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--font-heading); font-weight: 400; font-size: 1.15rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background 0.2s; white-space: nowrap;
}
.footer-donate-btn:hover { background: #b80e18; }

.footer-bottom {
  background: #03354C; padding: 32px 28px 40px;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-social { display: flex; justify-content: center; gap: 14px; margin-bottom: 24px; }
.footer-social a {
  width: 40px; height: 40px; background: rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 16px; height: 16px; fill: #fff; }
.footer-paidfor {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.75); margin-bottom: 4px; line-height: 1.6;
}
.footer-addr {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(255,255,255,0.6); margin-bottom: 18px; line-height: 1.6;
}
.footer-sms {
  font-family: var(--font-body); font-size: 0.78rem;
  color: rgba(255,255,255,0.55); line-height: 1.65;
  max-width: 1100px; margin: 0 auto 20px; padding: 0 12px;
}
.footer-credits {
  font-family: var(--font-body); font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.04em;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 780px; margin: 0 auto;
}
.footer-credits a { color: rgba(255,255,255,0.7); font-weight: 700; }
.footer-credits a:hover { color: var(--red); }

@media (max-width: 900px) {
  .footer-top-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 24px; }
  .footer-nav { justify-content: center; }
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .hero { height: 260px; }
  .hero-content { justify-content: center; padding-right: 0; text-align: center; }

  /* About page float becomes stacked */
  .meet-denise-photo { float: none; width: 100%; margin: 0 0 28px 0; }

  .endorsement-featured .container { grid-template-columns: 1fr; gap: 36px; }
  .endorsement-featured-photo { max-width: 300px; margin: 0 auto; }
  .about-gallery .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; align-items: center; gap: 14px; }
}


/* =====================
   HOMEPAGE
   ===================== */

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(to right, #03354c 0%, #03354c 40%, #1a2a3a 65%, #0a1520 100%);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.home-hero-photo {
  position: absolute;
  right: 0; bottom: 0;
  height: 100%; width: 55%;
}
.home-hero-photo img {
  height: 100%; width: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 12%, rgba(0,0,0,0.6) 30%, black 55%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.15) 12%, rgba(0,0,0,0.6) 30%, black 55%);
}
.home-hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 72px 28px;
  width: 100%;
}
.home-hero-content h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 6.5vw, 6.5rem);
  font-weight: 400; letter-spacing: 0;
  text-transform: uppercase;
  line-height: 0.95; margin-bottom: 40px;
  max-width: 600px;
}
.hero-signup { display: flex; flex-direction: column; gap: 12px; max-width: 500px; }
.hs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-signup input { padding: 14px 16px; border: none; border-radius: 6px; background: #fff; color: #333; font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; letter-spacing: 0; text-transform: uppercase; outline: none; width: 100%; }
.hero-signup input::placeholder { color: var(--red); }
.hero-signup button { padding: 16px; background: var(--red); color: var(--white); font-family: var(--font-heading); font-weight: 400; font-size: 1.5rem; letter-spacing: 0; text-transform: uppercase; border: none; border-radius: 6px; cursor: pointer; transition: background 0.2s; }
.hero-signup button:hover { background: #b80e18; }
.hs-disclaimer { font-size: 0.72rem; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; text-align: center; }
.signup-success { background: rgba(255,255,255,0.12); border: 2px solid rgba(255,255,255,0.4); color: var(--white); padding: 20px; border-radius: 6px; font-family: var(--font-heading); font-size: 1.4rem; letter-spacing: 0; max-width: 500px; }

/* ── Homepage two-column sections ── */
.hp-section { padding: 80px 0; }
.hp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hp-col-photo img { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; }
.hp-col-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 4.2rem);
  text-transform: uppercase; margin-bottom: 24px; line-height: 1;
}

/* About preview -- white bg, dark red title */
.hp-about { background: var(--white); }
.hp-about .hp-col-text h2 { color: #D8121D; }
.hp-about .hp-col-text p { font-size: 1.1rem; color: #444; line-height: 1.85; }

/* Endorsements preview -- white bg, navy title */
.hp-endorsements { background: var(--white); border-top: 1px solid #eee; }
.hp-endorsements .hp-col-text h2 { color: var(--navy); }
.hp-endorsements .hp-col-text p { font-size: 1.1rem; color: #444; line-height: 1.85; }

/* Red / outline buttons */
.hp-btn-red {
  display: inline-block; padding: 14px 40px; margin-top: 20px;
  background: var(--red); color: var(--white);
  font-family: var(--font-heading); font-weight: 400; font-size: 1.3rem;
  letter-spacing: 0; text-transform: uppercase;
  border-radius: 6px; transition: background 0.2s;
}
.hp-btn-red:hover { background: #b80e18; color: var(--white); }

/* Fighting For You -- red background */
.hp-fighting { padding: 80px 0; background: var(--red); }
.hp-fighting .hp-col-text h2 { color: var(--white); }
.hp-fighting .hp-col-text p { font-size: 1.1rem; color: rgba(255,255,255,0.9); line-height: 1.85; }
.hp-btn-outline {
  display: inline-block; padding: 14px 40px; margin-top: 20px;
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
  font-family: var(--font-heading); font-weight: 400; font-size: 1.3rem;
  letter-spacing: 0; text-transform: uppercase;
  border-radius: 6px; transition: all 0.2s;
}
.hp-btn-outline:hover { background: var(--white); color: var(--red); }

/* Homepage responsive */
@media (max-width: 900px) {
  .home-hero { min-height: 520px; }
  .hp-two-col { grid-template-columns: 1fr; gap: 32px; }
  .hp-col-photo img { height: 300px; }
  .hp-fighting-inner { direction: ltr; }
}
@media (max-width: 600px) {
  .home-hero-content { padding: 40px 20px; }
  .home-hero-photo { width: 100%; opacity: 0.2; }
  .hs-row { grid-template-columns: 1fr; }
}


/* =====================
   ISSUES PAGE
   ===================== */
.hero-issues .hero-bg { background-position: center 40%; }

/* Issue sections */
.iss-section { padding: 80px 0; }
.iss-navy { background: var(--navy); }
.iss-white { background: var(--white); }
.iss-red { background: var(--red); }

.iss-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.iss-layout-reverse { direction: rtl; }
.iss-layout-reverse > * { direction: ltr; }

.iss-photo img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.iss-num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.iss-text h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1;
}

.iss-text p {
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 14px;
}

.iss-text strong { font-weight: 700; }

/* Navy section colors */
.iss-navy .iss-num { color: rgba(255,255,255,0.45); }
.iss-navy .iss-text h2 { color: var(--white); }
.iss-navy .iss-text p { color: rgba(255,255,255,0.88); }
.iss-navy .iss-text strong { color: var(--white); }
.iss-navy .iss-bullet-card {
  background: rgba(255,255,255,0.1);
  border-left: 4px solid var(--red);
  color: var(--white);
}

/* White section colors */
.iss-white .iss-num { color: rgba(3,53,76,0.2); }
.iss-white .iss-text h2 { color: var(--navy); }
.iss-white .iss-text p { color: #333; }
.iss-white .iss-text strong { color: var(--navy); }
.iss-white .iss-bullet-card {
  background: var(--gray);
  border-left: 4px solid var(--red);
  color: var(--navy);
}

/* Red section colors */
.iss-red .iss-num { color: rgba(255,255,255,0.35); }
.iss-red .iss-text h2 { color: var(--white); }
.iss-red .iss-text p { color: rgba(255,255,255,0.92); }
.iss-red .iss-text strong { color: var(--white); }

/* Bullet cards */
.iss-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 24px;
}
.iss-bullet-card {
  padding: 14px 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.25;
  border-radius: 0 6px 6px 0;
}

/* Issues responsive */
@media (max-width: 900px) {
  .iss-layout { grid-template-columns: 1fr; gap: 32px; }
  .iss-layout-reverse { direction: ltr; }
  .iss-photo img { height: 300px; }
}


/* =====================
   INTERACTIVITY  v3.1
   ===================== */

/* ── Smooth transitions baseline ── */
a, button, .stand-card, .stand-btn, .hp-btn-red, .hp-btn-outline,
.donate-btn, .iss-card, .footer-donate-btn, .endorser-card,
.org-card, .hp-col-photo img, .iss-split-photo img,
.gallery-img img {
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Nav links: animated red underline on hover ── */
.header-nav a {
  position: relative;
  padding-bottom: 4px;
}
.header-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header-nav a:hover::after,
.current-menu-item a::after,
.current_page_item a::after {
  transform: scaleX(1);
}

/* ── Buttons: lift + shadow on hover ── */
.hp-btn-red:hover, .stand-btn-red:hover, .footer-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(216, 18, 29, 0.35);
}
.stand-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.25);
}
.hp-btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

/* ── Donate strip buttons: pop on hover ── */
.donate-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(216, 18, 29, 0.4);
}

/* ── Stand With Denise cards: lift on hover ── */
.stand-card {
  cursor: default;
  position: relative;
  overflow: hidden;
}
.stand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}
.stand-card-navy::before, .stand-card-red::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.stand-card-red::before { background: linear-gradient(to right, transparent, #fff, transparent); }
.stand-card:hover::before { transform: scaleX(1); }

/* ── Photo zoom on hover (homepage two-col sections) ── */
.hp-col-photo {
  overflow: hidden;
  border-radius: 8px;
}
.hp-col-photo img {
  display: block;
}
.hp-col-photo:hover img {
  transform: scale(1.05);
}

/* ── Photo zoom on Issues split + About gallery ── */
.iss-split-photo {
  overflow: hidden;
  border-radius: 6px;
}
.iss-split-photo:hover img {
  transform: scale(1.05);
}
.about-gallery img {
  cursor: zoom-in;
}
.about-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

/* ── Issues bullet cards: slide right + deeper border on hover ── */
.iss-card {
  cursor: default;
}
.iss-card:hover {
  transform: translateX(6px);
  border-left-width: 8px;
}
.iss-navy .iss-card:hover { background: rgba(255,255,255,0.14); }
.iss-white .iss-card:hover { background: #ececec; }
.iss-red .iss-card:hover { background: rgba(0,0,0,0.28); }

/* ── Endorsement cards: lift ── */
.endorser-card:hover, .org-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* ── Footer links: subtle slide hover ── */
.footer-nav a {
  position: relative;
  padding-bottom: 4px;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.footer-nav a:hover::after { transform: scaleX(1); }
.footer-donate-btn:hover { background: #b80e18; }

/* ── Form input focus glow ── */
.volunteer-form input:focus,
.volunteer-form textarea:focus,
.hero-signup input:focus {
  box-shadow: 0 0 0 3px rgba(216, 18, 29, 0.18);
  transform: translateY(-1px);
}

/* ── Hero signup submit: shine ── */
.hero-signup button {
  position: relative;
  overflow: hidden;
}
.hero-signup button::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.6s ease;
}
.hero-signup button:hover::before { left: 100%; }
.hero-signup button:hover { background: #b80e18; }

/* ── Scroll-reveal: section fade-up ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stagger child reveals inside containers ── */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
/* All children become visible when container enters viewport */
.reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
/* Per-index delay for the first several children */
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.34s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.40s; }
.reveal-stagger.in-view > *:nth-child(8) { transition-delay: 0.46s; }
.reveal-stagger.in-view > *:nth-child(9) { transition-delay: 0.52s; }
.reveal-stagger.in-view > *:nth-child(10) { transition-delay: 0.58s; }
.reveal-stagger.in-view > *:nth-child(11) { transition-delay: 0.62s; }
.reveal-stagger.in-view > *:nth-child(12) { transition-delay: 0.66s; }
/* Anything beyond gets a flat cap so big grids (21 orgs) finish in time */
.reveal-stagger.in-view > *:nth-child(n+13) { transition-delay: 0.70s; }

/* ── Respect users who prefer reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}


/* =====================
   MOBILE POLISH  v3.3
   ===================== */

/* iOS Safari prevents zoom-on-focus when inputs are >=16px */
input, textarea, select { font-size: 16px; }

@media (max-width: 900px) {
  /* Endorsement officials grid: 4 cols → 2 cols on tablet */
  .officials-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }

  /* Organizations grid: 3 cols → 2 cols on tablet */
  .org-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }

  /* Hero title scales tighter */
  .hero-content h1 { font-size: clamp(2.4rem, 8vw, 4rem); }

  /* Generic container padding tighter on mobile */
  .container { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 600px) {
  /* Single column for very narrow viewports */
  .officials-grid { grid-template-columns: 1fr !important; }
  .org-grid { grid-template-columns: 1fr !important; }

  /* Donate amount buttons: full-width on tiny screens, 2 across */
  .donate-amounts { gap: 10px; }
  .donate-btn { width: calc(50% - 6px); min-width: 0; }

  /* Reduce section padding so content doesn't feel padded into oblivion */
  .iss-section { padding: 50px 0; }
  .hp-section, .hp-fighting, .stand-with { padding: 60px 0; }
  .donate-section { padding: 52px 0; }
  .volunteer-section { padding: 50px 0; }

  /* Reduce hero padding */
  .home-hero-content { padding: 50px 20px; }
  .home-hero-content h1 { font-size: clamp(2rem, 9vw, 3.4rem); margin-bottom: 24px; }

  /* Stand With cards: tighter padding so they don't feel cavernous */
  .stand-card { padding: 36px 28px; min-height: auto; }
  .stand-card h3 { font-size: 2rem; }
  .stand-card p { font-size: 1rem; }
  .stand-btn { padding: 14px 20px; font-size: 1.1rem; }

  /* Header logo smaller on mobile */
  .header-logo img { height: 48px; }
  .site-header { height: auto; padding: 12px 0; }

  /* Footer logo smaller */
  .footer-logo img { width: 140px; }

  /* Hero forms on mobile */
  .hero-signup input { font-size: 16px; padding: 12px 14px; }
  .hero-signup button { font-size: 1.3rem; padding: 14px; }

  /* Volunteer form spacing */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .volunteer-section { padding: 40px 0; }

  /* Footer text sizing */
  .footer-paidfor, .footer-addr { font-size: 0.8rem; }
  .footer-sms { font-size: 0.74rem; padding: 0 14px; }
  .footer-credits { font-size: 0.68rem; }
}

@media (max-width: 420px) {
  /* Donate amount buttons single column on very narrow screens */
  .donate-btn { width: 100%; }
}


/* =====================
   ENDORSEMENTS LOGO GRID  v3.4
   ===================== */
.endorsements-orgs { background: #f5f5f5; padding: 90px 0; }
.endorsements-orgs h2 {
  font-family: var(--font-heading); font-weight: 400; letter-spacing: 0;
  font-size: clamp(2.4rem, 4.5vw, 4rem); text-transform: uppercase;
  color: var(--navy); text-align: center; margin-bottom: 18px;
}
.orgs-intro {
  font-family: var(--font-body); font-size: 1.08rem; line-height: 1.75;
  color: #444; max-width: 780px; margin: 0 auto 56px; text-align: center;
}

.orgs-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.org-logo-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 22px 22px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
  border: 1px solid rgba(3, 53, 76, 0.08);
  transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  min-height: 220px;
}

.org-logo-img-wrap {
  width: 100%;
  height: 110px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  padding: 8px 12px;
  box-sizing: border-box;
  overflow: hidden;
}
.org-logo-img-wrap img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: filter 0.32s ease, opacity 0.32s ease, transform 0.32s ease;
}
.org-logo-name {
  font-family: var(--font-body);
  font-size: 0.82rem; line-height: 1.4;
  color: rgba(3, 53, 76, 0.55);
  text-align: center;
  font-weight: 600;
  transition: color 0.32s ease;
  margin: 0;
  letter-spacing: 0.01em;
}

/* Desktop hover -- only when hover is supported (skip on touch devices) */
@media (hover: hover) {
  .org-logo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    border-color: rgba(216, 18, 29, 0.3);
  }
  .org-logo-card:hover .org-logo-img-wrap img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.03);
  }
  .org-logo-card:hover .org-logo-name {
    color: var(--navy);
  }
}

/* Touch devices: show full color + dark name by default (no hover state) */
@media (hover: none) {
  .org-logo-img-wrap img { filter: grayscale(0%); opacity: 1; }
  .org-logo-name { color: var(--navy); }
}

/* Responsive grid */
@media (max-width: 1000px) {
  .orgs-logo-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}
@media (max-width: 700px) {
  .orgs-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .org-logo-card { padding: 22px 16px 18px; min-height: 200px; }
  .org-logo-img-wrap { height: 90px; padding: 6px 10px; }
  .org-logo-name { font-size: 0.76rem; }
}
@media (max-width: 380px) {
  .orgs-logo-grid { grid-template-columns: 1fr; }
}
