/* VOTE TIM DIETZ — Brand Styles */
:root {
    --navy: #0B2341;
    --red: #B22234;
    --white: #FFFFFF;
    --slate: #4D627B;
    --bg-gray: #F4F6F8;
    --gold: #C8A24A;
}

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

html {
    scroll-behavior: smooth;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Header / Navigation */
.site-header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(11, 35, 65, 0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.site-logo .vote-badge {
    background: var(--red);
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
}

.site-logo .candidate-name {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 1.25rem 1.25rem;
    transition: color 0.2s, background 0.2s;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #9a1d2d !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #132f4f 100%);
    color: var(--white);
    padding: 6rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--red);
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.hero .office-title {
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-slogan {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.25rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: #9a1d2d;
    border-color: #9a1d2d;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.section-subtitle {
    text-align: center;
    color: var(--slate);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-alt {
    background: var(--bg-gray);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 35, 65, 0.15);
}

.about-image img {
    width: 100%;
    display: block;
}

.about-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--slate);
}

.about-text p:first-child {
    font-size: 1.15rem;
    color: var(--navy);
    font-weight: 500;
}

/* Priorities / Platform */
.priorities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.priority-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(11, 35, 65, 0.08);
    border-top: 4px solid var(--red);
    transition: transform 0.2s, box-shadow 0.2s;
}

.priority-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 35, 65, 0.12);
}

.priority-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.priority-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.priority-card p {
    font-size: 0.95rem;
    color: var(--slate);
}

/* CTA Banner */
.cta-banner {
    background: var(--red);
    color: var(--white);
    text-align: center;
    padding: 4rem 2rem;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-banner .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-banner .btn-outline:hover {
    background: var(--white);
    color: var(--red);
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 2rem 1.5rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 0.25rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.disclaimer {
    font-size: 0.75rem;
    opacity: 0.5;
    font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .priorities-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 700px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }

    .main-nav.open a {
        padding: 1rem 2rem;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

/* Editable content indicator for CMS */
[data-editable] {
    position: relative;
}

/* Admin bar */
.admin-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
}

.admin-bar a {
    color: var(--gold);
    margin-left: 1.5rem;
    font-weight: 500;
}

.admin-bar a:hover {
    color: #fff;
}
