/* -----------------------------------------------------------------------------------
Fonts
----------------------------------------------------------------------------------- */
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/poppins-v24-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}


/* -----------------------------------------------------------------------------------
Basic Styles
----------------------------------------------------------------------------------- */
* {
	margin: 0; padding: 0;
	outline: 0;
}

html, body {
	min-height: 100%; width: 100%;
}

body {
	font-family:"Poppins", Arial, sans-serif; font-size: 15px; line-height: 25px; font-weight: 400; color: #000;
    background: url("../images/splatter.png") no-repeat right 0 bottom 0;
    background-size: contain;
    background-color: #f3f3f1;
}
@media (max-width: 767px) {
    body {
        background: url("../images/splatter.png") no-repeat right -200px bottom 0;
        background-size: 1100px;
        background-color: #f3f3f1;
    }
}

h1,h2,h3,h4 {
	margin:0; padding:0;
	font-weight: 600; color: #000;
}
h1 {
	margin-bottom: 30px;
	font-size: 24px; line-height: 34px;
}
h2 {
	margin-bottom:15px;
	font-size: 20px; line-height: 30px;
}
h2.headline {
    margin-bottom: 30px;
    font-size: 24px; line-height: 34px; text-align: center; text-transform: uppercase;
}
h3 {
	margin-bottom:10px;
	font-size: 18px; line-height: 28px;
}
h4 {
	margin-bottom:10px;
	font-size: 17px; line-height: 27px; font-weight: 600;
}
@media (min-width: 768px) {	
    h1 {
        font-size: 26px; line-height: 36px;
    }
    h2 {
        font-size: 22px; line-height: 32px;
    }
    h2.headline {
        font-size: 26px; line-height: 36px;
    }
}

a {
	color: #000; text-decoration: none;
}
a:hover { color:inherit; text-decoration:none; }
a:focus { color:inherit; text-decoration:none; outline:none; }
main p a, main p a:hover, main li a, main li a:hover { text-decoration:underline; }
@media (min-width: 768px) {		
    main a[href^="tel:"],
    main a:hover[href^="tel:"],
    main a:focus[href^="tel:"]{
        text-decoration: none;
    }
}

p {
	margin-bottom: 30px;
}

strong { font-weight: 600; }

main ul, main ol {
	margin: 0 0 30px 18px; padding: 0;
}
	
form {
	margin-bottom: 30px;
}

a.button,
button.button {
	display: inline-block;
	padding: 18px 35px;
	font-size: 15px; line-height: 16px; color: #fff; font-weight: 400; cursor: pointer; text-decoration: none !important;
	outline: none;
	background-color: #000;
    border: none; border-radius: 28px;
    box-shadow: inset 0px 0px 0px 2px #000;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}

a.text-button {
    position: relative;
	display: inline-block;
	color: #000; font-weight: 600; cursor: pointer; text-decoration: none !important;
    border-bottom: 2px solid #000;
    -webkit-transition: all .2s ease;
            transition: all .2s ease;
}
@media (max-width: 991px) {
    a.text-button {
        white-space: nowrap; /* Kein Zeilenumbruch */
        overflow: hidden; /* Versteckt den überlaufenden Text */
        text-overflow: ellipsis; /* Zeigt „…“ am Ende des Textes */
        max-width: 270px; /* Feste Breite (oder nach Bedarf anpassen) */
    }
}

div.bg-grau {
    background: #f3f3f1;
}
div.bg-grau.abstand-entfernen {
    margin-bottom: 0 !important;
    padding-bottom: 1px !important;
}

.small-text {
    font-size: 15px; line-height: 25px;
}

/* -----------------------------------------------------------------------------------
Global Layout Styles
----------------------------------------------------------------------------------- */
main#main {
    margin-top: 60px;
}
.container-fluid,
.container {
    padding-left: 20px; padding-right: 20px;
}
.container-fluid.no-padding,
.container.no-padding {
    padding-left: 0; padding-right: 0;
}
.container-fluid.md {
	max-width: 1000px;
}
.container-fluid.lg {
	max-width: 1200px;
}
.container-fluid.xl {
	max-width: 1500px;
}

.row {
    margin-left: -15px; margin-right: -15px; }

    .row [class^="col-"] {
        padding-left: 15px; padding-right: 15px;
}
.row.no-space {
    margin-left: 0; margin-right: 0; }

    .row.no-space .no-space[class^="col-"] {
        margin-bottom: 0; padding: 0;
}
@media (max-width: 767px) {
    .container-fluid.no-padding-xs {
        padding-left: 0; padding-right: 0;
    }
}
@media (min-width: 992px) {
    .container.sm {
        max-width: 800px;
    }
}
@media (min-width: 768px) {
    .container-fluid,
    .container {
        padding-left: 30px; padding-right: 30px;
    }
}
@media (min-width: 992px) {
    .container-fluid,
    .container {
        padding-left: 40px; padding-right: 40px;
    }
    .container.small-padding {
        padding-left: 30px; padding-right: 30px;
    }
	.row {
		margin-left: -20px; margin-right: -20px; }

		.row [class^="col-"] {
			padding-left: 20px; padding-right: 20px;
	}
}

.container.einleitung {
    margin-bottom: 60px;
}


/* -----------------------------------------------------------------------------------
Navigation
----------------------------------------------------------------------------------- */
/* Allgemeine Navbar-Stile */
.navbar {
    background: #fff;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.15),0 1px 1px 0 rgba(0,0,0,.05);
            box-shadow: 0 1px 4px 0 rgba(0,0,0,.15),0 1px 1px 0 rgba(0,0,0,.05);
    transition: transform 0.3s ease-in-out; }

    .navbar a.navbar-brand img.image {
        max-height: 55px; width: auto;
}

/* Toggler */
.navbar .navbar-toggle {
    display: flex; flex-direction: column;
    justify-content: space-between;
    width: 30px; height: 18px;
    background: none;  
    border: none;
    cursor: pointer; }

    .navbar .navbar-toggle .icon-bar {
        width: 100%; height: 2px;
        background-color: #000;
        transition: all 0.3s ease;
    }
    .navbar .navbar-toggle.active .icon-bar.top-bar {
        transform: translateY(8px) rotate(45deg);
    }
    .navbar .navbar-toggle.active .icon-bar.middle-bar {
        opacity: 0;
    }
    .navbar .navbar-toggle.active .icon-bar.bottom-bar {
        transform: translateY(-8px) rotate(-45deg);
}
@media (min-width: 992px) {
    .navbar .navbar-toggle {
        display: none !important;
    }
}

/* Basic Navbar Styles */
.navbar .navbar-collapse ul.navbar-nav > li a.nav-link {
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
}
.navbar .navbar-collapse ul.navbar-nav > li a.nav-link::after {
    position: absolute; bottom: -3px; left: 0;
    content: "";
    width: 0; height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}
.navbar .navbar-collapse ul.navbar-nav > li a.nav-link.active::after,
.navbar .navbar-collapse ul.navbar-nav > li a.nav-link:hover::after {
    width: 100%;
}

/* Mobile-Navigation */
@media (max-width: 991px) {
    .navbar .navbar-collapse {
        position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
        display: none;
        background-color: #f3f3f1;
        opacity: 0;
        transform: translateY(-100%);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
    .navbar .navbar-collapse.show {
        display: block;
        opacity: 1;
        transform: translateY(0); }

        .navbar .navbar-collapse ul.navbar-nav {
            position: absolute; left: 50%;
            transform: translateX(-50%);
            margin-top: 40px;
            text-align: center; }

        .navbar .navbar-collapse ul.navbar-nav > li {
            opacity: 0;
            transform: translateX(-30px);
            visibility: hidden;
            pointer-events: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        .navbar .navbar-collapse.show ul.navbar-nav > li {
            visibility: visible;
            pointer-events: auto;
            animation: fadeInSlideRight 0.5s ease forwards; }

            .navbar .navbar-collapse ul.navbar-nav > li a.nav-link {
                display: inline-block;
                margin-bottom: 15px; padding-bottom: 0;
                font-size: 22px; line-height: 32px;
    }
}

/* Desktop-Navigation */
@media (min-width: 992px) {
    .navbar {
        transform: translateY(-100%); /* Versteckt */
    }
    .navbar.visible {
        transform: translateY(0); /* Sichtbar */ }
    
        .navbar a.navbar-brand img.image {
            max-height: 75px; width: auto;
        }
    
        .navbar .navbar-collapse ul.navbar-nav > li a.nav-link {
            margin: 0 10px; padding: 0;
            font-size: 15px;
        }
        .navbar .navbar-collapse ul.navbar-nav > li a.nav-link:hover,
        .navbar .navbar-collapse ul.navbar-nav > li a.nav-link:focus {
            color: #000;
    }
}

/* Keyframes für das Einfaden von links nach rechts */
@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Sprachauswahl */
.navbar .languages {
    margin-bottom: 5px;
    text-align: right; }

    .navbar .languages a {
        margin-left: 3px;
        font-size: 15px; color: #000; font-weight: 600; text-transform: uppercase;
    }
    .navbar .languages a.active {
        border-bottom: 2px solid #000;
}
@media (max-width: 991px) {
    .navbar .languages {
        position: absolute; right: 80px; top: 24px;
    }
}


/* -----------------------------------------------------------------------------------
Header
----------------------------------------------------------------------------------- */
header.intro-section {
 position: relative;
    height: 100vh;     /* exakt Viewport-Höhe */
    overflow: hidden; }

    header.intro-section img.image {
        width: 100%; height: 100%;
        object-fit: cover;
    }

    header.intro-section .logo-overlay {
        position: absolute; top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        padding: 0 40px;
        width: 100%;
        text-align: center; }

        header.intro-section .logo-overlay img.logo {
            width: 100%; /* Breite skaliert responsiv */
            max-width: 540px; /* Begrenzung auf maximal 540px */
            height: auto; /* Seitenverhältnis bleibt erhalten */
    }

/* Mouse Scroll Animation */
header.intro-section .icon-scroll,
header.intro-section .icon-scroll:before {
    position: absolute; left: 50%;
}
header.intro-section .icon-scroll {
    bottom: 40px;
    margin-left: -18px;
    width: 36px; height: 62px;
    background-color: #fff;
    border: 3px solid #fff; border-radius: 16px;
}
header.intro-section .icon-scroll:before {
    top: 8px;
    content: '';
    margin-left: -4px;
    width: 8px; height: 8px;
    background: #000;
    border-radius: 4px;
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    -webkit-animation-name: scroll;
            animation-name: scroll;
}
@-webkit-keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
        opacity: 0;
    }
}
@keyframes scroll {
    0% {
        opacity: 0;
    }
    10% {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateY(20px);
                transform: translateY(20px);
        opacity: 0;
    }
}


/* -----------------------------------------------------------------------------------
Textabschnitt
----------------------------------------------------------------------------------- */
.textabschnitt {
    margin-bottom: 100px; }

    .textabschnitt span.textmarker {
        padding: 0 .15em;
        background-color: #f3f3f1;
        -webkit-box-decoration-break: clone;
                box-decoration-break: clone;
}


/* -----------------------------------------------------------------------------------
Foto Groß + Text (BG)
----------------------------------------------------------------------------------- */
.foto-gross-text-pr.bg-grau {
    margin-bottom: 100px; padding: 80px 0 1px 0; }

.foto-gross-text-pr figure {
    margin-bottom: 120px; }

    .foto-gross-text-pr figure .image-container .image-inset {
        aspect-ratio: 4 / 3;
    }

    .foto-gross-text-pr figure .image-container img.image {
        width: 100%; height: auto;
        position: static;
    }

    .foto-gross-text-pr figure figcaption .text-box { 
        padding-top: 40px; padding-bottom: 10px;
}
@media (max-width: 767px) {
    .foto-gross-text-pr figure figcaption { 
        background-color: #fff;
    }
}
@media (min-width: 768px) {
    .foto-gross-text-pr figure{
        display: flex;
        position: relative;
    }
    .foto-gross-text-pr figure>:first-child {
        width: 50%;
    }
    .foto-gross-text-pr figure:nth-child(even) {
        flex-direction: row-reverse; }

        .foto-gross-text-pr figure .image-container {
            position: relative;
            max-width: initial;
            overflow: visible; }
    
            .foto-gross-text-pr figure .image-container .image-inset {
                position: relative; }
    
                .foto-gross-text-pr figure .image-container img.image {
                    border-radius: 20px;
        }

        .foto-gross-text-pr figure figcaption {
            display:flex;
            -webkit-align-items: flex-start;
                    align-items: flex-start;
            z-index:2;
            width: 50%; }

            .foto-gross-text-pr figure figcaption .text-box {
                margin-top: 20px; margin-left: -20%;
                width: 120%; max-width: 640px;
                background-color: #fff;
                border-radius: 20px;
            }
            .foto-gross-text-pr figure:nth-child(even) figcaption .text-box {
                margin-left: auto; margin-right: -20%;
    }
}
@media (min-width: 992px) {
    .foto-gross-text-pr figure >:first-child>*{
        width: 130%;
    }
    .foto-gross-text-pr figure:nth-child(even)>:first-child>*{
        left: -30%; }

        .foto-gross-text-pr figure figcaption .text-box {
            margin-top: 40px;
            width: 100%; margin-left: 0;
        }    
        .foto-gross-text-pr figure:nth-child(even) figcaption .text-box {
            margin-right: 0;
    }
}


/* -----------------------------------------------------------------------------------
Foto + Text Boxen (Spalten)
----------------------------------------------------------------------------------- */
.foto-text-boxen-spalten {
    margin-bottom: 60px; }

    .foto-text-boxen-spalten .row [class*="col-"] {
        flex-direction: column;
        margin-bottom: 40px; }
    
    .foto-text-boxen-spalten .row [class*="col-"] figure {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        box-sizing: border-box;
        background-color: #f3f3f1; }

        .foto-text-boxen-spalten .row [class*="col-"] figure figcaption {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding-top: 40px; padding-bottom: 20px; }

            .foto-text-boxen-spalten .row [class*="col-"] figure figcaption .content {
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
}


/* -----------------------------------------------------------------------------------
Footer
----------------------------------------------------------------------------------- */
footer img.logo {
    display: block; /* Macht das Bild zum Blockelement */
    margin: 0 auto 100px auto;
    max-width: 400px;
    width: calc(100% - 80px); /* Dynamische Breite mit 20px Abstand links und rechts */
    height: auto;
    box-sizing: border-box; /* Berücksichtigt Padding und Border in der Breite */
}

/* Abschlussleiste */	
footer .abschlussleiste {
    padding: 30px 0;
    color: #fff;
    background-color: #000;
    font-weight: 600; text-transform: uppercase;
}
footer .abschlussleiste a {
    color: #fff;
}
@media (max-width: 767px) {
	footer .abschlussleiste {
		text-align: center;
    }
}
@media (min-width: 768px) {
    footer .abschlussleiste .rechte-spalte {
        text-align: right; }
    
        footer .abschlussleiste .rechte-spalte a {
            margin-left: 15px;
    }
}


/* -----------------------------------------------------------------------------------
Impressum / Datenschutz
----------------------------------------------------------------------------------- */
main.datenschutz-impressum {
    margin-top: 50px;
}