
/*Navbar Dropdows*/

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.ddbutton {    
    border: 0;
    padding: 0; 
    background: transparent; 
    cursor: pointer; 
    line-height: 1;
    color: inherit;
    font-family: "Euclid Circular A"; 
}

@media (width >= 725px) { 
    .ddbutton { font-size: 20px; } 
}


:is(.navbar, .burger, .dropdowns) { 
    position: fixed; 
    width: 100%;
    top: 0;
}

.navbar {
    z-index: 1;
    left: 0; 
    display: flex;
    align-items: stretch; 
    height: 72px;
    background: var(--color-secondary); 
    color: var(--font-color);
} 

.burger {
    z-index: 3;
    top: 22px; 
    right: 0;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px; 
    background-image: url("svg/menu.svg");
    background-repeat: no-repeat; 
    background-position: center;
}
body.open .burger {
    background-image: url("svg/close.svg"); 
}
@media (width >= 725px) {
    .burger { display: none; } 
}

.button {
    display: flex; 
    align-items: center; 
    gap: 4px; 
    padding: 0 24px; 
    height: 100%; 
    opacity: 0.6;
    font-size: 22px;
}

.button > img { 
    display: none; 
}
@media (width >= 725px) {
    .button { 
        padding: 0 10px 0 24px; 
    } 
    .button> img { 
        display: block; 
    } 
}
@media (width >= 725px) {
    .dropdown:hover .button {
        opacity: 1; 
    } 
}
.dropdown {
    position: relative;
    display: flex;
    align-items: center; 
    flex-direction: column; 
}

.dropdowns {
    left:-9999px;
    z-index: 2;
    height: 100%;
    display: flex; 
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary); 
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility; transition-duration: 0.3s;
}
@media (width < 725px) { 
    body.open .dropdowns { 
        opacity: 1; 
        visibility: visible; 
        left: 0;
    }
    /* .dropdown-top{
        font-size: 25px;
    } */ 
}
@media (width >= 725px) {
    .dropdowns {
        position: static;
        flex-direction: row; 
        justify-content: flex-start;
        background: transparent;
        opacity: 1;    
        visibility: visible;
    }
}

@media (width >= 725px) { 
    .dropdown { 
        flex-direction: row; 
        height: 100%;
    }
    .dropdown-menu {
        top: 72px;
        left: 0;
        position: absolute; 
        width: 180px; 
        padding: 6px 24px 10px; 
        margin-bottom: 0; 
        place-items: start; 
        background: var(--color-secondary); 
        translate: 0 24px; 
        transition: 0.3s; 
        opacity: 0;
        visibility: hidden;
        border-radius: 0 0 10px 10px;
    }
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible; 
        translate: 0 0;
    }
}

.dropdown-menu { 
    display: grid; 
    margin-bottom: 28px;
}

.dropdown-menu > button { 
    height: 40px;
    color: var(--font-color);
    opacity: 1; 
}

@media (width >= 725px) {
    .dropdown-menu > button { 
        opacity: 0.6;
    }
    .dropdown:hover .button {
        opacity: 1;
    }
}

.dropdown-menu > button:hover {
    opacity: 1;
}

.placeholder {
    height: 90px;
    width: 100%;
    gap: 72px 72px;
    margin-bottom: 22px;
}

/*Navbar Theme toggle*/

.container {
    display: flex;
    width: 100%; 
    height: 100%;
    background: var(--color-secondary);
    flex-direction: column; 
    justify-content: center;
    align-items: center;
}

.container button {
    color: var(--font-color);
    background: var(--color-primary);
    padding: 10px 20px;
    border: 0;
    border-radius: 5px;
}
/* The switch the box around the slider */
.switch {
    position: absolute;
    display: inline-block;
    width: 60px; 
    height: 34px;
} 
@media (width > 725px) {
    .switch {
        right: 21px;
    }
}
@media (width <= 725px) {
    .switch{
        right: 72px;
    }
}

/* Hide default HTML checkbox */

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
} 
#cart-icon{
    position: absolute;
    width: 42px;
    height: 72px;
    top: 22px;
    right: 98px;
    bottom: 0;
    cursor: pointer;
}

#shopping-cart {
    background:var(--color-secondary) url('SVG/cart.svg');
    position: absolute;
    width: 75px;
    height: 72px;
    top: 22px;
    right: 87px;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
  }

@media (width <= 725px) {
    #shopping-cart {
        right: 125px;
    }
}

#guest-book {
    background:var(--color-secondary) url('SVG/thumbs-up-line-icon.svg');
    position: absolute;
    width: 50px;
    height: 50px;
    top: 30px;
    right: 160px;
    bottom: 0;
    background-position: center;
    background-repeat: no-repeat;
    display: grid;
    place-items: center;
    color: var(--font-color);
  }

@media (width <= 725px) {
    #guest-book {
        right: 190px;
    }
}
/* The slider */

.slider {
    position: absolute; 
    cursor: pointer;
    top: 0;
    left: 0; 
    bottom: 0;
    right: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content:"";
    height: 30px;
    width: 30px; left: 0px;
    bottom: 4px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    -webkit-transition: 0.4s; 
    transition: 0.4s;
    box-shadow: 0px 4px #2020203d;
    background: rgb(255, 255, 255) url('svg/sun.svg');
    background-repeat: no-repeat; 
    background-position: center;
    background-size: 80%;
} 
input:checked + .slider {
    background-color: #2f3438;
}
input:focus + .slider { 
    box-shadow: 0 0 1px #2f3438;
}
input:checked + .slider:before { 
    -webkit-transform: translatex(29px);
    -ms-transform: translateX(29px);
    transform: translatex(29px);
    background: rgb(150, 150, 150) url('svg/moon.svg');
    background-repeat: no-repeat; 
    background-position: center;
    background-size: 80%;
}
.slider.round{
    border-radius: 34px;
}
.slider.round:before { 
    border-radius: 50%;
}

#HomeIcon {
    height: 70px;
    padding-left: 25px;
    padding-top: 0px;
    }

/* Footer */







body, html {
    margin: 0;
    height: 100%;
    background-color: var(--background-color);
}
h1,p {
    margin-left: 5pt; 
}
h1 {
    color: var(--font-color);
}

.dropdown-link {
    text-decoration: none;
    color: var(--font-color);
    border: 0;
    padding: 0;  
    opacity: 0.6;
}

@media (width >= 725px) {
    .dropdown-link {
        padding: 12px 5px;
    }
    .dropdown-link:hover {
        opacity: 1;
    }
}

/*TextBild Überschriften*/

.ÜText {
    position: relative;
    z-index: 1;
    background-color: #FFFFFF; 
    opacity: 0.7;
    top: 0;
}







/*colors*/

.theme-light {
    --color-primary: #0060df;
    --color-secondary: #b4b4b4; /*c8c8c9*/
    --color-accent: #52796f;
    --font-color: #000000;
    --background-color: rgb(219, 221, 217);
}

.theme-dark {
    --color-primary: #17ed90; 
    --color-secondary: #19191c;/*19191c*/
    --color-accent: #52796F; 
    --font-color: #ffffff;
    --background-color: #FFFFFF;
}

body{
    display: flex;
    flex-direction: column;
}

svg, path{
    position: relative;
    bottom: -5px;
}

.wave {
    align-self: flex-end;
    width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}


/*Zufallsgenaerator*/


.BodyRan{
    display: block;
    background-image: url("Images/Zufallsgenerator-Background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
#Ran{
    display: inline-block;
    outline: 0;
    cursor: pointer;
    border-radius: 6px;
    border: 3px solid #52796F;
    color: #fff;
    background-color: #52796F;
    padding: 8px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px 2px 4px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1.5px 0px;
    font-weight: 800;
    font-size: 22px;
    height: 57.75px; 
    font-family: Noto;
}

#Ran:hover{
    background: 0 0;
    color: #ffffff;
}

.aroundbtn{
    display: grid;
    justify-items: center;
}

.Heading {
    font-size: 10vw;
    margin-bottom: 4vw;
}

.Zufallinfo {
    color: whitesmoke;
    font-size: 1.3vw;
    margin-top: 3vw;
    margin-left: 0;
    text-align: center;
}

/*Routen und einzel Routen*/

.topImg {
    width: 100%;
    height: auto; 
}



.InfoTextRouten {
    color: black;
}

.info {
    background-image: url("SVG/wave-haikei.svg");
    background-size: auto;
    background-repeat: no-repeat;
}

.topimg {
    width: 100%;
    margin-top: 22px;
    border-top: 2em #52796f solid;

}


.smallImgs {
    width: 100%;
    margin-right: 12px;
}


.InfoTextRouten {
    margin-top: 2px;
    padding-right: 15px;
    width: 70%;
    position: relative;
    top: 50%;
    padding: 0 10%;
    font-size: larger;
}
.Routeninfo {
    text-align: center; 
    display: flex;   
    align-items: center;        
}     
.mainbody {
    padding-left: 0;
}
.mainbody::marker {
    position: relative;
    top: 0;
    left: 10px;
    margin-left: 20px;
}


.Überschrift {
    text-align: center;
    margin-bottom: 0;
    margin-top: 30px;
    font-size: 55pt;
    color: #000000;
}

.smallImgsEinzel {
    width: 30%;
    margin-top: 40px;
    margin-left: 20px;
    border-radius: 10%;
}

.InfoTextRoute {
    margin-top: 40px;
    padding-right: 15px;
    width: 70%;
    padding: 0 10%;
    font-size: larger;
}

#EinzelneRouten {
    margin-top: 0;
}

@media (width > 725px) {
    figcaption {
    position: relative;
    bottom: -53%;
    right: 17%;
    font-size: larger;
    font-weight: 200;
}
}

@media (width <= 725px) {
    .smallImgs {
        width: 100%;
    }
    .Routeninfo {
        display: block;
    }
    .InfoTextRouten {
        width: 97%;
        margin-top: 15px;
        padding: 0;
    }
    figcaption {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .smallImgsEinzel {
        margin-left: 0;
    }
}


/* Homepage */

.Homebody {
    overflow-x: hidden;
}
@media (min-width: 0) and (max-width: 767px) {
    p, .body-text {
        font-size: 10px;
   }
    .down-arrow {
        font-size: 20px;
   }
}
@media (min-width: 768px) and (max-width: 991px) {
    p, .body-text {
        font-size: 15px;
   }
    .down-arrow {
        font-size: 30px;
   }
}
.line-separator {
    display: block;
    width: 50%;
    height: 1px;
    text-align: center;
    margin: 20px auto;
    border-bottom: 1px solid grey;
}
.first-wrap {
    height: 100%;
    width: 100vw;
    background: #000000 url("images/Fll.webp") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;
}

.ehrenamt {
	width: 450px;
	
}




.second-wrap {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/ErsteJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;
}
.third-wrap {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/FeuerwehrJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;
}
.fourth-wrap {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/TierJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;
}
.fifth-wrap {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/UmweltJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;
}
.sixth-wrap {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/KulturJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}

.extra1 {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/SchuleJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}
.extra2 {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/FlüchtlingshilfeJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}
.extra3 {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/SportJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}
.extra4 {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/KircheJPG.JPG") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}

.extra5 {
    height: 100%;
    width: 100vw;
    background: #ffffff url("images/seniorenhilfe.jpg") no-repeat fixed;
    background-size: cover;
    background-position: 50% 50%;	
}



.first-div {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: rgb(255, 255, 255, 0.6);
}
.first-div .first-inner-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    color: #fff;
   
}
.first-div .first-inner-div .down-arrow {

    color: #fff;
}
.first-div .first-inner-div p {
    padding: 20px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    background-color: rgba(0,0,0,0.3);
}
.second-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.3);
}
.second-div p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
 
    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.third-div {
   /* display: table;*/
    height: 50vh;
    width: 100vw;
    background-color: transparent;



    display: flex;
  align-items: center;
  justify-content: center;
}
.fourth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.3);
}
.fourth-div p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;

    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.fifth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: transparent;
}
/*marker*/
.sixth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.3);
}
.sixth-div p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
 
    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.seventh-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: transparent;
}
.eighth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.3);
}
.eighth-div p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
   
    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.nineth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: transparent;
}
.tenth-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.3);
}
.tenth-div p {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
 
    letter-spacing: 0.45em;
    text-transform: uppercase;
}
.eleventh-div {
    display: table;
    height: 50vh;
    width: 100vw;
    background-color: transparent;
}

#popup9 {
    height: 48vh;
}

#back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 9999;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 30px;
    background-color: #ffffff;
    color: #000;
    cursor: pointer;
    border: 0;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}

.Inlines {
    text-decoration: none;
    color: white;
	font-size: 40px;
}

.Table {
    
    margin-bottom: 5px;
    width: 100%;
    background-color: #ffffff;
    border-collapse: collapse;
    border-width: 2px;
    border-color: #c3b26f;
    border-style: solid;
    color: #000000;
    
  }

  .table-th {
    border-width: 2px;
    border-color: #c3b26f;
    border-style: solid;
    padding: 3px;
  }

  thead {
    background-color: #344f06;
  }

  #placeholder {
    height: 10px;
  }


  /*----------------------------------------------------------------------------*/

.HW {
    font-size: 57pt;
    padding-left: 20px;
    padding-top: 10%;
    margin-top: 0;
}

.txt {
    font-size: 27pt;
    text-align: center;
    padding: 11%;
    padding-top: 4%;
    padding-bottom: 0;
   /* margin-right: 33%;*/
}



.textblock {
    font-size: 20pt;
    text-align: center;
    padding: 0 5% 0 5%;
}


@media (width <= 820px) {
    .HW{
        font-size: 25pt;
    }
    .txt {
        font-size: 18pt;
    }
    
}


/*Texte in den Kategorien*/


.details {

    width: 50%;
    height: auto;
    margin: auto;
    border: 3px solid #000000;
    border-radius: 5%;
    /*text-align: center;
    vertical-align: middle;*/
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 8fr;
    padding-left: 12px;
    padding-right: 12px;

    color: black;
    background-color: rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px);
    grid-column-gap: 5%;
}


#details8 {
    grid-template-rows: 1fr; 
    padding: 2% 0;
    padding-left: 2%;
}

#details2 {
    grid-template-rows: 1fr; 
    padding: 2% 0;
    padding-left: 2%;
}

#details5 {
    
    grid-template-rows: 1fr; 
    padding: 2% 0;
    padding-left: 2%;
}

#details9 {
    grid-template-rows: 1fr; 
    grid-template-columns: 1fr;
    padding: 2% 0;
    padding-left: 2%;
}

#details6 {
    grid-template-rows: 1fr; 
    grid-template-columns: 1fr;
    padding: 2% 0;
    padding-left: 2%;
}

.partner {
    grid-area: 1 / 2 / 3 / 3;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.innerpartner {
    vertical-align: middle;
    font-size: 18pt;
}
.detail {
    font-size: 22pt;
}

.list {
    font-size: 18pt;
}

.ruck {
    padding-left: 17px;
}

a {
  text-decoration: none;  
}