/* ============================================
   SEEKING ACCOUNTABILITY - SHARED STYLES
   Color Scheme: Navy #1a365d | Gold #fbbf24 | Red #c53030
   ============================================ */

:root {
    --primary: #1a365d;
    --primary-light: #2c5282;
    --accent: #c53030;
    --accent-dark: #9b2c2c;
    --gold: #fbbf24;
    --gold-dark: #d69e2e;
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
}
a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; }

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background: rgba(26, 54, 93, 0.97);
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px var(--shadow);
}
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none;
}
.logo span { color: var(--gold); }
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.3rem 0;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); border-bottom: 2px solid var(--gold); }
.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 6px;
    font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dark); color: white !important; }

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============================================
   HERO SECTIONS (each page has unique bg)
   ============================================ */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding: 4rem 2rem;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.hero-overlay img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.75));
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-heavy);
}
.btn-red { background: var(--accent); color: white; }
.btn-red:hover { background: var(--accent-dark); color: white; }
.btn-gold { background: var(--gold); color: var(--primary); }
.btn-gold:hover { background: var(--gold-dark); color: var(--primary); }
.btn-outline { background: transparent; border: 2px solid white; color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.15); color: white; }
.btn-navy { background: var(--primary); color: white; }
.btn-navy:hover { background: var(--primary-light); color: white; }

/* ============================================
   PAGE CONTENT SECTIONS
   ============================================ */
.page-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}
.card-header {
    padding: 1.5rem 1.5rem 1rem;
}
.card-header h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.card-body {
    padding: 0 1.5rem 1.5rem;
}
.card-body p {
    color: var(--text-medium);
    line-height: 1.7;
}
.card-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-top: 0.75rem;
}
.card-tag.red { background: #fff5f5; color: var(--accent); }
.card-tag.gold { background: #fffff0; color: var(--gold-dark); }
.card-tag.blue { background: #ebf8ff; color: var(--primary-light); }

/* ============================================
   FEATURED / HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 30px var(--shadow-heavy);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}
.highlight-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
}
.highlight-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.95;
}
.highlight-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: var(--primary);
    padding: 0.5rem 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 0 15px 0 15px;
}
.highlight-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.highlight-tag {
    background: rgba(255,255,255,0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* ============================================
   EVIDENCE / QUOTE BLOCKS
   ============================================ */
.evidence-block {
    border-left: 4px solid var(--accent);
    padding: 1.25rem 1.5rem;
    background: #fff5f5;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}
.evidence-block strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}
.evidence-block p {
    color: var(--text-medium);
    font-size: 0.95rem;
}
.evidence-block em {
    color: var(--accent);
}

/* ============================================
   INFO GRID (for spotlight details, etc.)
   ============================================ */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.info-item {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 8px;
}
.info-item label {
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.3rem;
}
.info-item span {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   FORMS
   ============================================ */
.form-container {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
    background: var(--bg-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-group textarea {
    min-height: 180px;
    resize: vertical;
}
.form-group small {
    display: block;
    margin-top: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 18px;
    height: 18px;
}
.submit-btn {
    background: var(--accent);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}
.submit-btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* ============================================
   CONTRIBUTE / DONATION BOXES
   ============================================ */
.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.donate-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}
.donate-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}
.donate-card p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}
.donate-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 1rem 0;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}
.blog-card-header {
    padding: 1.5rem;
    color: white;
}
.blog-card-header .date {
    font-size: 0.85rem;
    opacity: 0.8;
}
.blog-card-header h3 {
    margin-top: 0.5rem;
    font-size: 1.3rem;
}
.blog-card-body {
    padding: 1.5rem;
}
.blog-card-body p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    background: var(--primary);
    color: white;
}
.stat-item {
    padding: 2rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-item h3 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.stat-item p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* ============================================
   QUICK LINKS GRID (Homepage)
   ============================================ */
.quick-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.quick-link {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}
.quick-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
    color: var(--text-dark);
}
.quick-link .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.quick-link h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.quick-link p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 2rem 1.5rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.footer-section p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.7;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-section ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        padding: 1rem 2rem;
        gap: 0.75rem;
        box-shadow: 0 4px 10px var(--shadow);
    }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .hero { min-height: 60vh; padding: 3rem 1.5rem; }
    .page-section { padding: 3rem 1.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    .card-grid { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .highlight-box { padding: 2rem; }
    .highlight-box h3 { font-size: 1.4rem; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .donate-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .form-container { padding: 1.5rem; }
}
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .stats-bar { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
}