/*
Theme Name: Aaron Baker for FL-6
Theme URI: https://aaron4fl6.com
Author: Aaron Baker Campaign
Author URI: https://aaron4fl6.com
Description: Professional campaign website theme for Aaron Baker, Republican candidate for Florida's 6th Congressional District. Features custom post types for events and press releases, donation integration, volunteer signup, and full responsive design.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aaron-baker
Tags: campaign, political, republican, one-column, custom-menu, featured-images, theme-options
*/

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    --navy: #0A1628;
    --navy-light: #132340;
    --navy-mid: #1B3A5C;
    --red: #C41230;
    --red-dark: #9E0F27;
    --red-light: #E8364F;
    --white: #FFFFFF;
    --off-white: #F5F6F8;
    --cream: #FAFBFD;
    --gold: #C9A94E;
    --gold-light: #D4BA6A;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A5A;
    --text-light: #6B6B7B;
    --border: #D8DCE3;
    --border-light: #E8ECF1;
    --shadow-sm: 0 1px 3px rgba(10,22,40,0.08);
    --shadow-md: 0 4px 16px rgba(10,22,40,0.10);
    --shadow-lg: 0 8px 32px rgba(10,22,40,0.14);
    --shadow-xl: 0 16px 48px rgba(10,22,40,0.18);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
    --font-accent: 'Oswald', 'Impact', sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    color: var(--red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--red-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p + p { margin-top: 1em; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
}

.container--wide {
    max-width: 1400px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding--lg {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-red { color: var(--red); }
.text-white { color: var(--white); }

.bg-navy { background-color: var(--navy); }
.bg-off-white { background-color: var(--off-white); }
.bg-white { background-color: var(--white); }
.bg-red { background-color: var(--red); }

.section-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 640px;
    line-height: 1.8;
}

.section-intro--centered {
    margin-left: auto;
    margin-right: auto;
}

.divider-line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 20px 0;
}

.divider-line--centered {
    margin-left: auto;
    margin-right: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
}

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

.btn--secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn--secondary:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    color: var(--white);
    transform: translateY(-1px);
}

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

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

.btn--gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn--sm {
    padding: 10px 22px;
    font-size: 0.82rem;
}

.btn--lg {
    padding: 18px 44px;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    height: var(--header-height);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

.site-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--navy);
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
}

.site-logo .logo-text .logo-name {
    display: block;
    font-size: 1.5rem;
    color: var(--navy);
}

.site-logo .logo-text .logo-tagline {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 400;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 8px 14px;
    display: block;
    transition: color 0.2s;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: var(--red);
}

.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    list-style: none;
    z-index: 100;
}

.nav-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    font-size: 0.8rem;
    padding: 10px 20px;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    background: var(--off-white);
}

.header-donate {
    margin-left: 16px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: var(--header-height);
    background: var(--navy);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(19,35,64,0.80) 50%, rgba(10,22,40,0.70) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

.hero-label {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

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

.hero-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-accent {
    position: absolute;
    right: -5%;
    bottom: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
}

.hero-accent::after {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
}

.hero-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red) 0%, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy-mid) 66%, var(--navy-mid) 100%);
    z-index: 3;
}

/* ============================================
   ISSUES PREVIEW
   ============================================ */
.issues-preview {
    background: var(--off-white);
}

.issues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.issue-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.issue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.issue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    border-color: transparent;
}

.issue-card:hover::before {
    transform: scaleX(1);
}

.issue-card .issue-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(196,18,48,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.issue-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.issue-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
    flex: 1;
}

.issue-card .issue-link {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.issue-card:hover .issue-link {
    gap: 10px;
}

/* ============================================
   WHY AARON SECTION
   ============================================ */
.why-aaron {
    background: var(--white);
    position: relative;
}

.why-aaron-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.why-aaron-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--off-white);
}

.why-aaron-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-aaron-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(10,22,40,0.3), transparent);
}

.value-props {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-prop {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-prop-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(196,18,48,0.08);
    color: var(--red);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-prop h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.value-prop p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ============================================
   NEWS / PRESS SECTION
   ============================================ */
.latest-news {
    background: var(--off-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: transparent;
}

.news-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--navy);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card .news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-category {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(196,18,48,0.08);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

.news-card h3 a {
    color: var(--navy);
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--red);
}

.news-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
    flex: 1;
}

.news-card .read-more {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   EVENTS SECTION
   ============================================ */
.events-preview {
    background: var(--white);
}

.events-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.3s ease;
}

.event-item:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.event-date-block {
    flex-shrink: 0;
    width: 72px;
    text-align: center;
    background: var(--navy);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    color: var(--white);
}

.event-date-block .event-month {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    color: var(--gold);
}

.event-date-block .event-day {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
    line-height: 1.1;
}

.event-info {
    flex: 1;
}

.event-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.event-info h4 a {
    color: var(--navy);
    text-decoration: none;
}

.event-info h4 a:hover {
    color: var(--red);
}

.event-details {
    font-size: 0.9rem;
    color: var(--text-mid);
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.event-details span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.event-rsvp {
    flex-shrink: 0;
}

/* ============================================
   CTA / SIGNUP SECTION
   ============================================ */
.cta-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.03);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 36px;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 6px;
}

.email-form input[type="email"] {
    flex: 1;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 18px;
    outline: none;
}

.email-form input[type="email"]::placeholder {
    color: rgba(255,255,255,0.5);
}

.email-form .btn {
    border-radius: var(--radius-sm);
}

/* ============================================
   DONATE SECTION
   ============================================ */
.donate-section {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="80" opacity="0.03">★</text></svg>') repeat;
    background-size: 80px;
}

.donate-content {
    position: relative;
    z-index: 2;
}

.donate-content h2 {
    color: var(--white);
}

.donate-content p {
    color: rgba(255,255,255,0.85);
}

.donate-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.donate-amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 28px;
    max-width: 500px;
}

.donate-amount {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.donate-amount:hover,
.donate-amount.active {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    background: var(--navy);
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(135deg, transparent 0%, rgba(196,18,48,0.1) 100%);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    max-width: 600px;
}

.page-hero .breadcrumbs {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumbs a {
    color: var(--gold);
}

.page-hero .breadcrumbs .separator {
    margin: 0 8px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.about-text h2:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.about-sidebar {
    position: sticky;
    top: 100px;
}

.about-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 3/4;
    background: var(--off-white);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pull-quote {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
}

.pull-quote::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    position: absolute;
    top: 16px;
    left: 24px;
    opacity: 0.3;
}

.pull-quote p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.pull-quote cite {
    display: block;
    margin-top: 16px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-style: normal;
}

/* ============================================
   ISSUES / POLICY PAGE
   ============================================ */
.issues-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.issue-full-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.issue-full-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
    color: var(--text-dark);
}

.issue-full-card .issue-icon-lg {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(196,18,48,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.issue-full-card:hover .issue-icon-lg {
    background: var(--red);
    color: var(--white);
}

.issue-full-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.issue-full-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
    line-height: 1.6;
}

/* Single Issue Page */
.issue-single-content {
    max-width: 800px;
}

.issue-section {
    margin-bottom: 40px;
}

.issue-section h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.issue-section p {
    color: var(--text-mid);
    margin-bottom: 12px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.policy-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-mid);
}

.policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.issue-sidebar {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.issue-sidebar h4 {
    margin-bottom: 16px;
    font-size: 1rem;
}

.issue-sidebar ul {
    list-style: none;
    padding: 0;
}

.issue-sidebar ul li {
    margin-bottom: 8px;
}

.issue-sidebar ul li a {
    color: var(--text-mid);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    text-decoration: none;
}

.issue-sidebar ul li a:hover {
    color: var(--red);
}

.issue-sidebar ul li.active a {
    color: var(--red);
    font-weight: 600;
}

/* ============================================
   EVENTS PAGE
   ============================================ */
.events-full-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-full-card {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 28px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s ease;
}

.event-full-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.event-full-card .event-date-block {
    width: 100%;
}

.event-full-card .event-info h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.event-full-card .event-info h3 a {
    color: var(--navy);
    text-decoration: none;
}

.event-full-card .event-info p {
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-top: 8px;
}

.request-event-form {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin-top: 60px;
}

.request-event-form h2 {
    margin-bottom: 8px;
}

.request-event-form p {
    color: var(--text-mid);
    margin-bottom: 28px;
}

/* ============================================
   FORMS
   ============================================ */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group--full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(196,18,48,0.1);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--red);
}

/* ============================================
   VOLUNTEER PAGE
   ============================================ */
.volunteer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.volunteer-info h2 {
    margin-bottom: 16px;
}

.volunteer-info p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.volunteer-roles {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.volunteer-roles li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.volunteer-roles li .role-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(196,18,48,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.volunteer-roles li strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

.volunteer-roles li p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin: 0;
}

/* ============================================
   DONATE PAGE
   ============================================ */
.donate-page-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.donate-page-content h2 {
    margin-bottom: 16px;
}

.donate-page-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.donate-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.donate-option {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.donate-option:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
}

.donate-option h3 {
    margin-bottom: 12px;
}

.donate-option p {
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.fec-disclaimer {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 20px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 40px;
    border-left: 3px solid var(--navy);
}

/* ============================================
   DISTRICT PAGE
   ============================================ */
.district-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--off-white);
    aspect-ratio: 16/9;
}

.district-map img,
.district-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.county-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 500;
    border: 1px solid var(--border-light);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.contact-info-item .contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(196,18,48,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.1rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NEWSROOM / BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.blog-sidebar {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.blog-sidebar h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 8px;
}

.blog-sidebar ul li a {
    color: var(--text-mid);
    font-size: 0.92rem;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.blog-sidebar ul li a:hover {
    color: var(--red);
}

.blog-sidebar .search-form {
    display: flex;
    gap: 0;
    margin-bottom: 20px;
}

.blog-sidebar .search-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.blog-sidebar .search-form button {
    padding: 10px 16px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    color: var(--text-mid);
    font-size: 0.92rem;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination .current,
.pagination a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* ============================================
   PRIVACY / LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--text-mid);
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--text-mid);
}

.legal-content ul li {
    margin-bottom: 6px;
}

/* ============================================
   EMAIL POPUP
   ============================================ */
.email-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.7);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.email-popup-overlay.active {
    display: flex;
}

.email-popup {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 480px;
    width: 100%;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    animation: popupIn 0.3s ease;
}

@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.email-popup .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
}

.email-popup .popup-close:hover {
    background: var(--off-white);
    color: var(--text-dark);
}

.email-popup h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.email-popup p {
    color: var(--text-mid);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.email-popup .email-form {
    background: var(--off-white);
}

.email-popup .email-form input[type="email"] {
    color: var(--text-dark);
}

.email-popup .email-form input[type="email"]::placeholder {
    color: var(--text-light);
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    color: var(--white);
    padding: 18px 24px;
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
    display: flex;
}

.cookie-banner p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
}

.cookie-banner a {
    color: var(--gold);
}

.cookie-banner .btn {
    white-space: nowrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--red);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    transition: color 0.2s;
    text-decoration: none;
}

.footer-links ul li a:hover {
    color: var(--white);
}

.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.footer-newsletter .email-form {
    max-width: 100%;
    border-radius: var(--radius-md);
}

.footer-district-cities {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 8px;
}

.footer-serving-label {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 8px;
}

.footer-city-list {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    line-height: 1.7;
}

.footer-city-list a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.15);
}

.footer-city-list a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-fec {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    max-width: 500px;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   SINGLE POST / BLOG
   ============================================ */
.single-post-content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post-content .post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.single-post-content .entry-content p {
    color: var(--text-mid);
    margin-bottom: 16px;
}

.single-post-content .entry-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.single-post-content .entry-content img {
    border-radius: var(--radius-md);
    margin: 24px 0;
}

.single-post-content .entry-content blockquote {
    border-left: 4px solid var(--red);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--off-white);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.single-post-content .entry-content blockquote p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--navy);
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.post-navigation a {
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.92rem;
}

.post-navigation a:hover {
    color: var(--red);
}

.post-navigation .nav-label {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.post-navigation .next-post {
    text-align: right;
}

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

    .about-content,
    .volunteer-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-aaron-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-aaron-image {
        max-height: 400px;
    }

    .donate-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .section-padding--lg {
        padding: 60px 0;
    }

    /* Mobile Nav */
    .main-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 40px;
        box-shadow: var(--shadow-xl);
        transition: right 0.35s ease;
        gap: 0;
        overflow-y: auto;
    }

    .main-navigation.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border-light);
        font-size: 0.9rem;
    }

    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 16px;
    }

    .header-donate {
        margin-left: 0;
        margin-top: 20px;
    }

    .header-donate .btn {
        width: 100%;
    }

    .mobile-toggle {
        display: block;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero */
    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 40px 0;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }

    /* Grids */
    .news-grid {
        grid-template-columns: 1fr;
    }

    .issues-grid {
        grid-template-columns: 1fr;
    }

    .event-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-full-card .event-date-block {
        width: 80px;
        margin: 0 auto;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .event-details {
        justify-content: center;
    }

    /* Forms */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .email-form {
        flex-direction: column;
    }

    .email-form .btn {
        width: 100%;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .donate-amount-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .email-popup {
        padding: 36px 24px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .counties-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.fade-in-up:nth-child(3) { animation-delay: 0.2s; }
.fade-in-up:nth-child(4) { animation-delay: 0.3s; }

/* Print */
@media print {
    .site-header,
    .site-footer,
    .email-popup-overlay,
    .cookie-banner,
    .btn {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }
}
