/* Color Palette from Campaign Sign */
:root {
    --primary-red: #C41E3A;
    --primary-blue: #002868;
    --dark-red: #8B0000;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --dark-gray: #333333;
    --text-gray: #666666;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.nav-brand span {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.stars-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--white), transparent),
        radial-gradient(2px 2px at 60px 70px, var(--white), transparent),
        radial-gradient(1px 1px at 50px 50px, var(--white), transparent),
        radial-gradient(1px 1px at 80px 10px, var(--white), transparent),
        radial-gradient(2px 2px at 90px 40px, var(--white), transparent),
        radial-gradient(1px 1px at 130px 80px, var(--white), transparent),
        radial-gradient(2px 2px at 160px 30px, var(--white), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
}

.hero-wrapper {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 2rem 0;
}

.hero-bullets {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 380px;
    padding-right: 2rem;
    z-index: 1;
}

.hero-image {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    margin: 0 auto;
    text-align: center;
    max-width: 600px;
    z-index: 3;
}

.hero-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-bullet-list li {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.hero-bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--dark-red);
    padding: 0.5rem 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-blue);
    letter-spacing: 2px;
}

.hero-name {
    font-family: 'Inter', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0px var(--primary-blue);
    letter-spacing: 2px;
}

.hero-divider {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.star {
    color: var(--white);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0px var(--primary-blue);
}

.hero-position {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-blue);
    padding: 1rem 2rem;
    display: inline-block;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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


/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-red);
}

/* About Section */
.about {
    background: var(--light-gray);
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.inline-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--primary-red);
}

.highlights-section {
    background: var(--light-gray);
    padding: 3rem 0;
}

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

.highlight-item {
    text-align: left;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    background: transparent;
    border-left: 4px solid var(--primary-red);
    border-radius: 0;
    box-shadow: none;
    cursor: default;
}

.highlight-item:hover {
    box-shadow: none;
}

.highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.highlight-item h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* Issues Section */
.issues {
    background: var(--white);
}

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

.issue-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid var(--primary-red);
}

.issue-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.issue-card-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-blue);
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-top-color: var(--primary-blue);
}

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

.issue-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.issue-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #003d7a 100%);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background: var(--primary-red);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
}

.contact-details {
    margin: 2rem 0;
}

.contact-item {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: underline;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--primary-red);
}

.campaign-notice {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.campaign-notice p {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: var(--white);
}

.contact-form .btn-primary {
    width: 100%;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-info {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-info a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-wrapper {
        flex-direction: column;
        padding: 2rem 20px;
        min-height: auto;
    }

    .hero-bullets {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding-right: 0;
        margin-top: 2rem;
        order: 3;
    }

    .hero-image {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1.5rem;
        order: 1;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .hero-content {
        flex: none;
        position: relative;
        order: 2;
        margin: 0;
        width: 100%;
    }

    .hero-bullet-list li {
        font-size: 1rem;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-position {
        font-size: 1.5rem;
        padding: 0.75rem 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

