/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',system-ui,-apple-system,sans-serif;color:#1a1a2e;line-height:1.7;background:#fff}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
ul{list-style:none}

:root{
  --navy:#1B2A4A;--navy-dark:#111d33;--red:#C0392B;--red-dark:#a93226;
  --gold:#D4A017;--gold-dark:#b8860b;--gold-light:rgba(212,160,23,0.12);
  --bg:#F7F8FA;--white:#fff;--text:#3a3a4a;--text-light:#606070;
}

/* === NAV === */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;background:var(--white);box-shadow:0 2px 20px rgba(0,0,0,0.08)}
.nav-inner{max-width:1100px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:0.5rem 1.5rem}
.nav-logo img{height:65px;width:auto}
.nav-links{display:flex;gap:1.5rem;align-items:center}
.nav-links a{font-size:0.9rem;font-weight:600;color:var(--navy);letter-spacing:0.02em;transition:color 0.2s}
.nav-links a:hover{color:var(--red)}
.nav-links a.active{color:var(--red)}
.nav-cta{background:var(--red);color:var(--white)!important;padding:0.5rem 1.3rem;border-radius:6px;font-weight:700;transition:background 0.2s}
.nav-cta:hover{background:var(--red-dark)}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:0.5rem}
.hamburger span{display:block;width:24px;height:2px;background:var(--navy);margin:5px 0;transition:0.3s}

/* === BUTTONS === */
.btn{display:inline-block;padding:0.8rem 2rem;font-size:1rem;font-weight:700;border-radius:6px;cursor:pointer;border:2px solid transparent;transition:all 0.25s;letter-spacing:0.02em}
.btn-gold{background:var(--gold);color:var(--navy)}
.btn-gold:hover{background:var(--gold-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.2)}
.btn-outline{background:transparent;color:var(--white);border:2px solid var(--white)}
.btn-outline:hover{background:var(--white);color:var(--navy);transform:translateY(-2px)}
.btn-red{background:var(--red);color:var(--white)}
.btn-red:hover{background:var(--red-dark);transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,0.15)}
.btn-navy{background:var(--navy);color:var(--white)}
.btn-navy:hover{background:var(--navy-dark);transform:translateY(-2px)}
.btn-outline-dark{background:transparent;color:var(--navy);border:2px solid var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:var(--white);transform:translateY(-2px)}

/* === HERO === */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;justify-content:center;overflow:hidden;background:var(--navy);margin-top:62px}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center center;filter:brightness(0.5);background-image:url('photos/hero-scott-skyline.png')}
.hero-content{position:relative;z-index:2;text-align:center;color:var(--white);padding:2rem 1.5rem;max-width:780px}
.hero-content h1{font-size:clamp(2.2rem,5.5vw,3.8rem);font-weight:800;line-height:1.12;text-shadow:0 2px 30px rgba(0,0,0,0.5);margin-bottom:0.4rem}
.hero-content h1 em{color:var(--gold);font-style:normal}
.hero-sub{font-size:clamp(1rem,2.5vw,1.3rem);opacity:0.92;margin-bottom:0.6rem;text-shadow:0 1px 10px rgba(0,0,0,0.4)}
.hero-tagline{font-size:clamp(0.95rem,2vw,1.15rem);font-weight:600;letter-spacing:0.15em;text-transform:uppercase;color:var(--gold);margin-bottom:2rem}
.hero-social{position:relative;z-index:3;display:flex;gap:1rem;justify-content:center;margin-top:1.5rem}
.hero-social a{width:42px;height:42px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1.5px solid rgba(255,255,255,0.4);transition:all 0.25s}
.hero-social a:hover{background:var(--gold);border-color:var(--gold)}
.hero-social a svg{width:18px;height:18px;fill:rgba(255,255,255,0.85)}
.hero-social a:hover svg{fill:var(--navy)}
.hero-buttons{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.hero-buttons .btn{min-width:200px;text-align:center}

/* === PAGE HEADER (subpages) === */
.page-header{background:var(--navy);color:var(--white);padding:7rem 1.5rem 3.5rem;text-align:center;margin-top:62px}
.page-header h1{font-size:clamp(1.8rem,4vw,2.8rem);font-weight:800;margin-bottom:0.4rem}
.page-header h1 em{color:var(--gold);font-style:normal}
.page-header p{opacity:0.8;font-size:1.05rem;max-width:600px;margin:0 auto}

/* === SECTIONS === */
.section{padding:5rem 1.5rem}
.section-inner{max-width:1000px;margin:0 auto}
.section-header{margin-bottom:2.5rem}
.section-title{font-size:clamp(1.6rem,3.5vw,2.4rem);font-weight:800;color:var(--navy);margin-bottom:0.4rem}
.section-title em{color:var(--red);font-style:normal}
.section-line{width:60px;height:4px;background:var(--gold);border-radius:2px}

/* === INTRO === */
.intro{background:var(--white)}
.intro-text{max-width:800px;margin:0 auto}
.intro-text p{font-size:1.05rem;color:var(--text);margin-bottom:1.3rem}
.intro-text p:first-child{font-size:1.2rem;font-weight:600;color:var(--navy)}
.intro-quote{border-left:4px solid var(--gold);padding:1rem 1.5rem;margin:2rem 0;background:var(--gold-light);border-radius:0 8px 8px 0}
.intro-quote p{font-size:1.1rem;font-weight:600;color:var(--navy);font-style:italic;margin:0}

/* === PROMISES === */
.promises{background:var(--bg)}
.promise-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.promise-card{background:var(--white);border-radius:10px;padding:1.5rem 1.6rem;border-left:5px solid var(--gold);box-shadow:0 4px 15px rgba(0,0,0,0.05);transition:transform 0.25s,box-shadow 0.25s}
.promise-card:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(0,0,0,0.1)}
.promise-card h3{font-size:1.05rem;color:var(--navy);margin-bottom:0.5rem}
.promise-card p{font-size:0.95rem;color:var(--text-light);line-height:1.6}

/* === ABOUT === */
.about{background:var(--white)}
.about-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:3rem;align-items:start}
.about-photo{border-radius:12px;overflow:hidden;box-shadow:0 12px 40px rgba(0,0,0,0.12)}
.about-photo img{width:100%;object-fit:cover;aspect-ratio:4/5}
.about-body h3{font-size:1.2rem;color:var(--navy);margin:1.8rem 0 0.6rem;padding-bottom:0.3rem;border-bottom:2px solid var(--gold-light)}
.about-body h3:first-child{margin-top:0}
.about-body p{font-size:1rem;color:var(--text);margin-bottom:1rem}

/* === PHOTO STRIP === */
.photo-strip{display:flex;gap:1rem;overflow-x:auto;padding:1rem 0;scroll-snap-type:x mandatory}
.photo-strip img{height:280px;width:auto;border-radius:10px;scroll-snap-align:start;flex-shrink:0;box-shadow:0 4px 15px rgba(0,0,0,0.1)}

/* === ISSUES === */
.issues{background:var(--bg)}
.issues-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.8rem}
.issue-card{background:var(--white);border-radius:12px;padding:2rem;box-shadow:0 4px 15px rgba(0,0,0,0.06);transition:transform 0.25s,box-shadow 0.25s;border-top:4px solid var(--red)}
.issue-card:hover{transform:translateY(-4px);box-shadow:0 10px 30px rgba(0,0,0,0.12)}
.issue-card h3{font-size:1.15rem;color:var(--navy);margin-bottom:0.6rem}
.issue-card p{font-size:0.92rem;color:var(--text-light);margin-bottom:0.8rem}
.issue-card ul li{font-size:0.92rem;color:var(--text);padding:0.3rem 0 0.3rem 1.2rem;position:relative}
.issue-card ul li::before{content:"";position:absolute;left:0;top:0.7rem;width:6px;height:6px;background:var(--gold);border-radius:50%}

/* === FULL ISSUE (dedicated page) === */
.issue-full{padding:3rem 0;border-bottom:1px solid #eee}
.issue-full:last-child{border-bottom:none}
.issue-full-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.issue-full-grid.reverse{direction:rtl}
.issue-full-grid.reverse > *{direction:ltr}
.issue-full-img{border-radius:12px;overflow:hidden;box-shadow:0 8px 30px rgba(0,0,0,0.1)}
.issue-full-img img{width:100%;height:300px;object-fit:cover}
.issue-full-content h3{font-size:1.4rem;color:var(--navy);margin-bottom:0.5rem}
.issue-full-content p{font-size:0.98rem;color:var(--text);margin-bottom:0.8rem}
.issue-full-content ul li{font-size:0.95rem;color:var(--text);padding:0.35rem 0 0.35rem 1.3rem;position:relative}
.issue-full-content ul li::before{content:"";position:absolute;left:0;top:0.7rem;width:6px;height:6px;background:var(--gold);border-radius:50%}

/* === DISTRICT MAP === */
.district-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.district-map-card{background:var(--white);border-radius:12px;padding:1.5rem;box-shadow:0 4px 20px rgba(0,0,0,0.08)}
.district-map-card img{width:100%;height:auto}

/* === GALLERY === */
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1rem}
.gallery-item{border-radius:10px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,0.08);transition:transform 0.3s,box-shadow 0.3s;aspect-ratio:1}
.gallery-item:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,0.15)}
.gallery-item img{width:100%;height:100%;object-fit:cover}

/* === EVENTS === */
.event-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:0 4px 15px rgba(0,0,0,0.06);transition:transform 0.25s;display:grid;grid-template-columns:140px 1fr;margin-bottom:1.5rem}
.event-card:hover{transform:translateY(-3px);box-shadow:0 8px 25px rgba(0,0,0,0.1)}
.event-date{background:var(--navy);color:var(--white);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:1.5rem;text-align:center}
.event-date .month{font-size:0.85rem;text-transform:uppercase;letter-spacing:0.1em;opacity:0.8}
.event-date .day{font-size:2.5rem;font-weight:800;line-height:1}
.event-date .year{font-size:0.8rem;opacity:0.6}
.event-info{padding:1.5rem}
.event-info h3{font-size:1.1rem;color:var(--navy);margin-bottom:0.4rem}
.event-info p{font-size:0.92rem;color:var(--text-light);margin-bottom:0.4rem}
.event-tag{display:inline-block;padding:0.2rem 0.7rem;border-radius:4px;font-size:0.75rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;margin-bottom:0.5rem}
.event-tag.rally{background:var(--red);color:var(--white)}
.event-tag.townhall{background:var(--navy);color:var(--white)}
.event-tag.fundraiser{background:var(--gold);color:var(--navy)}
.event-tag.volunteer{background:#2ecc71;color:var(--white)}

/* === DONATE BANNER === */
.donate-banner{background:linear-gradient(135deg,var(--navy) 0%,#2c3e6b 100%);color:var(--white);text-align:center;padding:4.5rem 1.5rem}
.donate-banner h2{font-size:clamp(1.5rem,3.5vw,2.2rem);font-weight:800;margin-bottom:0.8rem}
.donate-banner>p{opacity:0.85;max-width:560px;margin:0 auto 2rem;font-size:1.05rem}
.donate-amounts{display:flex;gap:0.8rem;justify-content:center;flex-wrap:wrap;margin-bottom:1.5rem}
.donate-amt{padding:0.65rem 1.5rem;border:2px solid var(--gold);border-radius:6px;color:var(--gold);font-weight:700;font-size:1.05rem;cursor:pointer;transition:all 0.2s;background:transparent}
.donate-amt:hover,.donate-amt.active{background:var(--gold);color:var(--navy)}

/* === CONTACT === */
.contact{background:var(--bg)}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:3rem}
.contact-info h3{font-size:1.25rem;color:var(--navy);margin-bottom:1rem}
.contact-info p{color:var(--text-light);margin-bottom:1rem;font-size:1rem}
.contact-detail{display:flex;align-items:center;gap:0.75rem;margin-bottom:0.8rem;color:var(--text)}
.contact-icon{width:38px;height:38px;border-radius:50%;background:var(--gold-light);display:flex;align-items:center;justify-content:center;font-size:1.1rem;flex-shrink:0}
.contact-form{display:flex;flex-direction:column;gap:1rem}
.contact-form input,.contact-form textarea{padding:0.8rem 1rem;border:2px solid #dde;border-radius:8px;font-size:1rem;font-family:inherit;transition:border-color 0.2s;background:var(--white)}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--gold);outline:none}
.contact-form textarea{min-height:120px;resize:vertical}

/* === FOOTER === */
.footer{background:var(--navy-dark);color:rgba(255,255,255,0.7);text-align:center;padding:2.5rem 1.5rem;font-size:0.9rem}
.footer a{color:var(--gold)}
.footer-line{margin:0.6rem 0}
.footer-social{margin:1rem 0 0.5rem;display:flex;gap:0.8rem;justify-content:center}
.footer-social a{width:36px;height:36px;display:flex;align-items:center;justify-content:center;border-radius:50%;border:1.5px solid rgba(255,255,255,0.3);transition:all 0.25s}
.footer-social a:hover{background:var(--gold);border-color:var(--gold)}
.footer-social a svg{width:16px;height:16px;fill:rgba(255,255,255,0.7)}
.footer-social a:hover svg{fill:var(--navy)}
.footer-fec-box{display:inline-block;border:2px solid rgba(255,255,255,0.6);padding:0.6rem 1.5rem;margin:1rem auto 0.8rem;font-size:0.85rem;font-weight:600;color:rgba(255,255,255,0.85);letter-spacing:0.02em}
.footer-disclaimer{font-size:0.78rem;opacity:0.55;max-width:600px;margin-left:auto;margin-right:auto}

/* === MOBILE === */
@media(max-width:768px){
  .nav-links{display:none}
  .nav-links.open{display:flex;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--white);padding:1.5rem;box-shadow:0 10px 30px rgba(0,0,0,0.1);gap:1rem}
  .hamburger{display:block}
  .about-grid{grid-template-columns:1fr}
  .about-photo{max-width:350px;margin:0 auto}
  .contact-grid{grid-template-columns:1fr}
  .hero{min-height:85vh}
  .hero-bg{background-image:url('photos/hero-scott-skyline.png')!important;background-position:center center!important}
  .hero-content{padding:1.5rem 1rem;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;min-height:auto;padding-top:2rem}
  .hero-content h1{font-size:clamp(1.8rem,7vw,2.6rem)}
  .hero-social{margin-top:1rem}
  .hero-buttons{gap:0.75rem}
  .hero-buttons .btn{padding:0.7rem 1.5rem;font-size:0.9rem}
  .promise-grid,.issues-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(auto-fill,minmax(140px,1fr))}
  .district-grid{grid-template-columns:1fr}
  #districtMapLeaflet{height:320px!important}
  .issue-full-grid,.issue-full-grid.reverse{grid-template-columns:1fr;direction:ltr}
  .event-card{grid-template-columns:100px 1fr}
  .event-date .day{font-size:1.8rem}
  .footer-social{gap:0.6rem}
}

/* === ANIMATIONS === */
@keyframes fadeUp{from{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}
.fade-up{opacity:0;animation:fadeUp 0.8s ease forwards}
.d1{animation-delay:0.1s}.d2{animation-delay:0.25s}.d3{animation-delay:0.4s}
