/* ============================================
   Democrats Fight Back PAC — styles.css
   Bold / combative design — distinct from sister sites
   ============================================ */

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

:root {
    --navy:    #0b1a36;
    --red:     #c0392b;
    --red-mid: #e74c3c;
    --steel:   #1f2d4e;
    --mid:     #2c3e66;
    --white:   #ffffff;
    --off:     #f4f5f8;
    --muted:   #8898aa;
    --text:    #1a1a2e;
    --accent:  #e74c3c;
}

body { font-family: 'Georgia', serif; color: var(--text); background: #fff; line-height: 1.65; }
a { text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 32px; }
img { max-width: 100%; display: block; }

/* Alert bar */
.alert-bar {
    background: var(--red);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Header */
header {
    background: var(--navy);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--red);
}
header .container { display: flex; align-items: center; justify-content: space-between; }
header nav { display: flex; gap: 28px; }
header nav a { color: rgba(255,255,255,0.75); font-family: 'Arial', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; transition: color 0.2s; }
header nav a:hover { color: #fff; }

/* Hero */
.hero {
    background: var(--navy);
    color: #fff;
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(192,57,43,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
}
.hero-label {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--red-mid);
    margin-bottom: 20px;
}
.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    font-style: italic;
}
.hero h1 .accent { color: var(--red-mid); font-style: normal; }
.hero p { font-size: 17px; color: rgba(255,255,255,0.80); max-width: 520px; line-height: 1.7; font-family: 'Arial', sans-serif; }

/* Fight card */
.fight-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(231,76,60,0.35);
    border-radius: 4px;
    padding: 32px 28px;
}
.fight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}
.fight-item:last-child { border-bottom: none; }
.fight-icon { color: var(--red-mid); font-size: 16px; }

/* Stakes */
.stakes { background: var(--off); padding: 90px 0; }
.stakes-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 56px;
    justify-content: center;
}
.stakes-rule { flex: 1; max-width: 200px; height: 2px; background: var(--red); }
.stakes h2 { font-size: 13px; font-family: 'Arial', sans-serif; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); white-space: nowrap; }
.stakes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.stakes-item { background: #fff; padding: 40px 32px; border-top: 4px solid var(--red); }
.stakes-num { font-size: 44px; font-weight: 900; font-style: italic; color: rgba(192,57,43,0.15); line-height: 1; margin-bottom: 16px; font-family: 'Georgia', serif; }
.stakes-item h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--navy); font-family: 'Arial', sans-serif; }
.stakes-item p { font-size: 15px; color: #444; font-family: 'Arial', sans-serif; line-height: 1.7; }

/* Divider band */
.divider-band {
    background: var(--red);
    padding: 56px 0;
}
.divider-band blockquote {
    text-align: center;
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

/* How */
.how { padding: 90px 0; }
.how .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.how h2 { font-size: 32px; font-weight: 900; color: var(--navy); margin-bottom: 22px; font-family: 'Arial', sans-serif; }
.how p { font-size: 16px; color: #444; line-height: 1.75; margin-bottom: 16px; font-family: 'Arial', sans-serif; }
.how-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.how-list li {
    padding-left: 22px;
    position: relative;
    font-family: 'Arial', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}
.how-list li::before { content: '→'; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.how-image img { width: 100%; border-radius: 2px; }
.image-caption {
    margin-top: 12px;
    font-size: 13px;
    color: var(--muted);
    font-family: 'Arial', sans-serif;
    font-style: italic;
}

/* Bottom CTA */
.bottom-cta {
    background: var(--steel);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.bottom-cta h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 900; margin-bottom: 20px; font-family: 'Arial', sans-serif; }
.bottom-cta p { font-size: 17px; color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; font-family: 'Arial', sans-serif; line-height: 1.7; }

/* Footer */
footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 40px 0 32px; }
.footer-row { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { color: #fff; font-family: 'Arial', sans-serif; font-size: 15px; font-weight: 700; }
.footer-brand span { font-size: 13px; font-style: italic; }
footer a { color: rgba(255,255,255,0.6); font-family: 'Arial', sans-serif; font-size: 13px; transition: color 0.2s; }
footer a:hover { color: #fff; }
.footer-legal { font-family: 'Arial', sans-serif; font-size: 12px; display: flex; flex-direction: column; gap: 6px; }
.disclaimer-box {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 14px;
    font-size: 12px;
    font-family: 'Arial', sans-serif;
    color: rgba(255,255,255,0.55);
    max-width: 640px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; }
    .fight-card { display: none; }
    .stakes-grid { grid-template-columns: 1fr; }
    .how .container { grid-template-columns: 1fr; }
    .how-image { display: none; }
}