/* ===== Jens Petersen – Für Zeven | Kampagnen-Website ===== */

:root{
  --navy:#17375E;
  --navy-light:#1F4A7A;
  --gold:#DE961E;
  --gold-dark:#B8760E;
  --green:#218052;
  --gray:#555B66;
  --light-gray:#F4F5F7;
  --border:#E2E4E8;
  --white:#FFFFFF;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  color:#2A2E36;
  line-height:1.6;
  background:var(--white);
}
img{max-width:100%;display:block;}
a{color:inherit;}
.container{
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
}
section{padding:72px 0;}
h1,h2,h3{margin:0 0 12px 0;line-height:1.2;}
p{margin:0 0 16px 0;}

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(23,55,94,0.96);
  backdrop-filter:blur(4px);
  color:var(--white);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 24px;
  max-width:1100px;
  margin:0 auto;
}
.nav-logo{
  font-weight:800;
  font-size:1.05rem;
  letter-spacing:0.02em;
  text-decoration:none;
  color:var(--white);
}
.nav-logo span{color:var(--gold);}
.nav-links{
  display:flex;
  gap:28px;
  list-style:none;
  margin:0;
  padding:0;
}
.nav-links a{
  text-decoration:none;
  color:#E7EAF0;
  font-size:0.92rem;
  font-weight:600;
  transition:color .15s;
}
.nav-links a:hover{color:var(--gold);}
.nav-toggle{
  display:none;
  background:none;
  border:none;
  color:var(--white);
  font-size:1.6rem;
  cursor:pointer;
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:flex-end;
  background:#0d2038 url("../assets/hero.jpg") center 22% / cover no-repeat;
  color:var(--white);
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(100deg, rgba(23,55,94,0.92) 0%, rgba(23,55,94,0.70) 38%, rgba(23,55,94,0.15) 62%, rgba(23,55,94,0.05) 100%),
             linear-gradient(0deg, rgba(23,55,94,0.55) 0%, rgba(23,55,94,0.0) 45%);
}
.hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  max-width:1100px;
  margin:0 auto;
  padding:0 24px 64px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  margin-bottom:18px;
}
.hero-tags span{
  display:flex;
  align-items:center;
  font-weight:700;
  font-size:0.82rem;
  letter-spacing:0.03em;
  text-transform:uppercase;
}
.hero-tags span::before{
  content:"";
  display:inline-block;
  width:8px;
  height:8px;
  margin-right:8px;
  border-radius:1px;
}
.hero-tags .t-navy::before{background:var(--gold);}
.hero-tags .t-gold::before{background:var(--gold);}
.hero-tags .t-green::before{background:#4FBE86;}

.hero h1{
  font-size:clamp(2.6rem, 6vw, 4.4rem);
  font-weight:800;
  letter-spacing:0.01em;
  margin-bottom:6px;
}
.hero .name{
  display:block;
  font-size:clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight:700;
  color:#E7EAF0;
  margin-bottom:2px;
}
.hero-underline{
  width:90px;
  height:5px;
  background:var(--gold);
  margin:14px 0 18px;
}
.hero p.sub{
  font-size:1.05rem;
  color:#D7DCE4;
  max-width:520px;
  margin-bottom:32px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
}
.btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:4px;
  font-weight:700;
  font-size:0.95rem;
  text-decoration:none;
  transition:transform .15s, box-shadow .15s;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{
  background:var(--gold);
  color:var(--navy);
}
.btn-primary:hover{box-shadow:0 8px 20px rgba(222,150,30,0.35);}
.btn-outline{
  background:transparent;
  color:var(--white);
  border:2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover{border-color:var(--white);}

/* Election badge */
.badge{
  position:absolute;
  top:28px;
  right:28px;
  z-index:3;
  width:120px;
  height:120px;
  border-radius:50%;
  background:var(--navy);
  border:3px solid var(--white);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  box-shadow:0 6px 18px rgba(0,0,0,0.35);
}
.badge .d{font-weight:800;font-size:0.95rem;}
.badge .t{font-weight:700;font-size:0.68rem;line-height:1.25;margin-top:4px;}

/* ---------- Section headers ---------- */
.section-label{
  color:var(--gold-dark);
  font-weight:700;
  font-size:0.8rem;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:8px;
  display:block;
}
.section-title{
  font-size:clamp(1.7rem, 3vw, 2.3rem);
  font-weight:800;
  color:var(--navy);
}
.section-intro{
  color:var(--gray);
  max-width:640px;
  font-size:1.05rem;
}

/* ---------- Über mich ---------- */
.about{
  background:var(--white);
}
.about .grid{
  display:grid;
  grid-template-columns:340px 1fr;
  gap:52px;
  align-items:center;
  margin-top:36px;
}
.about img{
  border-radius:50%;
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border:6px solid var(--light-gray);
  box-shadow:0 12px 28px rgba(23,55,94,0.15);
}
.about-text p{color:#3A3F48;}
.about-values{
  display:flex;
  gap:24px;
  flex-wrap:wrap;
  margin-top:20px;
}
.about-values div{
  flex:1;
  min-width:140px;
  background:var(--light-gray);
  border-radius:8px;
  padding:16px 18px;
  border-left:4px solid var(--gold);
}
.about-values strong{
  display:block;
  color:var(--navy);
  font-size:0.95rem;
  margin-bottom:2px;
}
.about-values span{font-size:0.85rem;color:var(--gray);}

/* ---------- Kernbotschaften ---------- */
.pillars{background:var(--light-gray);}
.pillar-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  margin-top:40px;
}
.pillar-card{
  background:var(--white);
  border-radius:10px;
  padding:32px 26px;
  box-shadow:0 6px 20px rgba(23,55,94,0.06);
  border-top:4px solid var(--navy);
}
.pillar-card.gold{border-top-color:var(--gold);}
.pillar-card.green{border-top-color:var(--green);}
.pillar-icon{
  width:56px;
  height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  background:var(--navy);
}
.pillar-card.gold .pillar-icon{background:var(--gold);}
.pillar-card.green .pillar-icon{background:var(--green);}
.pillar-icon img{width:26px;height:26px;filter:brightness(0) invert(1);}
.pillar-card h3{
  font-size:1.15rem;
  color:var(--navy);
  font-weight:800;
}
.pillar-card.gold h3{color:var(--gold-dark);}
.pillar-card.green h3{color:var(--green);}
.pillar-card p{color:var(--gray);font-size:0.96rem;margin-bottom:0;}

/* ---------- Wahlinfo ---------- */
.voteinfo{
  background:var(--navy);
  color:var(--white);
}
.voteinfo .container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
.voteinfo h2{color:var(--white);}
.voteinfo .section-label{color:var(--gold);}
.voteinfo p{color:#D7DCE4;}
.vote-steps{
  list-style:none;
  margin:0;
  padding:0;
  counter-reset:step;
}
.vote-steps li{
  counter-increment:step;
  position:relative;
  padding-left:44px;
  margin-bottom:18px;
  color:#E7EAF0;
  font-size:0.96rem;
}
.vote-steps li::before{
  content:counter(step);
  position:absolute;
  left:0;
  top:0;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--gold);
  color:var(--navy);
  font-weight:800;
  font-size:0.85rem;
  display:flex;
  align-items:center;
  justify-content:center;
}
.vote-steps strong{color:var(--white);}

/* ---------- Kontakt ---------- */
.contact{background:var(--white);}
.contact .grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  margin-top:36px;
}
.contact-card{
  background:var(--light-gray);
  border-radius:10px;
  padding:32px;
}
.contact-row{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.contact-row:last-child{margin-bottom:0;}
.contact-row .k{
  font-weight:700;
  color:var(--navy);
  min-width:56px;
  font-size:0.92rem;
}
.contact-row a, .contact-row span.v{color:var(--gray);text-decoration:none;font-size:0.96rem;}
.contact-row a:hover{color:var(--navy);}
.social-row{
  display:flex;
  gap:14px;
  margin-top:24px;
}
.social-row a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:var(--navy);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .15s;
}
.social-row a:hover{background:var(--gold);}
.social-row img{width:26px;height:26px;}

.cta-box{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius:10px;
  padding:36px 32px;
  color:var(--white);
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.cta-box h3{font-size:1.3rem;font-weight:800;}
.cta-box p{color:#D7DCE4;}

/* ---------- Footer ---------- */
.site-footer{
  background:#0F2743;
  color:#B9C2CF;
  position:relative;
  overflow:hidden;
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
  padding:28px 24px;
  max-width:1100px;
  margin:0 auto;
  position:relative;
  z-index:2;
  font-size:0.85rem;
}
.footer-links{
  display:flex;
  gap:20px;
  list-style:none;
  margin:0;
  padding:0;
}
.footer-links a{text-decoration:none;color:#B9C2CF;}
.footer-links a:hover{color:var(--gold);}
.footer-skyline{
  position:absolute;
  right:0;
  bottom:0;
  width:220px;
  opacity:0.35;
  z-index:1;
  filter:invert(1) brightness(1.4);
}

/* ---------- Legal pages ---------- */
.legal main{
  max-width:820px;
  margin:0 auto;
  padding:64px 24px 96px;
}
.legal h1{color:var(--navy);font-size:2rem;}
.legal h2{color:var(--navy);font-size:1.2rem;margin-top:32px;}
.legal p, .legal li{color:#3A3F48;font-size:0.98rem;}
.legal .placeholder{
  background:#FFF6E5;
  border:1px dashed var(--gold-dark);
  border-radius:6px;
  padding:14px 18px;
  color:#7A5A0E;
  font-size:0.88rem;
  margin:6px 0 18px;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .about .grid, .voteinfo .container, .contact .grid{
    grid-template-columns:1fr;
  }
  .pillar-grid{grid-template-columns:1fr;}
  .about img{max-width:260px;margin:0 auto;}
  .badge{width:96px;height:96px;top:16px;right:16px;}
  .badge .d{font-size:0.8rem;}
  .badge .t{font-size:0.58rem;}
}
@media (max-width: 700px){
  .nav-links{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:var(--navy);
    flex-direction:column;
    padding:16px 24px;
    display:none;
    gap:16px;
  }
  .nav-links.open{display:flex;}
  .nav-toggle{display:block;}
  section{padding:52px 0;}
  .hero{min-height:78vh;}
}
