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

body {
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.7;
    color: #333;
    font-size: 1.05rem;
}

/* Top Bar */
.top-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.9rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.top-bar a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.85;
}

/* Header */
header {
    background: white;
    color: var(--primary);
    padding: 1.2rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    line-height: 1.05;
}

.logo small {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
}

/* Desktop Navigation */
.desktop-menu {
    display: flex;
    list-style: none;
    gap: 2.4rem;
}

nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--justice);
    position: relative;
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--justice);
}

/* Donate Button */
.donate-btn {
    background: var(--justice);
    color: white;
    border: none;
    padding: 0.95rem 2.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.donate-btn:hover {
    background: #d32f2f;
    transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary);
    padding: 0.5rem;
}

/* Hero */
.hero {
    min-height: 75vh;
    background: linear-gradient(135deg, var(--primary) 0%, #1e4d8c 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8% 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.22;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.hero-content h1 {
    font-size: 3.9rem;
    margin-bottom: 1.4rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 820px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

/* Buttons */
.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin: 0 0.8rem;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.primary {
    background: var(--accent);
    color: var(--primary);
}

.primary:hover {
    background: #ffe15c;
    transform: scale(1.05);
}

.secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: scale(1.03);
}

/* Sections & Cards */
.section {
    padding: 5.5rem 5%;
    max-width: 1280px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.85rem;
    margin-bottom: 3.5rem;
    color: var(--primary);
    font-weight: 700;
}

.grid, .action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.8rem;
}

.card, .action-card {
    background: #f8f9fa;
    padding: 2.8rem 2.3rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border-top: 6px solid var(--primary);
}

.card:hover, .action-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 18px 36px rgba(0,0,0,0.13);
}

.stat {
    font-weight: 700;
    color: var(--primary);
    margin-top: 1.2rem;
    font-size: 1.12rem;
}

/* Resource List */
.resource-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
}

.resource-list li {
    padding: 1.7rem 2.3rem;
    background: #f0f4f8;
    margin-bottom: 1.2rem;
    border-radius: 10px;
    font-size: 1.15rem;
    transition: all 0.3s;
}

.resource-list li:hover {
    background: #e3eaf2;
    transform: translateX(10px);
}

.resource-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

/* Action Section */
.action-section {
    background: #f8f9fa;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 4.8rem 5% 3rem;
}

footer a {
    color: var(--accent);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===================== MOBILE ===================== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    h2 {
        font-size: 2.35rem;
    }
    
    .btn {
        display: block;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .section {
        padding: 4rem 5%;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    z-index: 99;
    padding: 1.5rem 5%;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin: 1.1rem 0;
}

.mobile-menu a {
    font-size: 1.35rem;
    color: var(--primary);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

/* Utility improvements */
.cta-buttons {
    margin-top: 2rem;
}

.action-card button {
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.action-card button:hover {
    background: var(--justice);
}/* =====================================
   ROOT VARIABLES
===================================== */
:root {
    --primary: #003087;
    --accent: #f4c430;
    --justice: #e63946;
    --light: #f8f9fa;
    --dark: #1f2937;
    --border: #e5e7eb;
}

/* Better font fallback */
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* =====================================
   HERO IMPROVEMENTS
===================================== */

.hero {
    position: relative;
    min-height: 80vh;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 48, 135, 0.75);
}

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

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badges span {
    background: rgba(255,255,255,.15);
    padding: .7rem 1rem;
    border-radius: 999px;
    backdrop-filter: blur(5px);
}

/* =====================================
   SECTION HEADERS
===================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: .75rem;
}

/* =====================================
   CAMPAIGNS
===================================== */

.campaign-card {
    position: relative;
}

.card-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-badge.active {
    background: #16a34a;
}

.card-badge.alert {
    background: var(--justice);
}

.btn.small {
    padding: .75rem 1.2rem;
    font-size: .95rem;
    margin-top: 1rem;
}

/* =====================================
   ISSUE CARDS
===================================== */

.issue-card {
    text-align: center;
}

.issue-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* =====================================
   IMPACT SECTION
===================================== */

.impact-section {
    background: #f8fafc;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem;
}

.risk-card {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
}

.risk-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.risk-card ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.risk-card li {
    margin-bottom: .75rem;
}

/* =====================================
   ABOUT
===================================== */

.about-content {
    max-width: 1000px;
    margin: auto;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.about-content h3 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 1rem;
    margin-top: 2rem;
    list-style: none;
}

.pillars-grid li {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
}

/* =====================================
   FOUNDER
===================================== */

.founder-section {
    background: #f8fafc;
}

.founder-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.commitment-box {
    background: white;
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    border-top: 6px solid var(--justice);
}

/* =====================================
   ACTION CARDS
===================================== */

.action-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* =====================================
   RESOURCES
===================================== */

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 2rem;
}

.resource-card {
    text-decoration: none;
    color: inherit;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 14px;
    transition: .3s;
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
}

.resource-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

/* =====================================
   FOOTER
===================================== */

.footer {
    background: var(--primary);
}

.footer-content {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 3rem;
    text-align: left;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2rem;
}

.footer-links ul {
    list-style: none;
    margin-top: 1rem;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.2);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.small {
    font-size: .9rem;
    opacity: .8;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 992px) {

    .footer-content,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        text-align: center;
    }
}
