:root {
    --headings-color: #87c029;
    --divider-color: #87c029;
    --logo-color: #497de6;
    --slogan-color: #7db61ff7;
    --links-color: #87c029;
    --links-hover-color: #87c029;

    --navigation-bg-color: #00a2dccc;
    --navigation-color: #ffffff;

    --capacity-bg-color: #7db61fcc;
    --capacity-color: #ffffff;

    --page-bg-color: #d5e9b4;

    --main-bg-color: #ffffff;
    --main-color: #333333;

    --footer-color: #ffffff;
    --footer-bg-color: #00a2dc;

    --image-main-bg-mobile: url('/theme/images/background.jpg?device=mobile&v=1753479840');
    --image-main-bg-mobile-webp: url('/theme/images/background.webp?device=mobile&v=1753479840');
    --image-main-bg-desktop: url('/theme/images/background.jpg?device=desktop&v=1753479840');
    --image-main-bg-desktop-webp: url('/theme/images/background.webp?device=desktop&v=1753479840');
    --image-divider: url('');

    /* Farben, die nicht konfiguriert sind: */
    --footer-link-color: #ffffff;
    --footer-link-hover-color: #ffffffb2; /* ~ 0.7 transparent */

    /* Webkit */
    /*--webkit-image-border-color: #999999;*/
    --webkit-image-border-color: #87c029;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    /*height: 100%;*/
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}

/* Theme-3 */

body {
    background-image: none;
    background-color: var(--page-bg-color);
    color: var(--main-color);

    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

a, a:visited {
    color: var(--links-color);
    text-decoration: none;
}
a:active, a:hover {
    color: var(--links-hover-color);
    text-decoration: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ================================ */
/* 	   	  Background Image			*/
/* ================================ */

body {
    background-position: center top;
    background-size: contain;
    background-attachment: fixed;
}
.no-webp body,
.no-js body {
    background-image: var(--image-main-bg-mobile);
}
.webp body {
    background-image: var(--image-main-bg-mobile-webp);
}

@media (min-width: 768px) {

            body {
            background-attachment: fixed;
            background-size: cover;
            background-repeat: no-repeat;
        }
    
        .no-webp body,
    .no-js body {
        background-image: var(--image-main-bg-desktop);
    }
    .webp body {
        background-image: var(--image-main-bg-desktop-webp);
    }
    }

header {
    min-height: 380px;
}


/* ================================ */
/* 	   	   	  Navigation			*/
/* ================================ */

nav {
    color: var(--navigation-color);
    font-size: 12pt;
    text-align: center;

    /*background-color: var(--navigation-bg-color);*/
    border-radius: 0;

    margin-bottom: 0;
}
@media (max-width: 768px) {
    nav {
        background-color: transparent;
    }
}
.navbar-toggle {
    border-color: transparent;
    background-color: var(--navigation-bg-color);
    border-radius: 0;
    margin-right: 0;
    margin-top: 0;
}
.navbar-toggle .icon-bar {
    background-color: var(--navigation-color);
}
.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 6px;
}
.navbar-absolute {
    position: absolute;
    top: 3em;
}
.navbar-nav {
    float: none;
    margin: 0 auto;
    padding: 0;
    display: table;
    table-layout: fixed;
}
.navbar-nav li {
    float: none;
    display: inline-block;

    padding: 0 10px;
    margin: 0;
}
@media (max-width: 768px) {
    .navbar-nav {
        width: 100%;
    }
    .navbar-nav li {
        background-color: var(--navigation-bg-color);
        /*background-color: transparent;*/
    }
}
.navbar-nav li a {
    line-height: 45px;
    padding: 0;

    color: inherit;
}
@media (max-width: 768px) {
    .navbar-nav li {
        display: block;
    }
    .navbar-nav li a {
        line-height: 2.5em;
    }
}
.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus {
    background-color: transparent;

    color: inherit;
    text-decoration: underline;
}
.navbar-nav > li > a {
    text-shadow: none;
}

/* ================================ */
/* 	   	   	   Layout 				*/
/* ================================ */

nav-wrapper,
nav-wrapper-alignment,
section,
section-alignment {
    display: flow-root; /* creates new bfc for padding/margin inside*/
}
nav-wrapper > nav-wrapper-alignment {
    background-color: transparent;
}
@media (min-width: 768px) {
    nav-wrapper > nav-wrapper-alignment {
        background-color: var(--navigation-bg-color);
    }
}
.fullcolor nav-wrapper {
    background-color: transparent;
}
@media (min-width: 768px) {
    .fullcolor nav-wrapper {
        background-color: var(--navigation-bg-color);
    }
}
.fullcolor nav-wrapper > nav-wrapper-alignment {
    background-color: transparent;
}

/* ---- header + section + footer ---- */
/* (layout logic only!!!) */
nav-wrapper-alignment,
section-alignment,
footer > section {
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 576px) {
    nav-wrapper-alignment,
    section-alignment,
    footer > section {
        /*max-width: 540px;*/
    }
}
@media (min-width: 768px) {
    nav-wrapper-alignment,
    section-alignment,
    footer > section {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    nav-wrapper-alignment,
    section-alignment,
    footer > section {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    nav-wrapper-alignment,
    section-alignment,
    footer > section {
        max-width: 1100px;
    }
}


/* ---- logo-container ---- */
/* (layout logic only!!!) */

logo-container {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 380px;
}
logo-container > div {
    display: inline-block;

    padding: 10px 10px 40px 10px;
}
@media (min-width: 768px) {
    logo-container > div {
        padding: 40px 20px;
    }
}
logo-container > div a,
logo-container > div a:visited,
logo-container > div a:hover {
    color: inherit;
    text-decoration: none;
}


/* ---- footer ---- */
/* (layout logic only!!!) */

footer > section {
    padding: 1rem 0;
}
footer > section > section-alignment {
    padding: 1rem 2rem;
    text-align: center;
}
footer > section > section-alignment:first-child > div:last-child > div {
    margin-top: 2rem;
}
footer > section > section-alignment:first-child > div:last-child > div .map {
    margin: 0 auto;
}
@media (min-width: 768px) {
    footer > section > section-alignment:first-child {
        display: flex;
    }
    footer > section > section-alignment:first-child > div {
        flex: 1;

        text-align: left;
    }
    footer > section > section-alignment:first-child > div:last-child {
        flex: 0 0 300px;

        margin-top: 0;
        text-align: left;
    }
    footer > section > section-alignment:first-child > div:last-child > div {
        margin-top: 0;
    }
}



/* ================================ */
/* 	   	   	   Content 				*/
/* ================================ */


/* ---- logo-container ---- */
/* (color + font only) */

logo-container {
    color: var(--logo-color);
    text-align: center;
}

logo-container h1 {
    margin: 0 0 .5rem 0;
    padding: 0;

    font-size: 2.4rem;
    line-height: 3rem;
}
logo-container .slogan {
    color: var(--slogan-color);
    font-size: 1.1rem;
    line-height: 2rem;
}
@media (min-width: 768px) {
    logo-container h1 {
        margin: 0;
        padding: 0;

        font-size: 3rem;
        line-height: 3.5rem;
    }
    logo-container .slogan {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

/* image size control */
logo-container.image img {
    height: 250px;
    /*max-height: 250px;*/
    max-width: 90%;
}
@media (min-width: 768px) {
    logo-container.image img {
        height: 250px;
        /*max-height: 250px;*/
        max-width: 90%;
    }
}


/* ---- capacity ---- */
/* (color + font only) */

header > section.capacity > *	{
    color: var(--capacity-color) !important;

    font-size: 1rem;
    line-height: 1.7;

    text-align: center;
}
@media (min-width: 768px) {

    header > section.capacity > *	{
        font-size: 1.3rem;
        line-height: 1.7;
    }
}

header > section.capacity > section-alignment > div {
    padding: 1rem;
}

/* fullcolor rows */
header > section.capacity {
    background-color: transparent;
}
header > section.capacity > section-alignment {
    background-color: var(--capacity-bg-color);
}
.fullcolor header > section.capacity {
    background-color: var(--capacity-bg-color);
}
.fullcolor header > section.capacity > section-alignment {
    background-color: transparent;
}

/* ---- section ---- */
/* (color + font only) */

main > section > * {
    color: var(--main-color);
}

main > section h2,
main > section h3,
main > section h4 {
    color: var(--headings-color);
    font-weight: normal;
}

main > section h2 {
    font-size: 1.6rem;
    line-height: 1.3;
}
main > section h3 {
    font-size: 1.4rem;
    line-height: 1.3;
}
main > section h4 {
    font-size: 1.2rem;
    line-height: 1.3;
}
main > section > * {
    background-color: var(--main-bg-color);
}

/* fullcolor rows */
.fullcolor main > section {
    background-color: var(--main-bg-color);
}
.fullcolor main > section > * {
    background-color: transparent;
}

/* margin */
main > section > section-alignment {
    padding: 1rem 1rem;
}
@media (min-width: 768px) {
    main > section > section-alignment {
        padding: 1rem 2rem;
    }
}

/* ---- footer ---- */
/* (color + font only) */

footer {
    color: var(--footer-color) !important;
    font-weight: 300;
}
footer a, footer a:visited {
    color: var(--footer-link-color) !important;
}
footer a:hover, footer a:focus {
    color: var(--footer-link-hover-color) !important;
}
footer .name {
    display: inline-block;
    font-size: 1.3rem;
    padding: 0 0 .6rem 0;
}
footer .phone {
    display: inline-block;
    font-size: 1.1rem;
    padding: .6rem 0;
}
footer .social a, footer .social a:visited {
    border: 1px solid var(--footer-link-color);
    padding: 2px 9px;
    border-radius: 7px;
}
footer .social a:hover, footer .social a:focus {
    border-color: var(--footer-link-hover-color);
}
footer ul.social {
    display: inline;
    margin: 0;
    padding: 0;
}
footer .social li {
    display: inline;
    margin-left: .5em;
}

footer > section > section-alignment:last-child {
    font-size: .9em;
}

/* fullcolor rows */
footer {
    background-color: transparent;
}
footer > section {
    background-color: var(--footer-bg-color);
}

.fullcolor footer {
    background-color: var(--footer-bg-color);
}
.fullcolor footer > section {
    background-color: transparent;
}


/* ================================ */
/* 	   	   	   Webkit 				*/
/* ================================ */

webkit-module.WebkitDivider wk-body hr {
    border-bottom: 1px solid var(--divider-color);
}

webkit-module.WebkitGuestbook .pagination > .active > a {
    background-color: var(--links-color);
    border-color: var(--links-color);
}
webkit-module.WebkitGuestbook .pagination > li:not(.active) > a {
    color: var(--links-color);
}