@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display+SC:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}
a:visited {
    text-decoration: none;
    color: inherit;
}
body {
    overflow: hidden;
    background-color: whitesmoke; /* dunkelgrün #2f4a42; hellbeige #fff6ee*/
    /*background-image: url(./img/transparent-background.png);*/
    background-position: 0 0;
    color: #000000;
    font-family: 'Marcellus', sans-serif;
    overflow-y: scroll;
    overflow-x: hidden;
}

h3 {
    font-weight: normal;


}
.header {
    background-image: url("./img/headerbild.jpg");
    /*background-image: url("./img/P1320988 Kopie.jpg");*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: whitesmoke;
}

.header-box {
    display: flex; /* Aktiviert Flexbox */
    justify-content: center; /* Verteile die Elemente gleichmäßig */
    align-items: center; /* Zentriere die Elemente vertikal */
    padding: 30px 30px; /* Padding für den Header */
    box-sizing: border-box;
}

.slogan {
    display: flex;
    flex-direction: column;
    margin-top: 270px;
    padding: 30px 30px; /* Padding für den Header */
    box-sizing: border-box;
    font-size: 2rem;
    font-weight: bold;
}

@media (max-width: 800px) {
    .slogan {font-size: 24px;}
}

.cite {
    font-size: 16px;
    align-items: end;
    justify-content: flex-end;
    margin-top: auto;
    font-weight: normal;

}

.news:hover {
    font-weight: bold;
}

.title {
    flex: 3;
    text-align: left;
    font-size: 2rem;
    font-family: 'Italiana', sans-serif;
    padding-left: 1rem;
}

@media (max-width: 800px) {
    .title {
        font-size: 24px;
        text-align: center;
    }
    .header-box {
        flex-direction: column;
    }
}

.menu {
    flex: 1;
    font-size: 20px;
    text-align: right;
}

.menu:hover {
    font-weight: bold;
    cursor: pointer;
}

.news {
    flex: 1;
    font-size: 20px;
    text-align: right; /* Zentriere den Text */
}

.about {
    flex: 1;
    font-size: 20px;
    text-align: right; /* Zentriere den Text */
}

.about:hover {
    font-weight: bold;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-img {
    width: 100px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/*ENDE HEADER*/


.intro-box {
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    justify-content: space-between;
    background-color: #E0DBCD; /* #c5c0b5 */
}

.category-header {
    display: flex;
    flex-direction: row;
    padding: 30px 30px;
    justify-content: space-between;
    background-color: #E0DBCD; /* #c5c0b5 */
}

@media (max-width: 800px) {
    .category-header {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .category-title {
        width: 33.3333%;
        padding-bottom: 10px;
    }
}

.overview {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 50px 80px;
    justify-content: space-between;
}

.overview-row-one {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;

}

 @media (max-width: 1000px) {
    .overview-row-one  {
        display: flex;
        flex-direction: column;
        align-items: center;
        }
     .overview-tile  {
         width: 100%;
         min-width: 400px;
     }
 }


.overview-row-two {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .overview-row-two {
            display: flex;
            flex-direction: column;
            align-items: center;
    }
}


.overview-tile {
    display: flex;
    flex-direction: column;
    background-color: #E0DBCD;
    border-radius: 5px;
    width: 33%;
    margin: 20px;
    min-height: 500px;
}

.overview-tile img {
    width: 100%;
    height: 10%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 5px;
}



.tile-img {
    overflow: clip;
    height: 30%;
}

.tile-title {
    font-size: 20px;
    padding: 20px 10px 10px 10px;
}

.tile-text {
    padding: 10px;
}

.tile-button {
    background-color: #162039;
    color: white;
    padding: 20px 10px;
    text-align: right;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: auto;
}

@media (max-width: 800px) {
    .event-box {
        font-size: 12px;
    }
}
/*WERSINDDIEWENDEN*/

.introduction-tile {
    display: flex;
    flex-direction: column;
    background-color: #E0DBCD;
    margin: 50px;
    border-radius: 5px;
}

.text-introduction {
    padding: 10px 20px;
}


.text-introduction-clickbar:hover {
    font-weight: bold;
}

.text-button {
    padding: 10px 20px;
    color: white;
}

.download-button {
    padding: 8px 10px;
    border-radius: 5px;
    color: white;
    background-color: #162039;
}
.download-button:hover {
    font-weight: bold;
}

@media (max-width: 1000px) {
    .two-columns {
        display: flex;
        flex-direction: column;
    }
}

.two-columns {
    display: flex;
    flex-direction: row;
}



.wersind-bild  {
    margin: 10px;
    object-fit: contain;
}
.wersind-img {
    border-radius: 5px;
    max-width: 400px;
    max-height: 400px;
}

/*WERSINDDIEWENDEN ENDE*/
/*WENDENPFADE*/
.main-wendenpfade {
    display: flex;
    flex-direction: row;
    padding: 30px;
    align-items: self-start;
    justify-content: space-between;
}

.wendenpfade-tile {
    display: flex;
    flex-direction: column;
    width: 50%;
    background-color: #E0DBCD;
    margin: 20px;
    border-radius: 5px;
}
@media (max-width: 1000px) {
    .main-wendenpfade {
        display: flex;
        flex-direction: column;
    }
    .wendenpfade-tile {
        width: 100%;
        display: flex;
        flex-direction: column;
        background-color: #E0DBCD;
        margin: 20px;
        border-radius: 5px;
    }
}

.title-blue {
    font-size: 24px;
    background-color: #162039;
    padding: 10px 20px;
    color: #FFFFFF;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.title-normal {
    font-size: 20px;
    margin-bottom: 5px;
}

.text-wendenpfade {
    padding: 10px 20px;
}

.wendenpfade-tile video {
    padding: 10px 20px;
    object-fit: cover;
}

.wendenpfade-tile img {
    padding: 10px 20px;
    object-fit: cover;
}

.line-break {
    border-bottom: #ada79b 2px solid;
    margin-bottom: 20px;
}

.img-inbox img{
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* optional: steuert die Bildanpassung */
    }

/*WENDENPFADE ENDE*/

/*SPRACHE*/
.main-sprache {
    display: flex;
    flex-direction: row;
    padding: 30px;
    align-items: self-start;
    justify-content: space-between;
}
@media (max-width: 1300px) {
    .main-sprache {
        display: flex;
        flex-direction: column;
        padding: 30px;
        align-items: self-start;
        justify-content: space-between;
    }
    .pdf-box {
        width: 500px;
    }
}

.sprache-bild {
    max-width: 500px;
}

/*SPRACHE ENDE*/




.h1-main {
    font-size: 2rem;
    padding-bottom: 20px;
}

.text-box-for-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 1000px) {
    .text-box-for-columns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }

    .text-column {
        margin-bottom: 10px;
    }
}

.text-column {
    flex: 1;
    justify-content: space-between;
    padding-right: 30px;
}

strong {
    font-weight: bold;
}


/*.category-box-one {
    display: flex;
    flex-direction: row;
    padding: 0px 80px 0px 80px;
    background: whitesmoke;
    gap: 2rem;
}

.category-box-two {
    display: flex;
    flex-direction: row;
    padding: 0px 80px 0px 80px;
    background: #dfdede;
    gap: 2rem;
}


.text-box-for-rows {
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}


.text-teaser {
}

.more-button {
    margin: 60px 15px 15px 15px;
    padding: 10px;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    background: #162039;
    border-radius: 10px;
}

.category-img {
    flex: 1;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 30px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
}

.img-square {
    height: auto;
    width: auto;
    border-radius: 15%;
}
*/

.event-box-end {
    padding: 10px;
    
    background-color: #162039;
}

.event-box {
    display: flex;
    flex-direction: column;
    padding: 30px 100px; /* Padding für den Header */
    justify-content: space-between;
    background-color: #162039;
}

.event-box-for-columns {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background: #162039;
    color: whitesmoke;
}

.event-h2 {
    flex: 1;
    justify-content: space-between;
    padding-right: 10px;
    font-size: larger;
}

.event-column {
    flex: 1;
    justify-content: space-between;
    padding-right: 10px;
    font-size: larger;
}

.contact-box {
    padding: 30px 30px;
    justify-content: space-between;
    background: #E0DBCD;
}

.contact-box-for-rows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;

}

.contact-h1 {
    justify-content: space-between;
    align-items: center;
    width: 50%;
    font-size: larger;
    text-align: center;
}

.contact-info {
    justify-content: space-between;
    align-items: center;
    width: 50%;
    text-align: center;
}


.footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-size: larger;
    background-color: #162039; /*#1b1b1b */
    padding: 60px 100px;
    color: floralwhite;
}

@media (max-width: 1000px) {
    .footer-box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .footer-left {
        padding: 10px;
        margin-left: 0px;
        text-align: center;
    }

    .footer-right {
        padding: 10px;
        text-align: center;
    }
}

.footer-left {
    width: 50%;
    text-align: left;
    justify-content: center;
}

.footer-right {
    width: 50%;
    text-align: left;
    vertical-align: text-top;
    justify-content: right;
}

.footer-name {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 1000px) {
    .footer-name {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.footer-logo {
    max-height: 90px;
}

.footer-title {
    font-size: larger;
    padding: 0px 0px;
}

.about-box-for-columns {
    display: flex;
    flex-direction: row;
}

.text-box-about {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: #E0DBCD; /* #c5c0b5 */
    max-width: 1400px;
}

.about-img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
}

.text-box-impressum {
    display: flex;
    flex-direction: column;
    background-color: #E0DBCD;
    gap: 1rem;
}

.color-block {
    padding: 40px;
    color: #162039;
}

.box-subpage-title {
    padding: 0px 0px;
    display: flex;
    flex-direction: column;
}

.subpage-title {
    font-size: 2rem;
    padding-bottom: 20px;
}

.content-box {
    display: flex;
    flex-direction: row;
    padding: 0px 100px 0px 30px;
    background: whitesmoke;
    gap: 2rem;
}

.text-box-subpage {
    display: flex;
    flex: 2;
    flex-direction: column;
    justify-content: left;
    align-items: flex-start;
    margin-top: 30px;
}

.pdf-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 5%;
    padding: 20px;
}

.pdf-box embed {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/*Hier Button*/


.toggle-btn {
    font-family: 'Marcellus', sans-serif;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    background: whitesmoke;
    color: #000000;
    border: none;
}

.drop-down-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #f1f1f1;
}

.drop-down-content.open {
    max-height: 100%; /* Höhe anpassen je nach Inhalt */
    padding: 10px;
}