.navbar-brand img {
  height: 50px;
}
.nav-link:hover {
  color: var(--primary-blue) !important;
}
.breadcrumb-nav {
  background: linear-gradient(180deg, var(--light-blue) 0, var(--white));
  padding: 15px 0;
  margin-bottom: 0;
}
.breadcrumb {
  margin: 0;
  background: none;
  padding: 0;
}
.breadcrumb-item {
  font-size: 0.9rem;
}
.breadcrumb-item + .breadcrumb-item:before {
  content: "\f105";
  font-family: Font Awesome\6 Free;
  font-weight: 900;
  color: var(--primary-blue);
  font-size: 0.9rem;
  padding: 0 8px;
}
.breadcrumb-item a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
  color: var(--primary-green);
}
.breadcrumb-item.active {
  color: var(--text-gray);
  font-weight: 600;
}
.candidate-hero {
  background: linear-gradient(135deg, var(--light-blue), var(--white));
  padding: 50px 0 30px;
}
.candidate-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid var(--primary-green);
  object-fit: cover;
  margin: 0 auto 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.candidate-number {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-align: center;
}
.candidate-name {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.candidate-subtitle {
  color: var(--text-gray);
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.candidate-location {
  color: var(--primary-green);
  font-size: 1.1rem;
  font-weight: 600;
}
.quick-facts {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-green);
  position: sticky;
  top: 100px;
}
.quick-facts h3 {
  color: var(--primary-blue);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-blue);
}
.fact-item {
  display: flex;
  margin-bottom: 15px;
  align-items: flex-start;
}
.fact-icon {
  color: var(--primary-green);
  width: 30px;
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
}
.fact-label {
  font-weight: 700;
  color: var(--primary-blue);
  margin-right: 8px;
  min-width: 140px;
}
.fact-value {
  color: var(--text-dark);
}
.quick-facts .fact-value ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 20px;
  margin: 0;
}
.quick-facts .fact-value ul li {
  padding-left: 0;
  margin-bottom: 5px;
}
.quick-facts .fact-value ul li:before {
  display: none;
}
.content-section {
  padding: 50px 0;
}
.content-section h2 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.content-section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-green);
}
.content-section h3 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
}
.content-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.content-section ul {
  list-style: none;
  padding-left: 0;
}
.content-section ul li {
  padding-left: 35px;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.content-section ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background-image: url(hacken.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
.content-section ul li strong {
  color: var(--primary-blue);
}
.highlight-box {
  background-color: var(--light-blue);
  border-left: 4px solid var(--primary-blue);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 5px;
}
.highlight-box p {
  margin: 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.1rem;
}
.back-button {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}
.back-button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: var(--white);
}
.back-button i {
  margin-right: 8px;
}
.footer {
  margin-top: 60px;
}
.footer a:hover {
  color: var(--white);
}
@media (max-width: 768px) {
  .candidate-name {
    font-size: 2rem;
  }
  .candidate-photo {
    width: 200px;
    height: 200px;
  }
  .fact-label {
    min-width: 100px;
    font-size: 0.95rem;
  }
  .content-section h2 {
    font-size: 1.6rem;
  }
  .quick-facts {
    position: static;
    margin-bottom: 30px;
  }
}
:root {
  --primary-green: #6db33f;
  --primary-blue: #0066b3;
  --dark-blue: #003d7a;
  --light-blue: #e6f2ff;
  --white: #fff;
  --text-dark: #000;
  --text-gray: #4d4d4d;
}
body {
  font-family:
    Open Sans,
    sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
}
.navbar {
  background-color: var(--primary-green);
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white) !important;
}
.navbar-brand img {
  height: 70px;
  margin-right: 10px;
  background-color: #fff;
  padding: 5px;
  border-radius: 5px;
}
.nav-link {
  color: var(--white) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: var(--light-blue) !important;
  transform: translateY(-2px);
}
.hero {
  background: linear-gradient(180deg, var(--light-blue), var(--white));
  color: var(--dark-blue);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="%236DB33F" opacity="0.1"/></svg>');
  opacity: 0.3;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}
.hero h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-green);
}
#countdown {
  background-color: rgba(109, 179, 63, 0.15);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem auto;
  max-width: 500px;
  border: 2px solid var(--primary-green);
}
#countdown p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
}
#countdown-timer {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary-blue);
}
.cta-btn {
  background-color: var(--primary-blue);
  border: none;
  color: var(--white);
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.cta-btn:hover {
  background-color: var(--dark-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: var(--white);
}
.section {
  padding: 70px 0;
}
.section h2 {
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 2.3rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 15px;
}
.section h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-green);
}
.bg-light {
  background: linear-gradient(
    180deg,
    var(--light-blue),
    hsla(0, 0%, 100%, 0.5)
  ) !important;
}
.kandidaten-card {
  background-color: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.kandidaten-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 102, 179, 0.15);
  transform: translateY(-5px);
}
.kandidaten-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid var(--primary-green);
  margin-bottom: 1rem;
}
.kandidaten-card h5 {
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.kandidaten-card p {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 0;
}
.kandidaten-number {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 10px;
}
.programm-card {
  background-color: var(--white);
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.programm-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.programm-card h5 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
.programm-card ul {
  list-style: none;
  padding-left: 0;
}
.programm-card ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.programm-card ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(hacken.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
#ueber-uns ul {
  list-style: none;
  padding-left: 0;
}
#ueber-uns ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}
#ueber-uns ul li:before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background-image: url(hacken.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
}
blockquote {
  background-color: var(--light-blue);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--text-gray);
  border-radius: 5px;
}
#aktuelles ul {
  list-style: none;
  padding-left: 0;
}
#aktuelles ul li {
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
}
#aktuelles ul li,
.event-card {
  background-color: var(--white);
}
.event-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.event-date {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  text-align: center;
  padding: 15px;
}
.event-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.event-month {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 5px;
}
.event-content {
  padding: 20px;
}
.event-content h5 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.event-content p {
  margin-bottom: 8px;
  color: var(--text-dark);
}
.event-content i {
  color: var(--primary-green);
  margin-right: 8px;
  width: 20px;
}
.event-description {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  color: var(--text-gray);
  font-size: 0.95rem;
}
.form-control {
  border: 2px solid var(--light-blue);
  padding: 12px;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 179, 0.15);
}
.form-label {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 8px;
}
.footer {
  background-color: var(--dark-blue);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}
.footer a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: var(--light-blue);
}
#wahlsystem h3 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
#wahlsystem ul li {
  margin-bottom: 10px;
}
.alert-wichtig {
  background-color: var(--primary-blue);
  color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 5px solid var(--primary-green);
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0 50px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .hero h3 {
    font-size: 1.2rem;
  }
  .section {
    padding: 40px 0;
  }
  .section h2 {
    font-size: 1.8rem;
  }
  #countdown-timer {
    font-size: 1.2rem;
  }
}
.logo-placeholder {
  max-width: 200px;
  margin-bottom: 1rem;
}
.ratio iframe {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
#wahlsystem .ratio {
  background-color: var(--light-blue-bg);
  border-radius: 8px;
}

/* ========== CALL TO ACTION ELEMENTE ========== */

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 25px 30px;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 6px 20px rgba(0, 102, 179, 0.3);
}

.urgency-banner h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.urgency-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.urgency-banner i {
  margin-right: 10px;
  color: var(--primary-green);
}

/* CTA Container */
.cta-container {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

.cta-btn-primary {
  background-color: var(--primary-green);
  border: none;
  color: var(--white);
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(109, 179, 63, 0.4);
  text-decoration: none;
  display: inline-block;
}

.cta-btn-primary:hover {
  background-color: #5a9f2e;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(109, 179, 63, 0.5);
  color: var(--white);
}

.cta-btn-secondary {
  background-color: var(--white);
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  display: inline-block;
}

.cta-btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 102, 179, 0.3);
}

.cta-btn i {
  margin-right: 10px;
}

/* Wahlaufruf Box */
.wahlaufruf-box {
  background-color: var(--light-blue);
  border: 3px solid var(--primary-green);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wahlaufruf-box h4 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.wahlaufruf-box h4 i {
  color: var(--primary-green);
  margin-right: 10px;
}

.tipp-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.tipp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.tipp-number {
  display: inline-block;
  background-color: var(--primary-green);
  color: var(--white);
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.tipp-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Social Share Buttons */
.social-share-section {
  background-color: var(--light-blue);
  border-radius: 10px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
  border: 2px solid var(--primary-blue);
}

.social-share-section h4 {
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.social-share-section h4 i {
  color: var(--primary-green);
  margin-right: 10px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.share-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.share-btn-facebook {
  background-color: #1877f2;
  color: white;
}

.share-btn-facebook:hover {
  background-color: #0d5dbf;
  color: white;
}

.share-btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.share-btn-whatsapp:hover {
  background-color: #1da851;
  color: white;
}

.share-btn-twitter {
  background-color: #1da1f2;
  color: white;
}

.share-btn-twitter:hover {
  background-color: #0c85d0;
  color: white;
}

.share-btn-email {
  background-color: var(--text-gray);
  color: white;
}

.share-btn-email:hover {
  background-color: var(--text-dark);
  color: white;
}

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

.share-btn-copy:hover {
  background-color: var(--dark-blue);
  color: white;
}

/* Kandidaten CTA Box */
.kandidat-cta-box {
  background: linear-gradient(135deg, var(--primary-green), #5a9f2e);
  color: var(--white);
  border-radius: 12px;
  padding: 30px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(109, 179, 63, 0.3);
  text-align: center;
}

.kandidat-cta-box h3 {
  color: var(--white);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.kandidat-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
}

.stimmen-box {
  background-color: rgba(255, 255, 255, 0.2);
  border: 3px solid var(--white);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 500px;
}

.stimmen-box .big-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stimmen-box p {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .urgency-banner h3 {
    font-size: 1.1rem;
  }

  .urgency-banner p {
    font-size: 0.9rem;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
    width: 100%;
  }

  .cta-container {
    flex-direction: column;
  }

  .wahlaufruf-box {
    padding: 20px;
  }

  .tipp-card {
    margin-bottom: 15px;
  }

  .share-buttons {
    flex-direction: column;
  }

  .share-btn {
    width: 100%;
    justify-content: center;
  }

  .stimmen-box .big-number {
    font-size: 3rem;
  }
}
