/* General styles */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: var(--main-fontfamily), sans-serif;
    margin: 0;
    padding: 0;
    color: var(--font-color);
    background-color: #f4f4f4;
    background-color: #ffffff;
    font-size: var(--font-size);
    line-height: var(--line-height);
    overflow-x: hidden;
}

@media (max-width: 600px) {
    body {
        font-size: var(--font-size-mob);
        line-height: var(--line-height-mob);
    }
}

h1 {
    font-size: 3.3em;
    line-height: 1em;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.8em;
    line-height: 1.1em;
    margin-bottom: 10px;
}

h3 {
    font-size: 1.95em;
    line-height: 1.3em;
    margin-bottom: 20px;
}

h4 {
    font-size: 1.3em;
    line-height: 1.3em;
}

h1, h2, h3, h4 {
    color: var(--heading-color);
    font-family: var(--head-fontfamily), sans-serif;

}
.parkhaus {
    display: inline-block;
    background-color: #0082C8;
    color: #fff;
    font-weight: bold;
    margin-right: 5px;
    padding: 0px 7px;
    border-radius: 3px;
}
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
        line-height: 1em;
        margin-bottom: 10px;
    }

    h2 {
        font-size: 1.8em;
    }

    h3 {
        font-size: 1.5em;
    }
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--green);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover,
a:hover:before {
    background: linear-gradient(to right, var(--green), var(--yellow)) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important; /* Wichtig, damit der Text transparent ist */
    text-decoration: underline;
}

a.buttonLink {
    background-color: var(--primary-brown);
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    color: #fff;
    font-weight: 800;
    font-size: 1.2em;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-decoration: none;
}

a.buttonLink:hover {
    display: inline-block;
    border-radius: 8px;
    color: #fff !important;
    -webkit-text-fill-color: unset !important;
}

.buttonLink.link-external {
    padding-left: 50px;
}

.buttonLink.link-external:before {
    left: 20px;
    color: #fff !important;
    -webkit-text-fill-color: #ffffff !important;
}




ul.list li {
  list-style: none;
  margin-bottom: 10px;
  position: relative; 
}


ul.list li::before {
  content: "\f054";
  position: absolute;
  margin-left: -16px;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.7em;
  margin-top: 0;
  left: 0;
  top: 0;
}


ul.check li::before {
  content: "\f00c";
  margin-left: -19px;
}



li .nav-link.link-external {
    padding-right: 30px;
}

@media (max-width: 1450px) {
    li .nav-link.link-external {
        padding-right: 25px;
    }
}

li .nav-link.link-external:before {
    left: auto;
    right: 0;
    font-size: 0.7em;
}

li li .nav-link.link-external {
    padding-right: 55px;
}

@media (max-width: 1450px) {
    li li .nav-link.link-external {
        padding-right: 50px;
    }
}

li li .nav-link.link-external:before {
    right: 30px;
}

.link-mail, .link-map, .link-phone, .link-download, .link-external {
    position: relative;
    padding-left: 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.link-mail:before, .link-map:before, .link-phone:before, .link-download:before, .link-external:before {
    position: absolute;
    left: 0;
    content: "";
    font-family: "Font Awesome 6 Free";
}

.link-external:before {
    content: "\f08e";
    font-weight: 900;
}

h2 a.link-external,
h3 a.link-external {
    padding-left: 40px;
}

.highlight a.link-external {
    padding-left: 35px;
}

.highlight {
    font-size: 1.5em;
    line-height: 1.3em;
    margin-bottom: 10px;
}

@media (max-width: 600px) {
    .highlight {
        font-size: 1.5em;
    }
}

img {
    max-width: 100%;
    height: auto;
    caret-color: transparent;
}

.wrap {
    padding-left: 40px;
    padding-right: 40px;

    margin-top: 100px;
    margin-bottom: 100px;
}

@media (max-width: 600px) {
    .wrap {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.centerIt {
    margin: 0 auto;
    max-width: 1400px;
}

.centerIt.smallContent{
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-right {
    text-align: right;
}

.gradient-text {
    background: linear-gradient(to right, var(--green), var(--yellow)) !important;
    -webkit-background-clip: text !important;
/*    -webkit-text-fill-color: transparent !important;*/
    background-clip: text !important;
    color: transparent !important; /* Wichtig, damit der Text transparent ist */
}

.mobile {
    display: none;
}

@media (max-width: 600px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
}

/* Header */
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#logo {
    position: relative;
    margin: 40px 0 0 50px;
}

#logo:before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    position: absolute;
    width: 238%;
    background: var(--primary-brown);
    border-radius: 50%;
    z-index: -1;
    right: -67%;
    bottom: -75%;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.header-container img {
    height: 118px;

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

@media (max-width: 1400px) {
    .header-container img {
        height: 8vw;
    }

    #logo {
        margin: 1vw 0 0 2vw;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: fixed;
    top: 30px;
    right: 40px;
    font-size: 1.6em;
}

.header-icons a {
    color: white;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin: 6px 2px 0;
}

.header-icons a:hover {
    text-shadow: none;
}

.header-icons .termin span {
    display: block;
    position: absolute;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: -5px;
    color: inherit;
    background: inherit;
}

.header-icons a.termin {
    position: absolute;
    right: -4px;
    top: 110px;
}

.openNav a.termin {
    display: none;
}

.burger-menu {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
}

.stick .header-container,
.subsite .header-container {
    padding: 10px 0 6px 40px;
}

.stick .header-icons,
.subsite .header-icons {
    top: 22px;
}

.stick .header-icons a,
.subsite .header-icons a {
    text-shadow: none;
}

.stick .header-icons a.termin,
.subsite .header-icons a.termin {
    color: var(--green);
    text-shadow: none;
}

.stick .fixed-header,
.subsite .fixed-header {
    background-color: var(--primary-brown);
    box-shadow: 0 0 10px;
}

.stick #logo:before,
.subsite #logo:before {
    bottom: 0;
    right: 0;
}

.stick #logo,
.subsite #logo {
    margin: 0;
}

.stick .header-container img,
.subsite .header-container img {
    height: 58px;
}

/*@media (max-width: 1000px) {*/
    .header-icons {
        right: 110px;
    }

    .header-icons a.termin {
        right: -64px;
    }
/*}*/

@media (max-width: 600px) {
    .header-container,
    .stick .header-container,
    .subsite .header-container {
        padding: 10px 20px 10px 20px;
    }
    
    .header-icons a {
        text-shadow: none;
    }

    .header-icons .termin span {margin-left: -7px;}

    .header-icons,
    .stick .header-icons,
    .subsite .header-icons {
        top: 0px;
    }

    .header-icons a.termin {
        color: var(--green);
        text-shadow: none;
        right: 10px;
    }

    .fixed-header {
        background-color: var(--primary-brown);
        box-shadow: 0 0 10px;
    }

    #logo:before {
        bottom: 0;
        right: 0;
    }

    #logo {
        margin: -30px 0 0 !important;
        width: 100%;
        justify-content: center;
        align-items: center;
        display: flex;
        order: 1;
    }

    .header-container {
        flex-flow: row wrap;
    }

    .header-icons {
        right: 0;
        width: 100%;
        position: relative;
        top: 0;
    }

    .header-container img {
        height: 58px;
    }
}

section {
    float: left;
    width: 100%;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
}

.subsite .banner-section {
    aspect-ratio: 4 / 1;
}

.banner-section .imgWrap,
.banner-section figure.image {
    height: 100%;
}

.banner-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-text {
    padding: 20px 50px;
    position: absolute;
    bottom: 50px;
    right: 0;
    color: white;
    text-align: right;
    background: linear-gradient(to right, 
        rgba(var(--primary-brown-rgb), 0),   /* vollständig transparent */
        rgba(var(--primary-brown-rgb), 1) 50%,  /* 50% Deckkraft in der Mitte */
        rgba(var(--primary-brown-rgb), 1) 100%);
}

.banner-text .headline {
    font-size: 3.5em;
    line-height: 1em;
    font-weight: 800;
}

.banner-text p {
    font-size: 1.7em;
    line-height: 1.3em;
    font-weight: 800;
}

@media (max-width: 1600px) {
    .banner-text {
        font-size: 1vw;
    }

    .banner-text p{
        margin-bottom: 1vw;
    }
}

@media (max-width: 1000px) {
    .banner-text {
        font-size: 1.5vw;
        padding: 3vw 2vw 1vw;
        bottom: 5vw;
    }

    .banner-text p{
        margin-bottom: 1.5vw;
    }
}

@media (max-width: 1000px) {
    .banner-section {
        aspect-ratio: 1 / 1;
    }
}

/* Navigation Section */
.navigation-section {
    background-color: var(--primary-brown);
    padding: 1rem;
    position: relative;
    text-align: center;
    font-size: 1.5em;
    z-index: 1;
}

.navigation-section nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.navigation-section nav ul li .nav-link {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.navigation-section nav ul li ul {
    display: none;
    position: absolute;
    text-align: left;
    background: rgba(var(--primary-brown-rgb), 0.8);
    padding: 30px 20px 10px;
    margin-left: -20px;
    -webkit-border-bottom-right-radius: 10px;
    -webkit-border-bottom-left-radius: 10px;
    -moz-border-radius-bottomright: 10px;
    -moz-border-radius-bottomleft: 10px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.navigation-section nav ul li ul li {
    margin-bottom: 10px;
}

.navigation-section nav ul li ul li .nav-link {
    font-weight: normal;
    font-size: 0.8em;
    white-space: normal;
}

.navigation-section nav ul li ul li .nav-link:hover {
    color: var(--yellow) !important;
    -webkit-text-fill-color: yellow !important;
}

.navigation-section nav ul li ul li .nav-link:hover:before {
    display: none !important;
}

.navigation-section nav ul li:hover ul {
    display: block;
}

@media (max-width: 1450px) {
    .navigation-section {
        font-size: 1em;
    }
}

@media (max-width: 1040px) {
    .navigation-section {
        display: none;
    }
}

/* Text-Image Section (zweispaltig) */
.text-image {

}

.text-image .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-image .circle-image, 
.text-image .text-block {
    max-width: 50%;
}

.text-image.image-left .circle-image {
    order: 1;
    margin-right: 40px;
}

.text-image.image-left .text-block {
    order: 2;
    padding-left: 40px;
}

.text-image.image-right .circle-image {
    order: 2;
    margin-left: 40px;
}

.text-image.image-right .text-block {
    order: 1;
    padding-right: 40px;
}

.circle-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Seitenverhältnis 1:1 */
}

.circle-image a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.circle-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.circle-image::before {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    border-radius: 50%;
    z-index: -1;
}

.text-image.image-left .circle-image::before {
    background: linear-gradient(to left, var(--green), var(--yellow));
    bottom: -2.5%;
    right: 10px;
}

.text-image.image-right .circle-image::before {
    background: linear-gradient(to right, var(--green), var(--yellow));
    top: -2.5%;
    left: 10px;
}

.text-block {
    box-sizing: border-box;
    text-align: left;
}

.text-block ul,
.text-block ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.text-block ul li,
.text-block ol li {
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    .text-image .content {
        align-items: flex-start;
    }
    .text-image .content .circle-image {
        max-width: 30%;
    }
    .text-image .content .text-block {
        max-width: 70%;
    }

    .text-image.image-left .circle-image {margin-right: 0;}
    .text-image.image-right .circle-image {margin-left: 0;}
}

@media (max-width: 770px) {
    .text-image .content {
        flex-flow: column;
    }

    .text-image .content .circle-image,
    .text-image .content .text-block {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        order: 1;
    }
    .text-image .content .text-block {
        text-align: center;
        margin-top: 50px;
    }
    .text-image .content .circle-image {
        max-width: 340px;
        width: 80%;
        order: 0;
        margin-left: auto;
        margin-right: auto;
    }
}
/* Logos Section */
.team-section {
    text-align: center;
}

.team-section .headline {
    margin-bottom: 40px;
}

.logos-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    object-fit: cover;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.logos-container:before {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9ac122+23,ffff14+100&0+4,0.3+22,0.3+100 */
    background: linear-gradient(to right,  rgba(154,193,34,0) 4%,rgba(154,193,34,0.3) 22%,rgba(154,193,34,0.3) 23%,rgba(255,255,20,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */


    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 80%;
    top: 10%;
}

.logo-item {
    box-shadow: 10px 0 15px rgba(0,0,0,0.1);
    border-radius: 50%;
    border: 15px solid #fff;
    position: relative;
    width: 300px;
    max-width: 28%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.logo-item img {
    width: 100%;
    height: 100%;
    float: left;
    background: #fff;
    object-fit: scale-down;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

}

.logo-item:hover {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

@media (max-width: 600px) {
    .logos-container {
        gap: 2rem;
    }

    .logo-item {
        border-width: 5px;
    }

    .logos-container img {
        padding: 10px;
    }
}

/* Text-Box Section (zweispaltig) */
.text-box {
}

.text-box-container {
    position: relative;
    padding-left: 40px;
    padding-right: 40px;
}

.text-box.noImage .text-box-container {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#9ac122+23,ffff14+100&0+4,0.3+22,0.3+100 */
    background: linear-gradient(to right,  rgba(154,193,34,0) 4%,rgba(154,193,34,0.3) 22%,rgba(154,193,34,0.3) 23%,rgba(255,255,20,0.3) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
}

.text-box .text-image .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-box.box-left .content {
    display: flex;
    flex-direction: row;
}

.text-box.box-right .content {
    display: flex;
    flex-direction: row-reverse;
}

.text-box.up .content .text-block {
    margin-top: -50px;
    margin-bottom: 50px;
}

.text-box.down .content .text-block {
    margin-top: 50px;
    margin-bottom: -50px;
}

.text-box .text-block {
    box-sizing: border-box;
    text-align: left;
    width: 50%;
    background: #fff;
    border-radius: 40px;
    padding: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
    .text-box .content {
        flex-direction: row !important;
        justify-content: center;
    }

    .text-box .text-block {
        width: 100%;
    }
}


@media (max-width: 600px) {
    .text-box .text-block {
        padding: 30px 15px;
        border-radius: 20px;
    }

    .text-box-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.text-box .bg-image,
.text-box .bg-image img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.text-box .bg-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.img-box {
/*    margin-left: -40px;
    margin-right: -40px;*/
}

.img-box-container {
    margin-bottom: 0;
    overflow: hidden;
}


.img-box img {
    float: left;
    width: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.img-box a:hover img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

/* Footer */
footer#footer-container {
    background-color: var(--primary-brown);
    padding: 2rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
}

#footer-container .content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-flow: row wrap;
}

.footer-column {
    padding: 0 1rem;
}

footer a {
    color: var(--yellow);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-column h4 {
    color: #fff;
}

.footer-column p {
    margin: 0.5rem 0;
}

/* Bottom Line */
.bottom-line {
    text-align: center;
    background-color: var(--primary-brown);
    padding: 1rem;
    color: white;
}

.bottom-line p {
    margin: 0;
}

.bottom-line a {
    color: white;
    margin-left: 10px;
    margin-right: 10px;
}
@media (max-width: 750px) {
    #footer-container .content {
        flex-flow: column;
    }
    .footer-column {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-column:last-child {
        margin-bottom: 0px;
    }
}

/* scrolling */
#scrolling {
    background: var(--primary-brown);
    bottom: 70px;
    border-top-left-radius: 50%; 
    border-bottom-left-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 20px;
    height: 40px;
    position: fixed;
    right: 0;
    text-align: center;
    width: 40px;
    z-index: 999999999;
    background-clip: unset !important;
}

#scrolling:hover {
    background-clip: unset !important;
    color: #fff;
    -webkit-text-fill-color: #fff !important;
}

#scrolling:hover span {
    color: #fff;
}

#scrolling span {
    color: #ffffff;
    line-height: 2em;
}