﻿/* ============================================
   GLOBAL
============================================ */
body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f5f5f7;
    color: #222;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* Utility spacing to modernize look */
.section {
    padding: 80px 0;
}
.section-fullwidth {
    width: 100%;
    padding: 80px 0;
    background-color: #f5f5f7; /* or white, or remove */
}

    .section-fullwidth .container {
        max-width: 1320px; /* larger, more modern width */
    }


/* ============================================
   HERO — MODERN GRADIENT + ANGLED OVERLAY
============================================ */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #b30000, #7a0000);
    color: #fff;
    padding: 120px 0;
    overflow: hidden;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

    .hero-banner::after {
        content: "";
        position: absolute;
        top: 0;
        right: -120px;
        width: 70%;
        height: 100%;
        background: rgba(255,255,255,0.08);
        transform: skewX(-12deg);
    }

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Modern CTA buttons */
.btn-hero-primary {
    background: #0707fa;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 1.15rem;
}

    .btn-hero-primary:hover {
        background: rgba(255,255,255,0.2);
    }

.btn-hero-outline {
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 26px;
    font-size: 1.15rem;
}

    .btn-hero-outline:hover {
        background: rgba(255,255,255,0.2);
    }

/* Candidate image round */
.hero-image-rounded {
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

/* ============================================
   NAVBAR — Modernized GOP Red
============================================ */
.navbar-modern {
    background-color: #b30000 !important;
    padding: 1rem 0;
}

    .navbar-modern .nav-link {
        color: #fff !important;
        font-weight: 500;
    }

        .navbar-modern .nav-link:hover {
            opacity: 0.8;
        }

    .navbar-modern .btn-donate {
        background-color: #0707fa;
        color: #fff;
        border-radius: 8px;
        font-weight: 700;
    }

/* ============================================
   MODERN CARDS (Glass-style)
============================================ */
.modern-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: none;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .modern-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .modern-card h2 {
        color: #b30000;
    }

/* ============================================
   ISSUE CARDS GRID
============================================ */
.issue-grid {
    display: grid flex;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.issue-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 40px; /* gives breathing room */
}

/* ============================================
   FOOTER
============================================ */
.footer-modern {
    background: #fafafa;
    padding: 40px 0;
    border-top: 3px solid #b30000;
}
    .footer-modern a:hover {
        color: #1877f2; /* Facebook blue */
    }

html {
    scroll-behavior: smooth;
}