@charset "utf-8";
/* CSS Document */
:root {
    --primary: #004b8d;
    --primary-light: #e6f0fa;
    --accent: #f4b400;
    --text: #222222;
    --muted: #666666;
    --bg: #ffffff;
    --section-bg: #f7f7f7;
    --max-width: 960px;
    --radius: 8px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
header {
    background: linear-gradient(135deg, var(--primary) 0%, #002f57 100%);
    color: #ffffff;
    padding: 2.5rem 1.25rem 2rem;
}
header h1 {
    font-size: 2.2rem;
    margin: 0 0 0.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
header p {
    font-size: 1.1rem;
    margin: 0.5rem auto 0;
    max-width: 600px;
    color: #d7e6f7;
}
.container {
    max-width: var(--max-width);
    margin: 0 auto;
}
.hero {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: center;
}
.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    color: #d7e6f7;
}
.hero-text {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.hero-tagline {
    font-weight: 600;
    margin-top: 0.75rem;
}
.hero-cta {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.4rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.12s ease;
    white-space: nowrap;
}
button.btn-primary {
    background: #ffffff;
    color: var(--primary);
    box-shadow: var(--shadow);
}
button.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}
.hero-side {
    justify-self: end;
    text-align: right;
}
.hero-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.hero-photo-wrapper {
    justify-self: end;
    text-align: right;
}
.hero-photo {
    width: 260px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 4px solid #ffffff;
}
.hero-role {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #d7e6f7;
}
.hero-vote-banner {
    margin-top: 1.2rem;
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--accent);
    color: #222222;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
main {
    padding: 2.5rem 1.25rem 3rem;
}
section {
    padding: 2rem 0;
    border-bottom: 1px solid #e3e3e3;
}
section:last-of-type {
    border-bottom: none;
}
.section-header {
    margin-bottom: 1.25rem;
}
.section-kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 0.25rem;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
}
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 2rem;
    align-items: flex-start;
}
.pill {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}
.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.25rem;
}
.priority-card {
    background: var(--section-bg);
    border-radius: var(--radius);
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.priority-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}
.priority-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}
.priority-text {
    font-size: 0.9rem;
    color: var(--muted);
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.commitment-card {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
}
.commitment-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
    color: var(--primary);
}
.list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}
.list li {
    margin-bottom: 0.4rem;
    padding-left: 1.1rem;
    position: relative;
    font-size: 0.95rem;
}
.list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}
.get-involved-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}
.card {
    background: var(--section-bg);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
}
.card-title {
    font-weight: 700;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}
.contact-block {
    margin-top: 1.25rem;
    font-size: 0.95rem;
}
.contact-label {
    font-weight: 600;
}
.vote-banner-wide {
    margin-top: 1.5rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    background: var(--accent);
    color: #222222;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}
footer {
    background: #111111;
    color: #dddddd;
    padding: 1.75rem 1.25rem 1.5rem;
    font-size: 0.8rem;
}
footer .footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
}
footer .footer-title {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #ffffff;
}
footer p {
    margin: 0.15rem 0;
}
footer a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
/* ===== Contact Details & Form Styles ===== */
.contact-details {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}
.contact-details p {
    margin: 0.4rem 0;
    font-size: 1rem;
}
.contact-details span {
    font-weight: 600;
}
form {
    background: var(--section-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--primary);
}
input, textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: var(--radius);
    border: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: inherit;
}
textarea {
    min-height: 140px;
    resize: vertical;
}
button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease;
}
button:hover {
    background: #003864;
}
/* Navigation Bar */
.nav {
    background: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    padding: 0.75rem 1.25rem;
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-logo {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    text-decoration: none;
}
/* Desktop links */
.nav-links {
    display: flex;
    gap: 1.25rem;
}
.nav-links a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.nav-links a:hover {
    text-decoration: underline;
}
/* Hamburger button */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
.nav-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Contact Page Layout */
.contact-page {
    padding-top: 2rem;
}
.contact-header h1 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.contact-header p {
    max-width: 650px;
    color: var(--muted);
    margin-bottom: 2rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}
.contact-info, .contact-form {
    background: var(--section-bg);
    padding: 1.75rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.contact-info h2, .contact-form h2 {
    margin-top: 0;
    color: var(--primary);
}
.contact-info p {
    margin: 0.5rem 0;
}
.contact-info a {
    color: var(--primary);
    font-weight: 600;
}
.contact-photo {
    margin-top: 1.5rem;
    text-align: center;
}
.contact-photo img {
    width: 180px;
    border-radius: 12px;
    border: 4px solid #fff;
    box-shadow: var(--shadow);
}
.hero-image {
    display: none;
}
/* Form styling */
.contact-form label {
    display: block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary);
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.7rem;
    border-radius: var(--radius);
    border: 1px solid #ccc;
    margin-top: 0.35rem;
    font-size: 1rem;
}
.contact-form textarea {
    min-height: 140px;
}

/* Mobile styles */
@media (max-width: 760px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #ffffff;
        width: 100%;
        display: none;
        flex-direction: column;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid #e3e3e3;
    }
    .nav-links a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-toggle {
        display: flex;
    }

    .hero-photo-wrapper {
        justify-self: start;
        text-align: left;
        margin-top: 1.5rem;
    }
    .hero-photo {
        width: 180px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-photo img {
        width: 150px;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }
    .hero-side {
        justify-self: flex-start;
        text-align: left;
        margin-top: 1.5rem;
    }
    .two-column {
        grid-template-columns: minmax(0, 1fr);
    }
    .priorities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .commitment-grid, .get-involved-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    header h1 {
        font-size: 1.6rem;
    }
    .priorities-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-photo {
        width: 150px;
    }
}

