* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    lang: de; 
}

body {
    font-family: Arial, sans-serif;
    color: white; 
    margin: 0 auto; 
    background-color: #336600;  
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 115px;
    padding: 0px;
    margin: 0px;
    background-color: #336600; 
}

a {
    text-transform: uppercase; 
    font-weight: bold;
    text-decoration: underline; 
    color: inherit; 
}

a:hover {
    color: #336600; 
}

p {
    font-family: Arial, sans-serif;
    color: black; 
    font-size: 12pt;
    line-height: 1.5;
}

 h2 {
    font-size: 32pt; 
    margin-bottom: 20px; 
}

 h3 {
    font-size: 24pt;
    margin-bottom: 20px;
 
}


ul {
    list-style-type: square ;
    padding: 0px 0px 0px 30px; 
    margin: 0px 0px 0px 0px; 
}

li {
    font-family: Arial, sans-serif; 
    font-size: 16px; 
    line-height: 1.5;
}

.button {
    background-color: #336600; 
    color: white; 
    border: 1px solid #FFF; 
    border-radius: 5px; 
    padding: 15px 30px; 
    font-size: 12pt; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin: 30px 0px 30px 0px; 
    text-transform: none; 
    text-decoration: none; 
    font-weight: normal;
    flex: 1 1 calc(33.33% - 20px);
}

.button:hover {
    background-color: #FFFFFF; 
    color: #336600; 
    transform: scale(1.02); 
    text-transform: none; 
    text-decoration: none; 
    border: 1px solid #336600;
}

.button-white {
    background-color: #FFF; 
    color: #336600; 
    border: 1px solid #336600; 
    border-radius: 5px; 
    padding: 15px 30px; 
    font-size: 12pt; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    margin: 30px 0px 30px 0px; 
    text-transform: none; 
    text-decoration: none; 
    font-weight: normal;
    flex: 1 1 calc(33.33% - 20px);
}

.button-white:hover {
    background-color: #336600; 
    color: #FFF; 
    transform: scale(1.02); 
    text-transform: none; 
    text-decoration: none; 
    border: 1px solid #FFF;
}

/* Basislayout */
main {
    margin: 0 auto; 
    padding: 0px;
}

.container{
    max-width: 820px;
    margin: 0 auto; 
    padding: 0px;
}
.container-green{
    width: 100%;
    background-color: #336600;
    margin: 0 auto; 
    padding: 55px 0px 0px 0px;
}

@media only screen and (max-width: 820px) {
    .container {
        max-width: 420px; 
        padding: 0px;
    }
    .container-green {
        padding: 40px 0px 0px 0px;
    }
}

.logo-container {
    text-align: center;
    flex-grow: 1;
}

.logo-container img {
    width: 80px; 
}

.logo-container h1 {
    font-size: 14pt; 
    font-weight: bold;
    letter-spacing: 0.2em;
    margin-top: 10px;
}

.logo-container a {
    font-size: 14pt; 
    letter-spacing: 0.2em;
    text-decoration: none; 
    color: white; 
    margin: 0px;
}

/* Mouseover-Effekte */
.logo-container  a:hover {
    color: white;
    text-decoration: none; 
}

@media (max-width: 820px) {
     .logo-container img {
        width: 75x;
    }

    .logo-container h1 {
        font-size: 14pt; 
        letter-spacing: 0.15em; 
        margin-top: 8px; 
    }
}

@media (max-width: 960px) {
    header {
        padding: 0px;
        margin: 0px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 75px; 
    }

    .logo-container h1 {
        font-size: 14pt; 
        letter-spacing: 0.1em; 
        margin-top: 5px; 
    }
}

.burger-menu {
    cursor: pointer; /* Cursor zeigt an, dass es klickbar ist */
    position: absolute; /* Absolute Positionierung */
    top: 20px; /* Oben ausrichten */
    left: 20px; /* Links ausrichten */
}

.burger-menu {
    cursor: pointer; /* Cursor zeigt an, dass es klickbar ist */
    top: 20px; /* Oben ausrichten */
    left: 20px; /* Links ausrichten */
    position: ;
}

.burger-menu span {
    display: block; /* Blockelemente für die Burger-Leisten */
    background-color: white; /* Farbe der Burger-Leisten */
    height: 5px; /* Höhe der Leisten */
    margin: 4px 0; /* Abstand zwischen den Leisten */
}
.burger-menu .long {
    width: 40px; /* Breite der langen Leiste */
}
.burger-menu .short {
    width: 30px; /* Breite der kurzen Leiste */
}


/* Herz */
.heart-link {
    position: absolute;
    top: 20px;
    right: 20px;
    text-decoration: none;
}

.heart-icon {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s ease;
}

.donate-overlay {
    display: none;
    color: #fff;
    font-size: 16px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0px 50px 0px 0px;
}

.heart-link:hover .heart-icon {
    opacity: 0;
}

.heart-link:hover .donate-overlay {
    display: block;
}


/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1000;
    display: none; 
    justify-content: center;
    text-align: center; 
}

.close-button {
    position: absolute;
    top: 5px;
    left: 20px; 
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

@media (max-width: 820px) {
    .close-button {
        font-size: 26px; 
        top: 10px;
    }

    .overlay-content a {
        font-size: 36pt;
    }

    .footer-links {
        bottom: 10px;
        right: 10px;
    }

    .overlay-language-switch {
        top: 15px;
        right: 15px;
    }
}

/* Sprachauswahl */
.overlay-language-switch {
    position: absolute;
    top: 20px;
    right: 20px; 
    display: flex;
    align-items: flex-end;
}

.overlay-language-switch a {
    color: white;
    text-transform: uppercase;
    margin: 10px; /
}

.overlay-language-switch a:hover {
    color: lightgray;
    text-transform: uppercase;
    text-decoration: none;
    margin: 10px; 
}


/* Zentrierte und vertikal ausgerichtete Links im Overlay */
.overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center; /* Horizontal zentriert */
}

/* Links im Overlay */
.overlay-content a {
    font-size: 72pt;
    font-weight: 900; /* Extra fett */
    text-transform: uppercase;
    text-decoration: none;
    color: #336600;
    margin: 0px;
    transition: color 0.3s ease;
}

.overlay-content a:hover {
    color: white; /* Farbwechsel bei Mouseover */
    text-decoration: none;
}

@media (max-width: 820px) {
.overlay-content a {
    font-size: 36pt;
    font-weight: 900; /* Extra fett */
    text-transform: uppercase;
    text-decoration: none;
    color: #336600;
    margin: 0px;
    transition: color 0.3s ease;
}

.overlay-content a:hover {
    color: white; /* Farbwechsel bei Mouseover */
    text-decoration: none;
}
}

/* Footer-Bereich im Overlay */
.footer-links {
    position: absolute;
    bottom: 20px;
    right: 20px; /* Rechts unten */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-links a {
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: lightgray;
    text-decoration: none;
}

/* Social Media Icons im Footer */
.social-media {
    display: flex;
    margin-top: 10px;
}

.social-media a {
    width: 30px;
    margin-left: 10px;
    cursor: pointer;
}

.hero-text {
    margin-top: 0px;
    text-align: center;
    width: 100%; /* Volle Breite auf kleineren Bildschirmen */
    max-width: 570px; /* Maximale Breite für größere Bildschirme */
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px; /* Padding für kleine Bildschirme */
    position: relative;
    z-index: 2;
}

.hero-text h2 {
    font-size: 50pt; /* Standardgröße für große Bildschirme */
    line-height: 1.1;
    word-wrap: break-word; 
    color: white;
}

@media (max-width: 820px) {
    .hero-text {
        margin-top: 0px; /* Weniger Abstand nach oben auf Smartphones */
        width: 100%; /* Volle Breite auf kleinen Bildschirmen */
    }

    .hero-text h2 {
        font-size: 32pt; /* Kleinere Schriftgröße für Mobilgeräte */
        line-height: 1.1; /* Etwas mehr Zeilenhöhe für bessere Lesbarkeit */
    }
}

@media (max-width: 480px) {
    .hero-text {
        margin-top: 0px; /* Noch weniger Abstand für sehr kleine Bildschirme */
        padding: 0 15px; /* Mehr Padding, um den Text nicht an den Rand zu drücken */
    }

    .hero-text h2 {
        font-size: 32pt; /* Schriftgröße für kleine Bildschirme */
        line-height: 1.1; /* Optimale Lesbarkeit auf sehr kleinen Bildschirmen */
    }
}

/* Ebene 2: Bild */
.image-container {
    margin-top: 5px; /* Bild 455px von der Seite insgesamt (260px für die Überschrift + 175px für das Bild) */
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    z-index: 1; /* Bild unter der Überschrift */
    position: relative;
}

.image-container img {
    width: 100%;
    max-width: 570px; /* Maximale Breite des Bildes */
    height: auto;
    margin-top: -40px; /* Überlappung mit der Überschrift */
}

@media (max-width: 820px) {
    .image-container img {
        margin-top: -35px; /* Überlappung mit der Überschrift */
    }
}

@media (max-width: 420x) {
    .image-container img {
        margin-top: -30px; /* Überlappung mit der Überschrift */
    }
}

.times-text  {
    margin-top: 45px;
    text-align: center;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.times-text h3  {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 100;
    font-size: 26pt;
}

.arial-text {
    margin-top: 45px;
    text-align: center;
    width: 720px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 55px;
}

.arial-text p {
    font-family: Arial, sans-serif;
    font-size: 24pt;
    color: white;
}

@media (max-width: 820px) {
    .arial-text {
        max-width: 100%; /* Volle Breite auf kleinen Bildschirmen */
        padding: 5px;
}
    .arial-text p {
        font-size: 20pt; /* Noch kleinere Schriftgröße auf sehr kleinen Bildschirmen */
    }
}

/* Schräges Div */
.diagonal {
    position: relative;
    width: 101vw; /* Leicht vergrößerte Breite */
    height: 21vh; /* Leicht vergrößerte Höhe */
    background: linear-gradient(to bottom left, #336600 50%, white 50%);
    left: -0.5vw; /* Leicht verschieben, um Overflow zu verdecken */
    margin-bottom: -1px; /* Eventuelle Linie unten entfernen */
}

.diagonal-legal {
    position: relative;
    width: 101vw; /* Leicht vergrößerte Breite */
    height: 11vh; /* Leicht vergrößerte Höhe */
    background: linear-gradient(to bottom left, #336600 50%, white 50%);
    left: -0.5vw; /* Leicht verschieben, um Overflow zu verdecken */
    margin-bottom: -1px; /* Eventuelle Linie unten entfernen */
}

/* Weißes Hintergrund-Div */
.white-background {
    background-color: white; /* Weißer Hintergrund */
    width: 100%; /* Volle Breite */
    padding: 20px 20px 20px 20px; /* Optional: Padding für Abstand */
    min-height: 500px; /* Minimale Höhe für Sichtbarkeit */
    color: black; /* Textfarbe im weißen Bereich */
}



.white-background-text {
    background-color: white; /* Weißer Hintergrund */
    width: 100%; /* Volle Breite */
}

/* Basislayout für größere Bildschirme */
.slider-container {
    width: 100%; /* Volle Breite */
    max-width: 960px; /* Maximale Breite des Sliders */
    margin: 0 auto; /* Zentriert den Container */
    position: relative;
    overflow: hidden; /* Verhindert das Überlappen außerhalb des Containers */
}

.slider {
    display: flex; /* Flexbox für horizontale Anordnung der Slides */
    transition: transform 0.5s ease-in-out; /* Sanfte Übergänge zwischen den Slides */
}

.slide {
    min-width: 100%; /* Jedes Slide nimmt die volle Breite des Containers ein */
    box-sizing: border-box;
    padding: 0px;
}

.image-text-container {
    display: flex; /* Flexbox für zwei Spalten */
    justify-content: space-between;
    align-items: flex-start; /* Ausrichtung am Anfang */
}

.left-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Großen Bild nach unten versetzen */
    margin-top: 100px; /* Versetzt das große Bild etwas nach unten */
}

.large-image {
    width: 411px;
    height: 385px;
}

.right-column {
    flex: 1;
    display: flex;
    flex-direction: column; /* Stapelt das kleine Bild, die Überschrift und den Text */
    align-items: flex-start; /* Textausrichtung links */
    margin-left: 20px; /* Platz zwischen den Spalten */
    position: relative;
}

.right-column h3 {
    font-size: 18pt;

}

.right-column p {
    font-size: 12pt;
    line-height: 1.5;
    width: 90%;
}

.small-image {
    width: 295px;
    height: 275px;
    margin-bottom: 20px; /* Abstand zwischen kleinem Bild und Überschrift */
}

.text-content h3 {
    font-size: 24pt;

}

.text-content p {
    font-size: 16pt;
    line-height: 1.5;
}


/* Navigation Slider */
.navigation {
    position: absolute;
    bottom: 20px; /* Position am unteren Rand */
    right: 20px; /* Position rechts */
    display: flex;
    justify-content: space-between;
}

.arrow {
    cursor: pointer;
    font-size: 40px;
    padding: 10px;
    color: #336600; /* Grüner Pfeil */
    background-color: transparent; /* Kein Hintergrund */
    border: none; /* Kein Rahmen */
    margin-left: 10px;
}

/* Responsive Anpassungen für Smartphones */


@media (max-width: 820px) {
    .slider {
        flex-direction: column; /* Ändert Layout zu vertikaler Anordnung */
    }

    .image-text-container {
        flex-direction: column; /* Vertikale Anordnung der Bilder und des Texts */
        justify-content: center;
        align-items: center; /* Zentriert den Inhalt */
    }

    .left-column, .right-column {
        margin: 0 0 20px 0; /* Entfernt den Abstand */
        width: 100%; /* Vollbreite für kleinere Bildschirme */
    }

    .large-image, .small-image {
        width: 100%; /* Volle Breite für Bilder */
        height: auto; /* Höhe proportional anpassen */
    }

    .right-column h3 {
        font-size: 24pt;

    }

    .right-column p {
        font-size: 14pt;
        line-height: 1.5;
        width: 100%;
        hyphens: auto; /* Automatische Silbentrennung */
        -webkit-hyphens: auto; /* Silbentrennung für WebKit-basierte Browser */
        -moz-hyphens: auto; /* Silbentrennung für Mozilla-basierte Browser */
        word-wrap: break-word; /* Lange Wörter umbrechen, falls nötig */
    }

    .text-content h3 {
        font-size: 16pt; /* Noch kleinere Schriftgröße für sehr kleine Bildschirme */
    }

    .text-content p {
        font-size: 12pt; /* Kleinere Schriftgröße für Fließtext */
    }

    .navigation {
        display: none; /* Versteckt die Navigation */
    }

    .arrow {
        font-size: 18px; /* Kleinere Pfeilgröße für Navigation */
    }
}





.text-section {
    max-width: 960px;
    margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
    padding: 150px 165px 0px 100px;
}

.text-section h2 {
    font-size: 24pt; /* Überschriftgröße */
    margin-bottom: 15px; /* Abstand zwischen Überschrift und Text */
}

.text-section p {
    font-size: 16pt; /* Fließtextgröße */
    line-height: 1.5; /* Zeilenhöhe für besseren Lesefluss */
    padding-bottom: 0px;
}


.image-description-container {
    display: flex; /* Flexbox für das nebeneinander angeordnete Layout */
    align-items: flex-end; /* Text unten ausrichten */
    width: 100%; /* Volle Breite */
    max-width: 960px; /* Maximale Breite des Containers */
    margin: 50px auto; /* Zentriert den Container innerhalb der Seite */
    padding: 100px 0px 100px 100px; /* Padding für den Abstand */
    text-align: left; /* Links ausgerichteter Text */
}

.description-image {
    width: 560px; /* Breite des Bildes */
    height: auto; /* Höhe proportional anpassen */
}

.description-text {
    margin-left: 20px; /* Abstand zwischen Bild und Beschreibung */
    display: flex;
    flex-direction: column; /* Vertikale Ausrichtung für Text und Link */
    align-items: flex-start; /* Links ausgerichteter Text */
}

@media (max-width: 820px) {
    .image-description-container {
        flex-direction: column; /* Elemente untereinander anordnen */
        padding: 50px 20px; /* Reduziertes Padding für kleinere Bildschirme */
    }

    .description-image {
        width: 100%; /* Bild nimmt die volle Breite ein */
        height: auto; /* Höhe proportional anpassen */
        margin-bottom: 0px; /* Abstand zwischen Bild und Text */
    }

    .description-text {
        width: 100%; /* Bild nimmt die volle Breite ein */
        margin-left: 0; /* Kein Abstand mehr zwischen Bild und Text */
        align-items: flex-start; /* Links ausgerichtet */
        font-size: 16pt; /* Fließtextgröße */
    }
    .description-text p {
        font-size: 16pt; /* Fließtextgröße */
    }

    .text-section {
        max-width: 100%; /* Vollbild-Breite auf kleineren Geräten */
        padding: 0px;
    }

    .text-section p {
        font-size: 14pt; /* Fließtextgröße */
        line-height: 1.5; /* Zeilenhöhe für besseren Lesefluss */
        hyphens: auto; /* Automatische Silbentrennung */
        -webkit-hyphens: auto; /* Silbentrennung für WebKit-basierte Browser */
        -moz-hyphens: auto; /* Silbentrennung für Mozilla-basierte Browser */
        word-wrap: break-word; /* Lange Wörter umbrechen, falls nötig */
    }
}

.custom-link {
    text-transform: uppercase; 
    font-weight: bold; 
    text-decoration: underline; 
    color: inherit; 
    margin-top: 10px; 
}

.custom-link:hover {
    color: #339966; /* Farbe bei Hover */
}

.text-link {
    text-transform: none;
    font-weight: bold; 
    text-decoration: underline; 
    color: inherit; 
}

.text-link:hover {
    color: #339966; /* Farbe bei Hover */
}


@media (max-width: 820px) {
    .image-description-container {
        flex-direction: column; /* Elemente untereinander anordnen */
        padding: 0; /* Padding für schmalere Bildschirme entfernen */
    }

    .description-image {
        width: 100%; /* Bild nimmt die volle Breite ein */
        height: auto; /* Automatische Höhenanpassung */
    }

    .description-text {
        margin-left: 0; /* Kein Abstand mehr zwischen Bild und Text */
        margin-top: 20px; /* Abstand zwischen Bild und Text auf kleinen Bildschirmen */
        align-items: flex-start; /* Links ausgerichtet */
        font-size: 16pt; /* Fließtextgröße */
    }
}


footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 0px 50px 0px;
    height: 275px;
    background-color: #336600; /* Grüner Hintergrund */
}

.language-switch {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.lang-link {
    color: white; /* Standardfarbe für Links */
    text-transform: uppercase; /* Text in Großbuchstaben */
    font-weight: bold; /* Fettdruck für Links */
    text-decoration: underline; /* Unterstrichen */
    margin-left: 20px; /* Abstand zwischen den Links */
    transition: color 0.3s; /* Sanfter Übergang für die Farbänderung */
}

.lang-link:hover {
    color: lightgray; /* Farbe beim Mouseover */
    text-decoration: none; /* Unterstrichen */
}

.lang-link.active {
    color: lightgray; /* Farbe für den aktiven Link */
    text-decoration: none; /* Nicht unterstrichen, wenn aktiv */
    margin-left: 0px; 
}





.footer-links-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-links-left {
    display: flex;
    gap: 20px; /* Abstand zwischen Links */
}

.footer-links-left a {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s; /* Für einen sanften Übergang */
}

.footer-links-left a:hover {
    color: lightgray; /* Farbe beim Mouseover */
    text-decoration: none;
}

.footer-links-right {
    display: flex;
    gap: 20px; /* Abstand zwischen Logos */
}

.social-logo {
    width: 30px; /* Größe der Logos */
    height: auto;
}

.footer-bottom {
    display: flex; /* Flexbox aktivieren für die horizontale Ausrichtung */
    /*justify-content: space-between;*/ /* Platz zwischen den Elementen */
    width: 100%;
    align-items: center; /* Vertikal zentriert */
    margin-top: 10px; /* Abstand nach oben */
}

.footer-bottom p {
    color: white;
    text-transform: uppercase;
    margin: 0; /* Kein Abstand um den Paragraphen */
}

.footer-navigation {
    display: flex; /* Flexbox aktivieren für die horizontale Ausrichtung */
    gap: 20px; /* Abstand zwischen Links */
    margin-left: 20px; /* Abstand zwischen Copyright und Navigation */
}

.footer-navigation a {
    color: lightgray;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none; /* Unterstrichen */
    transition: color 0.3s; /* Für einen sanften Übergang */
}

.footer-navigation a:hover {
    color: white; /* Farbe beim Mouseover */
    text-decoration: underline;
}


/* Responsive Styling für max-width 960px */
@media (max-width: 820px) {
    footer {
        flex-direction: column;
        height: auto;
        padding: 50px 30px 50px 30px;
    }

    .language-switch {
        justify-content: center;
    }

    .footer-links-container {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .footer-links-left {
        margin-bottom: 10px; /* Reduzierter Abstand für eine Zeile */
    }

    .footer-links-right {
        margin-bottom: 10px; /* Reduzierter Abstand für eine Zeile */
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-navigation {
        margin-top: 10px;
    }
}


.social-container {
    display: flex;
    gap: 20px; /* Abstand zwischen den Quadraten */
    justify-content: center;
    align-items: center;
}

.social-icon svg {
    width: 30px; /* Größe der weißen Quadrate */
    height: 30px;
    transition: fill 0.3s ease;
}

.social-icon svg:hover {
    fill: lightgray;/* Grau bei Hover */
}
.social-icon:hover svg path {
    fill: lightgray; /* Grau bei Hover */
}

/* Impressum */

.impressum {
    max-width: 960px;
    margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
    padding: 0px 60px 0px 60px; /* Innerer Abstand */
    position: relative; /* Damit es nach oben verschoben werden kann */
    top: -50px; /* Verschiebt das div nach oben */
    z-index: 10; /* Stellt sicher, dass das div andere Elemente überlagert */
}

.impressum h2 {
    font-size: 32pt; /* Überschriftgröße */
    margin-bottom: 15px; /* Abstand zwischen Überschrift und Text */
}

.impressum h3 {
    font-size: 20px;
    color: black;
    margin-top: 20px;
    margin-bottom: 10px;
}

.impressum p {
    font-size: 16px;
    margin-bottom: 15px;
}

.impressum a {
    text-transform: none; 
    font-weight: bold; 
    text-decoration: underline; 
    color: inherit; 
    margin-top: 10px; 
}

.impressum a:hover {
    color: #339966; 
    text-decoration: none;
}

.impressum p, .impressum a {
    font-size: 12pt; 
    line-height: 1.5; 
    margin-bottom: 15px;
}

.impressum h3, .impressum p {
    text-align: left;
}

@media (max-width: 820px) {
    .impressum {
        margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
        position: relative; /* Damit es nach oben verschoben werden kann */
        top: -50px; /* Verschiebt das div nach oben */
        z-index: 10; /* Stellt sicher, dass das div andere Elemente überlagert */
        max-width: 100%; /* Vollbild-Breite auf kleineren Geräten */
        padding: 0px;
    }
}

/* Datenschutz */

.datenschutz {
    max-width: 960px;
    margin: 0 auto; 
    padding: 0px 60px 0px 60px;
    position: relative; 
    top: -50px; 
    z-index: 10; 
}

.datenschutz h2 {
    font-size: 32pt;
    margin-bottom: 15px; 
}

.datenschutz h3 {
    font-size: 20px;
    color: black;
    margin-top: 20px;
    margin-bottom: 10px;
}

.datenschutz p {
    font-size: 16px;
    margin-bottom: 15px;
}

.datenschutz a {
    text-transform: none; 
    font-weight: bold; 
    text-decoration: underline; 
    color: inherit; 
    margin-top: 10px; 
}

.datenschutz a:hover {
    color: #339966; 
    text-decoration: none;
}

.datenschutz p, .datenschutz a {
    font-size: 12pt; 
    line-height: 1.5; 
    margin-bottom: 15px;
}

.datenschutz h3, .datenschutz p {
    text-align: left;
}

@media (max-width: 820px) {
    .datenschutz {
        margin: 0 auto; 
        position: relative;
        top: -50px; 
        z-index: 10; 
        max-width: 100%;
        padding: 0px;
    }
}




        /* Akkordeon-Stil */
       .accordion {
            background-color: white;
            color: black;
            cursor: pointer;
            padding: 0px 0px 0px 10px;
            border: 5px solid #336600;
            border-top: none;
            border-right: none;
            border-bottom: none;
            text-align: left;
            outline: none;
            width: 100%;
            font-size: 20px;
            font-weight: bold;
            color: #336600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }





        .panel {
            padding: 0 10px 0 0;
            display: none;
            border: 5px solid #336600;
            border-top: none;
            border-right: none;
            border-bottom: none;
        }


.accordion-text {
    flex-grow: 1;
}

.accordion-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
        svg {
            margin-left: 10px;
        }

        /* Formular-Stil */
        form {
            padding: 10px 10px 0px 10px;
            display: flex;
            flex-direction: column;
        }

        label {
            margin: 5px 0;
        }

        input, textarea {
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            width: 100%;
        }

        input:focus, textarea:focus {
    border-color: #336600;      /* Rahmenfarbe bei Fokus */
    box-shadow: 0 0 5px rgba(51, 153, 0, 0.5); /* Schattierung bei Fokus */
    outline: none;              /* Entfernt den Standardfokusrahmen */
}


        button {
            padding: 10px;
            background-color: white;
            border: 1px solid #ccc;
            cursor: pointer;
        }

        .input-text {
            font-size: 14pt;
        }

.form-button {
    background-color: #4CAF50; /* Standardfarbe */
    color: white; /* Schriftfarbe */
    border: none; /* Kein Rahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 15px 30px; /* Innenabstand */
    font-size: 16pt; /* Schriftgröße */
    cursor: pointer; /* Cursor zeigt an, dass es klickbar ist */
    transition: background-color 0.3s ease; /* Sanfter Übergang */
    margin: 30px 0px 0px 0px; /* Abstand um den Button */
}

/* Hover-Effekt */
.form-button:hover {
    background-color: #45a049; /* Dunklere Farbe beim Hover */
    transform: scale(1.02); /* Vergrößerung des Buttons */
}



/* Spenden */

.spenden {
    max-width: 960px;
    margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
    padding: 0px 60px 0px 60px; /* Innerer Abstand */
    position: relative; /* Damit es nach oben verschoben werden kann */
    top: -50px; /* Verschiebt das div nach oben */
    z-index: 10; /* Stellt sicher, dass das div andere Elemente überlagert */
}

.spenden h2 {
    font-size: 32pt; /* Überschriftgröße */
    margin: 30px 0px 15px 0px; /* Abstand zwischen Überschrift und Text */
}

.button-container-spende {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umrücken der Buttons */
    justify-content: space-between; /* Verteilung der Buttons */
    gap: 20px; /* Abstand zwischen den Buttons */
}


.container-box {
    display: flex;
    flex-wrap: wrap; /* Ermöglicht das Umbrechen */
    justify-content: space-between;
    gap: 20px;
    background-color: #ffff;
    padding: 10px 0px 0px 0px;
}


.box-link {
    text-decoration: none; /* Keine Unterstreichung */
    flex: 1 1 calc(33.333% - 20px); /* Boxen nehmen 1/3 des verfügbaren Platzes ein, mit Abstand */
    box-sizing: border-box;
}

/* Box-Design */
.box {
    background-color: #f6f6f6; /* Standard Hintergrundfarbe */
    padding: 20px;
    flex: 1 1 calc(50% - 20px); /* Maximal 3 Boxen in einer Reihe */
    box-sizing: border-box;
    text-align: left;
    transition: background-color 0.3s ease; /* Übergang für die Farbänderung */
}

/* Hover-Effekt: Ändert nur die Hintergrundfarbe */
.box:hover {
    background-color: #ededed; /* Ändert die Hintergrundfarbe bei Hover */
    color: black;
}

/* Standard-Textfarbe */
.box h3 {
    text-transform: none;
    color: #336600;
    line-height: 1.5;
}

.box p {
    text-transform: none;
    font-weight: normal;
    margin: 0;
}


#spende {
    width: 100%;
    max-width: 300px;       /* Maximale Breite */
    padding: 10px;          /* Innenabstand */
    font-size: 14px;        /* Schriftgröße */
    color: #333;            /* Textfarbe */
    background-color: #fff; /* Hintergrundfarbe */
    border: 1px solid #ccc; /* Rahmenfarbe */
    border-radius: 3px;     /* Abgerundete Ecken */
    appearance: none;       /* Standardpfeil entfernen */
    cursor: pointer;        /* Zeigt einen Zeiger an */
    outline: none;          /* Entfernt Fokusrahmen */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; /* Animationen */
}

/* Hover-Effekt */
#spende:hover {
    border-color: #267300;  /* Rahmenfarbe bei Hover */
    box-shadow: 0 0 5px rgba(51, 153, 0, 0.5); /* Schattierung bei Hover */
}

/* Fokus-Effekt */
#spende:focus {
    border-color: #267300;  /* Rahmenfarbe bei Fokus */
    box-shadow: 0 0 8px rgba(51, 153, 0, 0.7); /* Schattierung bei Fokus */
}

/* Pfeil nach unten */
#spende::-ms-expand {
    display: none;          /* Entfernt Pfeil für Internet Explorer */
}


/* Vertikale Ausrichtung ab einer Breite von 820px */
@media (max-width: 820px) {
    .spenden {
        margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
        position: relative; /* Damit es nach oben verschoben werden kann */
        top: -50px; /* Verschiebt das div nach oben */
        z-index: 10; /* Stellt sicher, dass das div andere Elemente überlagert */
        max-width: 100%; /* Vollbild-Breite auf kleineren Geräten */
        padding: 0px;
    }

    .container-box {
        flex-direction: column;
        align-items: left;
    }

    .box {
        margin-bottom: 20px;
    }
}



.projekte, .mitmachen {
    max-width: 960px;
    margin: 0 auto; 
    padding: 0px 60px 0px 60px; 
    position: relative; 
    top: -50px; 
    z-index: 10; 
}

.projekte, .mitmachen h2 {
    font-size: 32pt; /* Überschriftgröße */
    margin-bottom: 20px; /* Abstand zwischen Überschrift und Text */
}

.mitmachen h3 {
    font-size: 24pt; /* Überschriftgröße */
    margin-bottom: 20px; /* Abstand zwischen Überschrift und Text */

}

.projekte h3 {
    margin-top: 20px;

}

.projekte, .mitmachen p {
    margin-bottom: 15px; /* Abstand zwischen Überschrift und Text */
}

.spenden p {
    font-size: 12pt;
    margin-bottom: 15px;
    margin-top: 15px;
}


/* Vertikale Ausrichtung ab einer Breite von 820px */
@media (max-width: 820px) {
    .mitmachen, .projekte {
        margin: 0 auto; /* Zentriert den Abschnitt bei größeren Bildschirmen */
        position: relative; /* Damit es nach oben verschoben werden kann */
        top: -50px; /* Verschiebt das div nach oben */
        z-index: 10; /* Stellt sicher, dass das div andere Elemente überlagert */
        max-width: 100%; /* Vollbild-Breite auf kleineren Geräten */
        padding: 0px;
    }

}






form {
    display: flex;
    flex-direction: column; /* Anordnung der Elemente in einer Spalte */
    gap: 0px; /* Abstand zwischen den Formularfeldern */
}

.input-text {
    font-size: 16px; /* Schriftgröße der Labels */
}

.form-button {
    background-color: #336600; /* Hintergrundfarbe des Buttons */
    color: white; /* Schriftfarbe */
    border: 1px solid #336600; /* Kein Rahmen */
    border-radius: 5px; /* Abgerundete Ecken */
    padding: 10px; /* Innenabstand */
    font-size: 16px; /* Schriftgröße */
    cursor: pointer; /* Cursor zeigt an, dass es klickbar ist */
    transition: background-color 0.3s ease; /* Sanfter Übergang */
}

.form-button:hover {
    background-color: #ffffff; /* Dunklere Farbe bei Hover */
    color: #336600;
    border:  1px solid #336600;
}

.required {
    color: #33660; /* Farbe für das Pflichtfeld-Sternchen */
    font-weight: bold; /* Fettgedruckte Schrift */
    margin-left: 5px; /* Abstand zwischen Label und Sternchen */
}

.content-container {
      max-width: 820px;
      margin: 0px;
      overflow: hidden;
    }

.content-container img {
      width: 100%;
      height: auto;
      padding-bottom: 10px;
    }

    .text-container {
      display: flex;
      flex-wrap: wrap;
      padding: 0px;
      gap: 20px;
    }

    .text-column {
      flex: 1 1 calc(50% - 20px);
    }

    /* Medienabfrage für Smartphone */
    @media (max-width: 820px) {
      .text-column {
        flex: 1 1 100%;
      }
    }



/* -------------------------
   Galerie
   ------------------------- */


.gallery {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 0px 0px 20px 0px;
}

.gallery img {
    width: calc(33.333% - 10px);
    border-radius: 0px;
    padding-bottom: 0px;
}

@media (max-width: 820px) {
.gallery img {
    width: calc(50% - 10px);
    }
      
}

@media (max-width: 480px) {
.gallery img {
    width: 100%;
    }
}

/* -------------------------
   Consent
   ------------------------- */

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  color: #fff;
  padding: 15px 10px;
  display: flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  z-index: 1000;
  text-align: center;
  font-size: 14px;
}

.consent-banner p {
  margin: 0 0 15px 0; 
  padding: 0;
  text-align: center;
  text-transform: none;
}

.consent-banner button {
  background-color: #336600;
  background-color: #336600; 
  color: white; 
  border: none; 
  border-radius: 5px; 
  font-size: 12pt; 
  cursor: pointer; 
  transition: background-color 0.3s ease; 
  text-transform: none; 
  text-decoration: none; 
  font-weight: normal;
  border: none;
  padding: 10px 20px;
  margin: 5px 0;
  width: 90%; 
}

.consent-banner button:hover {
  background-color: #fff;
  color: #336600;;
}

@media (min-width: 820px) {
  .consent-banner {
    flex-direction: row; 
    padding: 20px 40px 20px 20px;
  }

  .consent-banner button {
    margin-left: 10px;
    width: auto; 
    background-color: #336600; 
    color: white; 
    border: none; 
    border-radius: 5px; 
    font-size: 12pt; 
    cursor: pointer; 
    transition: background-color 0.3s ease; 
    text-transform: none; 
    text-decoration: none; 
    font-weight: normal;
    height: 100%;
  }

  .consent-banner p {
    padding-right: 15px;
    margin: 0px;
    text-transform: none;
  }
}