
:root {
    --ci-blau:   #9FAEDD;
    --ci-rot:    #E6A3A3;
    --ci-gelb:   #F3E6A8;
    --ci-gruen:  #CFE6C9;
    --ci-gruen-dunkel: #8FBF9B;

    --ci-dunkel: #2E2E2E;
	--ci-mittel: #888888;
    --ci-hell:   #F7F7F5;
}


.font0 {
  font-size: 6.0rem !important;    /* 44px */
  font-weight: 700;
  margin-bottom: 1rem;
}

.font1 {
  font-size: 5.0rem !important;    /* 44px */
  font-weight: 400;
  margin-bottom: 1rem;
}

.font2 {
  font-size: 3.0rem !important;    /* 36px */
  font-weight: 400;
  margin-bottom: 1rem;
}

.font3 {
  font-size: 1.875rem;   /* 30px */
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.font4 {
  font-size: 1.5rem;     /* 24px */
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 0.7rem;
}

.font5 {
  font-size: 1.25rem;    /* 20px */
  line-height: 1.35;
  font-weight: 400;
  margin-bottom: 0.6rem;
}

.font6 {
  font-size: 3rem;       /* 16px */
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
  
.fontp {
  font-size: 1.4rem !important;    /* 20px */
  line-height: 1.20  !important;
  font-weight: 400;
  margin-bottom: 1.2rem;
  color: #DDD !important;
}

.fontsmall {
  font-size: 1.0rem !important;    /* 20px */
  line-height: 1.40  !important;
  font-weight: 400;
  margin-bottom: 1.0rem;
  color: #222 !important;
}


.bold {font-weight: 700 !important;}



.container-wide {
    max-width: none;
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 992px) {
    .container-wide {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.container-medium {
    max-width: 1400px;   /* oder 1200px, je nach Geschmack */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}


@media (min-width: 1400px) {
    .container-medium {
        max-width: 1400px;
    }
}


@media (max-width: 767px) {
    .info-box {
        flex-direction: column;
        text-align: center;
    }

    .icon-box {
        margin-right: 0;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}




/* ===== HERO BASIS ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: var(--ci-hell);
}

/* ===== SLIDES ===== */
.hero-slides {
    position: absolute;
    inset: 0;
}

/* ===== HERO SLIDES ===== */
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition: opacity 1.5s ease-in-out; /* NUR opacity */
  will-change: opacity, transform;
  transform: scale(1);
}

.hero-slide.active{
  opacity:1;
}

.hero-slide.zoom-in{
  animation: zoomIn 5s linear both;
}

.hero-slide.zoom-out{
  animation: zoomOut 5s linear both;
}

.hero-slide.leaving{
  opacity:0;
  animation:none; /* Zoom stoppen beim Ausfaden */
}

/* ===== KEYFRAMES ===== */
@keyframes zoomIn{
  from{ transform: scale(1); }
  to  { transform: scale(1.06); }
}

@keyframes zoomOut{
  from{ transform: scale(1.06); }
  to  { transform: scale(1); }
}


/* ===== OVERLAY ===== */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(46,46,46,0.55),
        rgba(46,46,46,0.65)
    );
    z-index: 1;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 3rem;
    opacity: 0.95;
}

/* ===== BUTTONS ===== */
.hero-buttons .btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 0;
    border: none;
}

/* Primär */
.btn-primary-hero {
    background-color: var(--ci-blau);
    color: var(--ci-dunkel);
}

.btn-primary-hero:hover {
    background-color: var(--ci-gruen);
    color: var(--ci-dunkel);
}

/* Sekundär */
.btn-secondary-hero {
    background-color: transparent;
    color: var(--ci-hell);
    border: 2px solid var(--ci-gelb);
}

.btn-secondary-hero:hover {
    background-color: var(--ci-gelb);
    color: var(--ci-dunkel);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
}



/* ===== HEADER ===== */
.header-logo img {
    max-height: 120px;
}

/* ===== NAV ===== */
.main-nav {
    background-color: var(--ci-mittel);
}

.main-nav {
    z-index: 1000;
}

.main-nav .nav-link {
    color: #ffffff !important;
    padding: 1.5rem; 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.2rem;
	line-height: 1.5rem;
	font-weight: bold;
}

.main-nav .nav-link:hover {
    background-color: #3a3a3a;
    color: #ffffff;
}

/* Dropdown Hover */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background-color: #3a3a3a;
    border: none;
    border-radius: 0;
}

.dropdown-item {
    color: #ffffff;
    font-size: 1.0rem;
	line-height: 1.3rem;
	padding: 1.3rem; 1.3rem;
}

.dropdown-item:hover {
    background-color: #4a4a4a;
    color: #ffffff;
}

/* ===== Online-Spende Button ===== */
.btn-donate {
    background-color: #7fa6c9;
    color: #ffffff;
    padding: 1.5rem 1.5rem;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.2rem;
	line-height: 1.5rem;
}

.btn-donate:hover {
    background-color: #6b94ba;
    color: #ffffff;
}


/* ===== SECTION ===== */
.engagement-section {
    background-color: #ffffff;
}

/* ===== BOX ===== */
.info-box {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    padding: 25px;
    transition: box-shadow 0.3s ease;
    height: 100%;
	    align-items: flex-start;
}

.info-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===== ICON ===== */
.icon-box {
    width: 3.8rem;
    height: 3.8rem;
    min-width: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    margin-right: 20px;
}

/* Farben wie im Screenshot */
.icon-purple { background-color: var(--ci-blau) !important; }
.icon-green  { background-color: var(--ci-rot) !important; }
.icon-orange { background-color: var(--ci-gelb) !important; }
.icon-blue   { background-color: var(--ci-gruen) !important; }

/* ===== TEXT ===== */
.info-content h4 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333333;
	    line-height: 2.2;
}

.info-content p {
    margin: 0;
    color: #666666;
    line-height: 1.5rem;
    font-size: 1.0rem;
}


/* ===== FOOTER BASIS ===== */
.site-footer {
    background-color: var(--ci-hell);
    color: var(--ci-dunkel);
    padding: 70px 0 30px;
    font-size: 15px;
}


/* ===== TITEL ===== */
.footer-title {
    color: var(--ci-dunkel);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ===== TEXT ===== */
.footer-text {
    line-height: 2rem;
    margin-bottom: 15px;
}

.footer-text.small {
    font-size: 1.5rem;
}

/* Highlight-Text */
.footer-highlight {
    color: var(--ci-hell);
    font-size: 2rem;
    line-height: 2rem;
    margin-top: 20px;
}

/* ===== LINKS ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--ci-hell);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--ci-dunkel);
    text-decoration: underline;
}

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
    border-top: 1px solid rgba(0,0,0,0.5);
    margin-top: 40px;
    padding-top: 20px;
    font-size: 1.5rem;
    color: var(--ci-dunkel);
}
/* ===== FOOTER LINKS ===== */
.site-footer a {
    color: var(--ci-dunkel);
    text-decoration: none;
    transition: color 0.25s ease;
}

/* Hover / Fokus */
.site-footer a:hover,
.site-footer a:focus {
    color: var(--ci-blau);
    text-decoration: none;
}


.uppercase {text-transform: uppercase !important;}
.center		{text-align: center !important;}


/* ===== PEOPLE SECTION ===== */
.people-section {
    background-color: #ffffff;
}

/* ===== PERSON BOX ===== */
.person-box {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    padding: 25px;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.person-box:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ===== IMAGE ===== */
.person-image {
    width: 140px;
    min-width: 140px;
    height: 180px;
    padding: 0px;                 /* CI-Rahmen */
    margin-right: 25px;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* CI-Rahmenfarben */
.person-image.ci-blau  { background-color: var(--ci-blau); }
.person-image.ci-gruen { background-color: var(--ci-gruen); }
.person-image.ci-rot   { background-color: var(--ci-rot); }
.person-image.ci-gelb  { background-color: var(--ci-gelb); }

/* ===== CONTENT ===== */
.person-content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ci-dunkel);
}

.person-role {
    display: block;
    font-size: 0.95rem;
    color: var(--ci-mittel);
    margin-bottom: 10px;
}

.person-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #555;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
    .person-box {
        flex-direction: column;
        text-align: center;
    }

    .person-image {
        margin: 0 auto 15px auto;
        width: 160px;
        height: 200px;
    }
}


/* ===== KEYWORDS SECTION ===== */
.keywords-section {
    background-color: #ffffff;
}

/* ===== GRID ===== */
.keywords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
	    justify-content: center; /* 👈 DAS ist der Schlüssel */
}

/* ===== KEYWORD BOX ===== */
.keyword {
    display: inline-block;
    padding: 12px 20px;
    font-size: 2.6rem;
    font-weight: bold;
    color: var(--ci-dunkel);
    background-color: #eee;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover-Effekt */
.keyword:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* ===== CI-FARBEN ===== */
.keyword.ci-blau {
    background-color: var(--ci-blau);
}

.keyword.ci-rot {
    background-color: var(--ci-rot);
}

.keyword.ci-gelb {
    background-color: var(--ci-gelb);
}

.keyword.ci-gruen {
    background-color: var(--ci-gruen);
}

.keyword.ci-gruen-dunkel {
    background-color: var(--ci-gruen-dunkel);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .keyword {
        font-size: 0.95rem;
        padding: 10px 16px;
    }
}



/* ===== BASIS ===== */
html {
    font-size: 16px; /* 1rem = 16px (Standard, gut für Accessibility) */
}

body {
    font-size: 1rem;        /* 16px */
    line-height: 1.6;
    color: var(--ci-dunkel);
}

/* ===== HEADLINES ===== */
h1 {
    font-size: 3rem;        /* 48px */
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;      /* 40px */
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

h3 {
    font-size: 2rem;        /* 32px */
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.5rem;      /* 24px */
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

h5 {
    font-size: 1.25rem;     /* 20px */
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1.1rem;      /* ~18px */
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

/* ===== TEXT ===== */
p {
    font-size: 1.8rem;        /* 16px */
    line-height: 1.4;
    margin-bottom: 1rem;

}

/* kleiner Text */
small,
.small {
    font-size: 0.875rem;    /* 14px */
    line-height: 1.5;

}





.content-section .lead {
    font-size: 1.3rem;
    color: var(--ci-mittel);
}

.highlight-box {
    padding: 20px;
    background-color: var(--ci-gruen);
    color: var(--ci-dunkel);
    font-weight: 600;
}

.innovations-placeholder {
    padding: 40px;
    border: 2px dashed var(--ci-mittel);
}







/* ===== INNOVATIONS ACCORDION ===== */

.innovation-item {
    border: 2px solid #f0f0f0;
    background-color: #ffffff;
}

/* Header (klickbarer Bereich) */
.innovation-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px 25px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.innovation-header:hover {
    background-color: rgba(0,0,0,0.03);
}

/* ===== GROSSE NUMMER ===== */
.innovation-number {
    font-size: 4.5rem;        /* PLAKATIV */
    font-weight: 700;
    line-height: 1;
    min-width: 90px;
    text-align: right;
    opacity: 0.75;
}

/* ===== ÜBERSCHRIFT ===== */
.innovation-header h4 {
    font-size: 1.6rem;        /* größer als Text */
    font-weight: 600;
    margin: 0;
    color: var(--ci-dunkel);
}

/* ===== TEXT IM ACCORDION ===== */
.innovation-body {
    padding: 0 25px 25px 140px; /* Einzug unter Überschrift */
}

.innovation-body p {
    font-size: 1.3rem;          /* RUHIGER Text */
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: var(--ci-dunkel);
}

/* ===== CI-FARBEN ABWECHSELND ===== */
/* 1 */
.innovation-item:nth-child(1) .innovation-number {
    color: var(--ci-blau);
}

/* 2 */
.innovation-item:nth-child(2) .innovation-number {
    color: var(--ci-gruen-dunkel);
}

/* 3 */
.innovation-item:nth-child(3) .innovation-number {
    color: var(--ci-rot);
}

/* 4 */
.innovation-item:nth-child(4) .innovation-number {
    color: var(--ci-gelb);
}

/* 5 */
.innovation-item:nth-child(5) .innovation-number {
    color: var(--ci-blau);
}

/* 6 */
.innovation-item:nth-child(6) .innovation-number {
    color: var(--ci-gruen);
}

/* 7 */
.innovation-item:nth-child(7) .innovation-number {
    color: var(--ci-rot);
}

/* 8 */
.innovation-item:nth-child(8) .innovation-number {
    color: var(--ci-gelb);
}

/* 9 */
.innovation-item:nth-child(9) .innovation-number {
    color: var(--ci-gruen-dunkel);
}

/* 10 */
.innovation-item:nth-child(10) .innovation-number {
    color: var(--ci-blau);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .innovation-header {
        gap: 15px;
        padding: 18px;
    }

    .innovation-number {
        font-size: 3rem;
        min-width: 60px;
        text-align: left;
    }

    .innovation-header h4 {
        font-size: 1.3rem;
    }

    .innovation-body {
        padding: 15px 18px 18px 18px;
    }
}


.innovation-item .collapse.show + .innovation-body {
    background-color: rgba(0,0,0,0.02);
}

.innovation-header::after {
    content: "+";
    margin-left: auto;
    font-size: 1.8rem;
    opacity: 0.5;
}

.innovation-header[aria-expanded="true"]::after {
    content: "–";
}


/* ===== IMPLEMENTATION LIST ===== */
.implementation-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.implementation-list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--ci-dunkel);
}

/* CI-Akzent statt Bullet */
.implementation-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 14px;
    height: 14px;
    background-color: var(--ci-blau);
}

/* leichte Variation für Dynamik */
.implementation-list li:nth-child(2n)::before {
    background-color: var(--ci-gruen-dunkel);
}

.implementation-list li:nth-child(3n)::before {
    background-color: var(--ci-gelb);
}




/* ===== CI BUTTON BASIS ===== */
.btn-ci {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

/* ===== CI FARBEN ===== */
.btn-ci-purple {
    color: var(--ci-blau);
    border-color: var(--ci-blau);
    background-color: transparent;
}

.btn-ci-purple:hover {
    background-color: var(--ci-blau);
    color: var(--ci-dunkel);
}

.btn-ci-green {
    color: var(--ci-gruen-dunkel);
    border-color: var(--ci-gruen-dunkel);
    background-color: transparent;
}

.btn-ci-green:hover {
    background-color: var(--ci-gruen-dunkel);
    color: #fff;
}

.btn-ci-blue {
    color: var(--ci-blau);
    border-color: var(--ci-blau);
    background-color: transparent;
}

.btn-ci-blue:hover {
    background-color: var(--ci-blau);
    color: var(--ci-dunkel);
}

.btn-ci-right {
    margin-left: auto;   /* schiebt den Button nach rechts */
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-ci:hover .btn-arrow {
    transform: translateX(4px);
}


.info-content {
    display: flex;
    flex-direction: column;
}

/* ============================= */
/* AKTUELLES SECTION             */
/* ============================= */

.aktuelles-section {
    background-color: #ffffff;
}

/* ===== ROW (eigenes Grid) ===== */
.aktuelles-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

/* ===== SPALTEN ===== */
.aktuelles-col {
    display: flex;
}

/* 3 / 9 Verhältnis */
.aktuelles-col-image {
    flex: 0 0 25%;
    max-width: 25%;
}

.aktuelles-col-text {
    flex: 0 0 75%;
    max-width: 75%;
}

/* ===== BILD ===== */
/* ===== BILDER AKTUELLES ===== */

.aktuelles-image {
    width: 100%;
    height: auto;
}

.aktuelles-image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto !important;

    margin: 0 0 12px 0 !important;

    border: 2px solid #b0b0b0;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.aktuelles-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* ===== TEXT ===== */
.aktuelles-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aktuelles-content h3 {
    color: var(--ci-dunkel);
    margin-bottom: 12px;
}

.aktuelles-content p {
    color: #555;
    margin-bottom: 18px;
}

/* ===== LINK / BUTTON ===== */
.aktuelles-link {
    text-decoration: none;
}

.aktuelles-link:hover {
    text-decoration: none;
}

/* unten rechts andocken */
.aktuelles-content .btn-ci-right {
    margin-top: auto;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 991px) {

    .aktuelles-row {
        flex-direction: column;
    }

    .aktuelles-col-image,
    .aktuelles-col-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .aktuelles-content {
        text-align: center;
    }

    .aktuelles-content .btn-ci-right {
        margin-left: auto;
        margin-right: auto;
        margin-top: 15px;
    }
}

























/* =========================================================
   FORMULAR: IDEEN SPENDEN
   ========================================================= */

.project-form-section {
    background-color: #ffffff;
}


/* Formularbreite begrenzen */

.project-form-section .project-form,
.project-form-section .project-form-intro {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.project-form-kicker {
    display: inline-block;

    margin-bottom: 12px;
    padding: 7px 14px;

    background-color: var(--ci-gelb);
    color: var(--ci-dunkel);

    font-size: 0.9rem;
    line-height: 1.2;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.project-form-intro h2 {
    margin-bottom: 15px;

    color: var(--ci-dunkel);

    font-size: 2.5rem;
    line-height: 1.25;
    font-weight: 700;
}


.project-form-intro p {
    max-width: 850px;
    margin-bottom: 0;

    color: #555555;

    font-size: 1.2rem;
    line-height: 1.6;
}


/* =========================================================
   FORMULARBOX
   ========================================================= */

.project-form {
    padding: 35px;

    background-color: var(--ci-hell);
    border: 2px solid #eeeeec;
}


/* =========================================================
   FORMULARGRUPPEN
   ========================================================= */

.project-form .form-group {
    margin-bottom: 28px;
}


.project-form .form-row {
    margin-left: -12px;
    margin-right: -12px;
}


.project-form .form-row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}


/* =========================================================
   BESCHRIFTUNGEN
   ========================================================= */

.project-form label {
    display: block;

    margin-bottom: 8px;

    color: var(--ci-dunkel);

    font-size: 1.05rem;
    line-height: 1.4;
    font-weight: 700;
}


.required-marker {
    color: #b23a3a;
}


/* =========================================================
   HILFETEXTE
   ========================================================= */

.project-form .project-form-help {
    display: block;

    margin-top: -3px;
    margin-bottom: 10px;

    color: #707070;

    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}


.project-form .project-budget-help {
    margin-top: 8px;
    margin-bottom: 0;
}


/* =========================================================
   EINGABEFELDER
   ========================================================= */

.project-form .form-control {
    height: 50px;

    padding: 10px 14px;

    background-color: #ffffff;

    border: 2px solid #d6d6d2;
    border-radius: 0;

    color: var(--ci-dunkel);

    font-size: 1rem;
    line-height: 1.4;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


.project-form textarea.form-control {
    height: auto;
    min-height: 120px;

    resize: vertical;
}


.project-form .form-control:hover {
    border-color: #b9b9b5;
}


.project-form .form-control:focus {
    background-color: #ffffff;

    border-color: var(--ci-blau);

    box-shadow:
        0 0 0 0.2rem rgba(159, 174, 221, 0.25);
}


/* =========================================================
   PROJEKTBUDGET
   ========================================================= */

.project-form .project-budget-group {
    max-width: 350px;
}


/*
Das Zahlenfeld arbeitet durch step="10"
in 10-Euro-Schritten.

Die Browser-Pfeile werden bewusst nicht ausgeblendet.
*/

.project-form input[type="number"] {
    appearance: auto;
    -moz-appearance: auto;
}


.project-form .input-group-text {
    min-width: 65px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: var(--ci-blau);

    border: 2px solid var(--ci-blau);
    border-radius: 0;

    color: var(--ci-dunkel);

    font-size: 0.95rem;
    font-weight: 700;
}


/* =========================================================
   DATENSCHUTZ
   ========================================================= */

.project-form-consent {
    padding: 20px;

    background-color: #ffffff;

    border-left: 5px solid var(--ci-gruen-dunkel);
}


.project-form .custom-control-label {
    margin-bottom: 0;
    padding-top: 1px;

    font-size: 0.95rem;
    line-height: 1.55;
    font-weight: 400;
}


.project-form .custom-control-label::before,
.project-form .custom-control-label::after {
    top: 0.25rem;
}


.project-form .custom-checkbox .custom-control-label::before {
    background-color: #ffffff;

    border: 2px solid #bcbcb8;
    border-radius: 0;
}


.project-form
.custom-checkbox
.custom-control-input:checked
~ .custom-control-label::before {
    background-color: var(--ci-gruen-dunkel);
    border-color: var(--ci-gruen-dunkel);
}


.project-form
.custom-control-input:focus
~ .custom-control-label::before {
    box-shadow:
        0 0 0 0.2rem rgba(143, 191, 155, 0.25);
}


.project-form-consent a {
    color: var(--ci-dunkel);

    font-weight: 700;
    text-decoration: underline;
}


.project-form-consent a:hover,
.project-form-consent a:focus {
    color: #5e8e69;
}


/* =========================================================
   PFLICHTFELDHINWEIS
   ========================================================= */

.project-form .project-form-required-note {
    margin-top: -8px;
    margin-bottom: 20px;

    color: #666666;

    font-size: 0.85rem;
    line-height: 1.4;
}


/* =========================================================
   ABSENDEN-BUTTON
   ========================================================= */

.project-form-submit {
    display: flex;
    justify-content: flex-end;
}


/*
Eigene Klasse ohne Bootstrap-.btn.

Dadurch können vorhandene Bootstrap- oder Website-Regeln
die Gestaltung nicht so leicht überschreiben.
*/

.project-form .project-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin: 0;
    padding: 14px 25px;

    background-color: var(--ci-blau) !important;
    color: var(--ci-dunkel) !important;

    border: 2px solid var(--ci-blau) !important;
    border-radius: 0;

    font-family: inherit;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 700;

    text-align: center;
    text-decoration: none;

    cursor: pointer;

    box-shadow: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.project-form .project-submit-button:hover {
    background-color: var(--ci-gruen) !important;
    border-color: var(--ci-gruen) !important;
    color: var(--ci-dunkel) !important;

    text-decoration: none;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.12);
}


.project-form .project-submit-button:focus {
    outline: none;

    background-color: var(--ci-gruen) !important;
    border-color: var(--ci-gruen-dunkel) !important;
    color: var(--ci-dunkel) !important;

    box-shadow:
        0 0 0 0.2rem rgba(159, 174, 221, 0.35);
}


.project-form .project-submit-button:active {
    transform: translateY(1px);

    box-shadow: none;
}


.project-submit-arrow {
    display: inline-block;

    font-size: 1.2rem;
    line-height: 1;

    transition: transform 0.2s ease;
}


.project-submit-button:hover .project-submit-arrow {
    transform: translateX(4px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 767.98px) {

    .project-form-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }


    .project-form-intro {
        margin-bottom: 30px !important;
    }


    .project-form-intro h2 {
        font-size: 1.85rem;
    }


    .project-form-intro p {
        font-size: 1rem;
    }


    .project-form {
        padding: 22px 18px;
    }


    .project-form .form-group {
        margin-bottom: 22px;
    }


    .project-form .project-budget-group {
        max-width: none;
    }


    .project-form-submit {
        display: block;
    }


    .project-form .project-submit-button {
        display: flex;
        width: 100%;
    }

}











/* Honeypot */
.honeypot-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}







/* ===== FOOTER BOTTOM ===== */

.footer-bottom {
    border-top: 1px solid rgba(46, 46, 46, 0.15);
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright {
    color: var(--ci-mittel);
    white-space: nowrap;
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-legal a {
    color: var(--ci-mittel);
    text-decoration: none;
    transition: color 0.25s ease;
}

/* kleiner Trenner zwischen den Links */
.footer-legal a + a::before {
    content: "·";
    color: var(--ci-mittel);
    margin: 0 0.8rem;
}

.footer-legal a:hover,
.footer-legal a:focus {
    color: var(--ci-blau);
    text-decoration: none;
}


/* ===== MOBILE ===== */

@media (max-width: 767px) {

    .footer-bottom-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

}





/* =========================================
   IMPRESSUM / RECHTLICHE SEITEN
========================================= */

.legal-section {
    background-color: #fff;
}


/* ===== INTRO ===== */

.legal-intro {
    border-left: 8px solid var(--ci-blau);
    padding-left: 25px;
}

.legal-intro h1 {
    margin-bottom: 0.3rem;
}

.legal-subtitle {
    color: var(--ci-mittel);
    margin-bottom: 0;
}


/* ===== INFO-KARTEN ===== */

.legal-card {
    height: 100%;
    padding: 30px;
    background-color: var(--ci-hell);
    border-top: 8px solid var(--ci-blau);
}

.legal-card-blue {
    border-color: var(--ci-blau);
}

.legal-card-green {
    border-color: var(--ci-gruen-dunkel);
}

.legal-card h3 {
    margin-bottom: 1.5rem;
}

.legal-card h5 {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.legal-card p {
    margin-bottom: 0;
}

.legal-reference {
    color: var(--ci-mittel);
    margin-top: -1rem;
    margin-bottom: 1.5rem !important;
}


/* ===== LINKS ===== */

.legal-card a {
    color: var(--ci-dunkel);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.legal-card a:hover,
.legal-card a:focus {
    color: var(--ci-blau);
    text-decoration: none;
}


/* ===== LANGE RECHTSTEXTE ===== */

.legal-text-block {
    padding: 3rem 0;
    border-bottom: 1px solid rgba(46, 46, 46, 0.15);
}

.legal-text-block:last-child {
    border-bottom: 0;
}

.legal-text-block h2 {
    position: relative;
    padding-left: 22px;
    margin-bottom: 1.5rem;
}

/* kleiner CI-Akzent vor der Überschrift */
.legal-text-block h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 6px;
    height: 0.9em;
    background-color: var(--ci-blau);
}

.legal-text-block:nth-of-type(2n) h2::before {
    background-color: var(--ci-gruen-dunkel);
}

.legal-text-block p {
    line-height: 1.75;
    max-width: 950px;
}


/* ===== MOBILE ===== */

@media (max-width: 767px) {

    .legal-card {
        padding: 22px;
    }

    .legal-text-block {
        padding: 2rem 0;
    }

    .legal-intro {
        padding-left: 18px;
        border-left-width: 6px;
    }

}




/* =========================================================
   DATENSCHUTZ / RECHTLICHE SEITEN
========================================================= */


/* ===== GRUNDBEREICH ===== */

.legal-section {
    background-color: #ffffff;
    color: var(--ci-dunkel);
}


/* =========================================================
   SEITENÜBERSCHRIFT
========================================================= */

.legal-intro {
    border-left: 8px solid var(--ci-blau);
    padding-left: 25px;
}

.legal-intro h1 {
    margin-top: 0;
    margin-bottom: 0.3rem;
}

.legal-subtitle {
    color: var(--ci-mittel);
    margin-bottom: 0;
}


/* =========================================================
   INFO-KARTEN OBEN
========================================================= */

.legal-card {
    height: 100%;
    padding: 30px;

    background-color: var(--ci-hell);

    border-top: 8px solid var(--ci-blau);
}


/* CI-Farben der Karten */

.legal-card-blue {
    border-color: var(--ci-blau);
}

.legal-card-green {
    border-color: var(--ci-gruen-dunkel);
}


/* Überschriften */

.legal-card h3 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.legal-card h5 {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;

    text-transform: uppercase;
}


/* Text */

.legal-card p {
    margin-bottom: 0;
    line-height: 1.65;
}


/* kleine Zusatzinformation */

.legal-reference {
    color: var(--ci-mittel);

    margin-top: -1rem;
    margin-bottom: 1.5rem !important;
}


/* =========================================================
   LINKS IN DEN INFO-KARTEN
========================================================= */

.legal-card a {
    color: var(--ci-dunkel);
    text-decoration: none;
    font-weight: 600;

    transition: color 0.2s ease;
}

.legal-card a:hover,
.legal-card a:focus {
    color: var(--ci-blau);
    text-decoration: none;
}


/* =========================================================
   EINZELNE TEXTABSCHNITTE
========================================================= */

.legal-text-block {
    padding: 3rem 0;

    border-bottom: 1px solid rgba(46, 46, 46, 0.15);
}


/* beim letzten Abschnitt keine Linie */

.legal-text-block:last-child {
    border-bottom: 0;
}


/* =========================================================
   ÜBERSCHRIFTEN DER TEXTABSCHNITTE
========================================================= */

.legal-text-block h2 {
    position: relative;

    padding-left: 22px;
    margin-top: 0;
    margin-bottom: 1.5rem;
}


/* CI-Strich links neben H2 */

.legal-text-block h2::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0.15em;

    width: 6px;
    height: 0.9em;

    background-color: var(--ci-gruen-dunkel);
}


/* Zwischenüberschriften */

.legal-text-block h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;

    color: var(--ci-dunkel);
}


/* =========================================================
   FLIESSTEXT
========================================================= */

.legal-text-block p {
    max-width: 100%;

    line-height: 1.75;
}


/* =========================================================
   DATENSCHUTZ-LISTEN
========================================================= */

.legal-list {
    list-style: none;

    padding: 0;
    margin: 2rem 0 2.5rem 0;

    max-width: 100%;

    background-color: rgba(207, 230, 201, 0.18);

    border: 1px solid rgba(143, 191, 155, 0.25);
}


/* einzelner Listenpunkt */

.legal-list li {
    position: relative;

    padding: 1.4rem 2rem 1.4rem 3.5rem;

    font-size: 1.25rem;
    line-height: 1.6;

    color: var(--ci-dunkel);

    border-bottom: 1px solid rgba(46, 46, 46, 0.10);

    transition: background-color 0.2s ease;
}


/* letzter Punkt ohne Trennlinie */

.legal-list li:last-child {
    border-bottom: none;
}


/* CI-Quadrat */

.legal-list li::before {
    content: "";

    position: absolute;

    left: 1.5rem;
    top: 1.85rem;

    width: 10px;
    height: 10px;

    background-color: var(--ci-gruen-dunkel);
}


/* hervorgehobener Teil innerhalb der Liste */

.legal-list li strong {
    font-weight: 600;
    color: var(--ci-dunkel);
}


/* dezenter Hover */

.legal-list li:hover {
    background-color: rgba(207, 230, 201, 0.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 767px) {

    /* Seitenüberschrift */

    .legal-intro {
        padding-left: 18px;
        border-left-width: 6px;
    }


    /* Karten */

    .legal-card {
        padding: 22px;
    }


    /* Textabschnitte */

    .legal-text-block {
        padding: 2rem 0;
    }


    /* Listen */

    .legal-list {
        margin: 1.5rem 0 2rem 0;
    }

    .legal-list li {
        padding: 1.1rem 1rem 1.1rem 2.6rem;

        font-size: 1.05rem;
        line-height: 1.55;
    }

    .legal-list li::before {
        left: 1rem;
        top: 1.55rem;

        width: 9px;
        height: 9px;
    }

}










/* =========================================================
   STARTSEITE – INTRO BÜRGERSTIFTUNG
========================================================= */

.home-intro {
    padding: 6rem 0;
    background-color: #ffffff;
}


/* =========================================================
   LINKE SEITE
========================================================= */

.home-intro-content {
    padding-right: 3rem;
}


/* kleine Überschrift */

.home-intro-kicker {
    display: inline-block;

    margin-bottom: 1.2rem;

    color: var(--ci-gruen-dunkel);

    font-size: 1rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* Hauptüberschrift */

.home-intro-content h2 {
    max-width: 850px;

    margin-bottom: 2rem;

    font-size: 2.7rem;
    line-height: 1.2;

    color: var(--ci-dunkel);
}


/* hervorgehobener erster Absatz */

.home-intro-lead {
    margin-bottom: 1.5rem;

    font-size: 1.35rem;
    line-height: 1.65;

    color: var(--ci-dunkel);
}


/* normaler Text */

.home-intro-content p:not(.home-intro-lead) {
    line-height: 1.75;
}


/* =========================================================
   LINK
========================================================= */

.home-intro-link {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;

    margin-top: 1rem;
    padding-bottom: 0.3rem;

    color: var(--ci-dunkel);

    font-weight: 600;

    text-decoration: none;

    border-bottom: 3px solid var(--ci-blau);

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.home-intro-link span {
    font-size: 1.4rem;
    transition: transform 0.2s ease;
}

.home-intro-link:hover,
.home-intro-link:focus {
    color: var(--ci-gruen-dunkel);
    border-color: var(--ci-gruen-dunkel);
    text-decoration: none;
}

.home-intro-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   RECHTE CI-BOX
========================================================= */

.home-intro-callout {
    position: relative;

    height: 100%;

    padding: 3.5rem;

    background-color: var(--ci-hell);

    border-top: 10px solid var(--ci-blau);

    overflow: hidden;
}


/* großes dekoratives "Wir." */

.home-intro-callout-number {
    position: absolute;

    right: -10px;
    top: -30px;

    font-size: 8rem;
    line-height: 1;

    font-weight: 700;

    color: var(--ci-blau);
    opacity: 0.15;

    pointer-events: none;
}


/* Überschrift */

.home-intro-callout h3 {
    position: relative;

    margin-bottom: 1.5rem;

    font-size: 2.2rem;
    line-height: 1.2;

    color: var(--ci-dunkel);
}


/* Text */

.home-intro-callout p {
    position: relative;

    line-height: 1.7;
}


/* =========================================================
   ZEIT / IDEEN / GELD
========================================================= */

.home-intro-values {
    display: flex;
    flex-wrap: wrap;

    gap: 0.7rem;

    margin: 2rem 0;
}


.home-intro-value {
    padding: 0.7rem 1.2rem;

    color: var(--ci-dunkel);

    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.04em;
}


.home-intro-value.value-blue {
    background-color: var(--ci-blau);
}

.home-intro-value.value-red {
    background-color: var(--ci-rot);
}

.home-intro-value.value-green {
    background-color: var(--ci-gruen);
}


/* Abschluss in der Box */

.home-intro-bottom {
    margin-top: 2rem;
    margin-bottom: 0;

    padding-top: 1.5rem;

    border-top: 1px solid rgba(46, 46, 46, 0.15);

    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .home-intro {
        padding: 4rem 0;
    }

    .home-intro-content {
        padding-right: 0;
    }

    .home-intro-content h2 {
        font-size: 2.2rem;
    }

    .home-intro-callout {
        padding: 2.5rem;
    }

}


@media (max-width: 767px) {

    .home-intro {
        padding: 3rem 0;
    }

    .home-intro-content h2 {
        font-size: 1.8rem;
    }

    .home-intro-lead {
        font-size: 1.15rem;
    }

    .home-intro-callout {
        padding: 2rem;
    }

    .home-intro-callout h3 {
        font-size: 1.8rem;
    }

    .home-intro-callout-number {
        font-size: 6rem;
    }

}

















