/* ===========================
   Highway Department Website
   Political Campaign Style
   Navy, White, Red Palette
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2847;
    --navy-light: #2c3e5f;
    --navy-dark: #0f1a2e;
    --red: #d32f2f;
    --red-dark: #b71c1c;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --light-gray: #e0e0e0;
    --text-gray: #666666;
}

body {
    font-family: 'Open Sans', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===========================
   NAVIGATION
   =========================== */

header {
    background-color: var(--navy);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--white);
    border-bottom-color: var(--red);
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.vote-yes {
    font-size: 5rem;
    font-weight: bold;
    color: var(--red);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--off-white);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-primary:hover {
    background-color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
}

.btn-primary-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-primary-large:hover {
    background-color: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.4);
}

/* ===========================
   FACTS SECTION
   =========================== */

.facts-section {
    padding: 4rem 2rem;
    background-color: var(--off-white);
}

.facts-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
}

.facts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--red);
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fact-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.fact-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--off-white);
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.3rem;
    color: var(--off-white);
}

/* ===========================
   ISSUES SECTION (Current Conditions)
   =========================== */

.issues-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.issues-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.issue-item {
    background: var(--off-white);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border-left: 6px solid var(--red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.issue-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.issue-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--white);
}

.issue-badge.critical {
    background-color: var(--red);
}

.issue-badge.high {
    background-color: #ff6f00;
}

.issue-badge.moderate {
    background-color: #ffa726;
}

.issue-item h3 {
    color: var(--navy);
    font-size: 1.6rem;
}

.issue-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.issue-content ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 1.9;
}

.issue-content li {
    margin-bottom: 0.5rem;
}

/* ===========================
   BUILDING PHOTOS
   =========================== */

.building-photos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.photo-item {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.photo-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.photo-item a {
    display: block;
    cursor: zoom-in;
}

.photo-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.photo-item a:hover img {
    transform: scale(1.05);
}

/* ===========================
   PHOTOS SECTION
   =========================== */

.photos-section {
    padding: 4rem 2rem;
    background-color: var(--off-white);
}

.photos-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-placeholder {
    background: var(--light-gray);
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--text-gray);
    color: var(--text-gray);
    font-weight: 600;
}

/* ===========================
   SITE PLAN SECTION
   =========================== */

.site-plan-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.site-plan-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 2rem;
    text-align: center;
}

.site-plan-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-plan-image:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.site-plan-image a {
    display: block;
    cursor: zoom-in;
}

.site-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-plan-image a:hover img {
    transform: scale(1.02);
}

/* ===========================
   PROPOSAL SECTIONS
   =========================== */

.proposal-overview {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.proposal-overview h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    text-align: center;
}

.proposal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.detail-section {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid var(--navy);
}

.detail-section h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 1.9;
}

.detail-section li {
    margin-bottom: 0.5rem;
}

/* ===========================
   BENEFITS SECTION
   =========================== */

.benefits-section {
    padding: 4rem 2rem;
    background-color: var(--off-white);
}

.benefits-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--red);
}

.benefit-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================
   TIMELINE
   =========================== */

.timeline-section {
    padding: 4rem 2rem;
    background-color: var(--white);
}

.timeline-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.timeline-marker {
    background: var(--red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
    padding: 4rem 2rem;
    background-color: var(--off-white);
}

.faq-section h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 3rem;
    text-align: center;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */

footer {
    background-color: var(--navy-dark);
    color: var(--off-white);
    padding: 2rem;
    text-align: center;
}

.footer-content p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.design-credit {
    font-size: 0.75rem !important;
    opacity: 0.7;
    margin-top: 0.5rem !important;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .vote-yes {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .facts-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
