/* Hardin County First - Campaign Website */
:root { --navy: #1a237e; --navy-dark: #0d1642; --red: #c62828; --gold: #ffc107; --white: #fff; --gray-light: #f5f5f5; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; line-height: 1.6; color: #212121; }
.navbar { background: var(--navy); padding: 0.75rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.logo-img { height: 50px; }
.nav-links { display: flex; list-style: none; gap: 2rem; align-items: center; }
.nav-links a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.95rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--red); padding: 0.5rem 1.25rem; border-radius: 4px; }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); display: flex; align-items: center; padding-top: 80px; }
.hero-container { max-width: 1200px; margin: 0 auto; padding: 2rem 1.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-content { color: var(--white); }
.hero-logo { max-width: 280px; margin-bottom: 1.5rem; }
.hero-tagline { font-size: 1.6rem; font-weight: 300; margin-bottom: 1.5rem; color: var(--gold); }
.hero-intro { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; opacity: 0.95; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-title { font-size: 2.5rem; margin-bottom: 0.5rem; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 1.5rem; opacity: 0.9; }
.btn { display: inline-block; padding: 1rem 2rem; text-decoration: none; font-weight: 600; border-radius: 4px; transition: all 0.3s ease; text-transform: uppercase; cursor: pointer; border: none; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #e53935; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-gold { background: var(--gold); color: var(--navy-dark); }
.placeholder-candidate { width: 100%; aspect-ratio: 3/4; background: rgba(255,255,255,0.1); border-radius: 8px; display: flex; flex-direction: column; justify-content: center; align-items: center; border: 2px dashed rgba(255,255,255,0.3); color: var(--white); font-size: 1.2rem; text-align: center; padding: 2rem; }

/* Photo styling */
.hero-photo { width: 100%; max-width: 450px; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,0.3); object-fit: cover; aspect-ratio: 3/4; }
.about-photo { width: 100%; border-radius: 8px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); object-fit: cover; aspect-ratio: 4/3; }
.platform-preview { padding: 5rem 0; background: var(--gray-light); }
.section-header { text-align: center; max-width: 800px; margin: 0 auto 3rem; padding: 0 1.5rem; }
.section-title { font-size: 2.5rem; color: var(--navy); margin-bottom: 1rem; position: relative; }
.section-title::after { content: ''; display: block; width: 60px; height: 4px; background: var(--red); margin: 1rem auto 0; }
.section-subtitle { font-size: 1.1rem; color: #616161; margin-top: 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.pillar-card { background: var(--white); border-radius: 8px; padding: 2rem; box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-top: 4px solid var(--navy); transition: transform 0.3s ease; }
.pillar-card:hover { transform: translateY(-5px); }
.pillar-card.citizens { border-top-color: var(--navy); }
.pillar-card.employees { border-top-color: var(--red); }
.pillar-card.taxes { border-top-color: var(--gold); }
.pillar-card.growth { border-top-color: #2e7d32; }
.pillar-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1rem; color: var(--white); background: var(--navy); }
.pillar-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 0.75rem; }
.pillar-card p { color: #616161; font-size: 0.95rem; }
.platform-cta { text-align: center; }
.qr-section { background: var(--navy); color: var(--white); padding: 3rem 0; }
.qr-container { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.qr-placeholder { width: 150px; height: 150px; background: var(--white); border-radius: 8px; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #616161; font-size: 0.8rem; text-align: center; }
.footer { background: var(--navy-dark); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h4 { color: var(--gold); margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-section a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; font-size: 0.9rem; opacity: 0.8; }
.paid-for { background: var(--red); color: var(--white); padding: 0.75rem; text-align: center; font-size: 0.85rem; font-weight: 600; margin-top: 1.5rem; }
.page-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); padding: 8rem 0 4rem; text-align: center; }
.page-header h1 { font-size: 3rem; margin-bottom: 1rem; }
.page-header p { font-size: 1.2rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.content-section { padding: 4rem 0; }
.content-section.alt { background: var(--gray-light); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-text h2 { font-size: 2rem; color: var(--navy); margin-bottom: 1.5rem; }
.content-text p { margin-bottom: 1rem; line-height: 1.8; color: #616161; }
.platform-pillar { padding: 3rem 0; }
.platform-pillar:nth-child(even) { background: var(--gray-light); }
.pillar-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.pillar-number { width: 50px; height: 50px; background: var(--navy); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 700; }
.pillar-header h2 { font-size: 1.75rem; color: var(--navy); }
.pillar-points { list-style: none; }
.pillar-points li { padding: 0.75rem 0; padding-left: 2rem; position: relative; border-bottom: 1px solid rgba(0,0,0,0.1); }
.pillar-points li::before { content: '>'; position: absolute; left: 0; color: var(--red); font-weight: bold; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.875rem; border: 2px solid #e0e0e0; border-radius: 4px; font-size: 1rem; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.checkbox-group { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; }
.checkbox-item { display: flex; align-items: center; gap: 0.5rem; }
.checkbox-item input[type="checkbox"] { width: auto; flex-shrink: 0; }
.involvement-options { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.involvement-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); text-align: center; }
.involvement-card h3 { font-size: 1.5rem; color: var(--navy); margin: 1rem 0; }
.social-links { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.social-btn { width: 45px; height: 45px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; }
.qualifications-list { list-style: none; }
.qualifications-list li { padding: 1.25rem; background: var(--white); margin-bottom: 1rem; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-left: 4px solid var(--red); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.value-card { background: var(--white); padding: 2rem; border-radius: 8px; text-align: center; border-bottom: 4px solid var(--red); }
.value-card h3 { color: var(--navy); margin-bottom: 0.75rem; }
@media (max-width: 768px) {
.mobile-menu-btn { display: block; }
.nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 1rem; }
.nav-links.active { display: flex; }
.hero-container { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
.hero-logo { margin: 0 auto 1.5rem; }
.content-grid { grid-template-columns: 1fr; gap: 2rem; }
.form-row { grid-template-columns: 1fr; }
.pillars-grid { grid-template-columns: 1fr; }
.involvement-options { grid-template-columns: 1fr; }
.values-grid { grid-template-columns: 1fr; }
.btn { width: 100%; text-align: center; }
}
