/* Schriftart Einbindung */

/* nunito-regular - latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/nunito-v25-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-v25-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-v25-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-v25-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-v25-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-v25-latin-regular.svg#Nunito') format('svg'); /* Legacy iOS */
}



/* nunito-700 - latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/nunito-v25-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-v25-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-v25-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-v25-latin-700.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-v25-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-v25-latin-700.svg#Nunito') format('svg'); /* Legacy iOS */
}


/* nunito-italic - latin */
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 400;
  src: url('fonts/nunito-v25-latin-italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-v25-latin-italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-v25-latin-italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-v25-latin-italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-v25-latin-italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-v25-latin-italic.svg#Nunito') format('svg'); /* Legacy iOS */
}


/* nunito-700italic - latin */
@font-face {
  font-family: 'Nunito';
  font-style: italic;
  font-weight: 700;
  src: url('fonts/nunito-v25-latin-700italic.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('fonts/nunito-v25-latin-700italic.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('fonts/nunito-v25-latin-700italic.woff2') format('woff2'), /* Super Modern Browsers */
       url('fonts/nunito-v25-latin-700italic.woff') format('woff'), /* Modern Browsers */
       url('fonts/nunito-v25-latin-700italic.ttf') format('truetype'), /* Safari, Android, iOS */
       url('fonts/nunito-v25-latin-700italic.svg#Nunito') format('svg'); /* Legacy iOS */
}



/* Allgemeine Stile */
body {
    font-family: 'Nunito', sans-serif;
	font-weight: 400;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #ffffff;
    font-size: 18px;
}

/* Schriftfarbe global für Seite Die Räumlichkeiten */
.page-raeumlichkeiten body,
.page-raeumlichkeiten .content h1,
.page-raeumlichkeiten .content p {
    color: #5fc4e1;
}

/* Schriftfarbe global für Seite zu meiner Person*/
.page-person body,
.page-person .content h1,
.page-person .content p {
    color: #74c095;
}

/* Schriftfarbe global für Seite Kindertagespflege*/
.page-kindertagespflege body,
.page-kindertagespflege .content h1,
.page-kindertagespflege .content p {
    color: #f9b44f;
}

/* Schriftfarbe global für Seite Kindersport*/
.page-kindersport body,
.page-kindersport .content h1,
.page-kindersport .content p {
    color: #ee6c6c;
}

/* Schriftfarbe global für Seite Kontakt*/
.page-kontakt body,
.page-kontakt .content h1,
.page-kontakt .content p {
    color: #f099b6;
}

/* Schriftfarbe global für Seite Datenschutz*/
.page-datenschutz body,
.page-datenschutz .content h1,
.page-datenschutz .content p {
    color: #f2d29f;
}

/* Hauptcontainer mit optimaler Breite */
.container {
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    padding: 5px;
    text-align: left;
}

/* Header mit Logo */
header {
    background-color: #ffffff;
    padding: 10px 0px 5px 0px;
    position: relative;
    z-index: 10;
}

.logo img {
    max-width: 500px;
    height: auto;
}




/* Menü als große, farbige Boxen */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 5px;
    height: auto;
    position: relative;
    z-index: 200;
}

.menu {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    width: 95%;
    padding: 0;
    margin: 0 !important;
    border-radius: 10px;
    overflow: hidden;
    gap: 5px;
}



/* Farben für Menü-Boxen */
.menu li:nth-child(1) a { background-color: #74c095; } /* Grün */
.menu li:nth-child(2) a { background-color: #f9b44f; } /* Gelb */
.menu li:nth-child(3) a { background-color: #5fc4e1; } /* Blau */
.menu li:nth-child(4) a { background-color: #ee6c6c; } /* Orange */
.menu li:nth-child(5) a { background-color: #f099b6; } /* Violett */

/* Hover-Effekte mit 10% mehr Weiß */
.menu li:nth-child(1) a:hover { background-color: #98d1ae; } /* Helleres Grün */
.menu li:nth-child(2) a:hover { background-color: #fbd168; } /* Helleres Gelb */
.menu li:nth-child(3) a:hover { background-color: #89d8f0; } /* Helleres Blau */
.menu li:nth-child(4) a:hover { background-color: #f48c8c; } /* Helleres Orange */
.menu li:nth-child(5) a:hover { background-color: #f4b0c6; } /* Helleres Violett */

.menu li {
    flex: 1;
    text-align: center;
    margin: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu a {
    min-height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: background-color 0.3s ease-in-out;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
}

/* Checkbox & Label */
.menu-toggle-checkbox {
  display: none;
}

.menu-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 15px;
  top: 25px;
  z-index: 999;
}

.burger-icon {
  display: block;
}

/* Menü-Wrapper */
.menu-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive: unter 1070px */
@media (max-width: 1070px) {
  .menu-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    flex-direction: column;
	width: 100%;
  }
@media (max-width: 370px) {
  .menu a {
    font-size: 16px;
}
  }  


  .menu {
    flex-direction: column;
    gap: 0;
	max-width: 500px;
  }

  .menu li {
    width: 100%;
    margin-bottom: 5px; /* neuer Abstand unten */
  }

  .menu li:last-child {
    margin-bottom: 0; /* letzter Button ohne Extra-Abstand */
  }

  .menu {
    gap: 0; /* sicherstellen, dass das nicht dazwischenfunkt */
  }

  .menu a {
    min-height: 50px;
    border-radius: 0;
  }

  .menu-toggle-label {
    display: block;
  }

  .menu-toggle-checkbox:checked + .menu-toggle-label + .menu-wrapper {
    display: flex;
    flex-direction: column;
    max-height: 1000px; /* genug, damit alle Links reinpassen */
    transition: max-height 0.5s ease-in-out;
	opacity: 1;
    transform: translateY(0);
  }

  .logo img {
    max-width: 250px;
	margin-top: 5px;
  }
}

@media (max-width: 490px) {
    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
		padding-left: 10px;
    }

    .logo {
        text-align: left;
    }

}

@media (max-width: 338px) {
    .logo img {
        max-width: 220px;
		margin-top: 5px;
    }

}


.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 470px;
    background: url('images/bg_Kindertagespflege_Heiligenhaus.jpg') no-repeat center center;
    background-size: cover;
    padding: 0px;
    position: relative;
    overflow: hidden;
	transition: height 0.5s ease;
}

.image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

.image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 10px;
}

.image-frame img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.image1 { width: 550px; height: auto; transform: rotate(-3deg); top: 30px; left: 0px; }
.image2 { width: 380px; height: auto; transform: rotate(2deg); top: 180px; left: 450px; }
.image3 { width: 380px; height: auto; transform: rotate(-2deg); top: 50px; left: 740px; }
.image4 { width: 160px; height: auto; transform: rotate(4deg); bottom: 50px; left: 1040px; }

.image1 img, .image2 img, .image3 img, .image4 img {
    animation: zoomInOut 12s ease-in-out infinite;
}

@media (max-width: 1260px) {
    .image-container { transform: translateX(-50%) scale(0.95); }
    .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .image-container { transform: translateX(-50%) scale(0.90); }
    .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .image-container { transform: translateX(-50%) scale(0.85); }
    .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .image-container { transform: translateX(-50%) scale(0.80); }
    .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .image-container { transform: translateX(-50%) scale(0.75); }
    .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .image-container { transform: translateX(-50%) scale(0.70); }
    .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .image-container { transform: translateX(-50%) scale(0.65); }
    .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .image-container { transform: translateX(-50%) scale(0.60); }
    .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .image-container { transform: translateX(-50%) scale(0.55); }
    .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .image-container { transform: translateX(-50%) scale(0.60); }
    .hero { height: calc(470px * 0.86); }
	.image1 { width: 550px; height: auto; transform: rotate(-3deg); top: 30px; left: 180px; }
	.image2 { width: 380px; height: auto; transform: rotate(2deg); top: 180px; left: 630px; }
	.image3 { width: 380px; height: auto; transform: rotate(1deg); top: 390px; left: 320px; }
	.image4 { width: 160px; height: auto; transform: rotate(-5deg); bottom: -180px; left: 710px; }
}

@media (max-width: 540px) {
    .image-container { transform: translateX(-50%) scale(0.55); }
    .hero { height: calc(470px * 0.79); }
}

@media (max-width: 500px) {
    .image-container { transform: translateX(-50%) scale(0.50); }
    .hero { height: calc(470px * 0.72); }
}

@media (max-width: 450px) {
    .image-container { transform: translateX(-50%) scale(0.45); }
    .hero { height: calc(470px * 0.65); }
}
@media (max-width: 410px) {
    .image-container { transform: translateX(-50%) scale(0.40); }
    .hero { height: calc(470px * 0.58); }
}

@media (max-width: 355px) {
    .image-container { transform: translateX(-50%) scale(0.35); }
    .hero { height: calc(470px * 0.505); }
}
@media (max-width: 310px) {
    .image-container { transform: translateX(-50%) scale(0.30); }
    .hero { height: calc(470px * 0.435); }
}


/* Hero-Bereich speziell für page-raeumlichkeiten.html */
.page-raeumlichkeiten .hero {
    background: url('images/bg_Raeume_Kindertagesplfege.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Bildcontainer */
.page-raeumlichkeiten .image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

/* Bildframes */
.page-raeumlichkeiten .image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-raeumlichkeiten .image1 {
    width: 550px;
    height: auto;
    transform: rotate(-3deg);
    top: 30px;
    left: 120px;
}

.page-raeumlichkeiten .image2 {
    width: 450px;
    height: auto;
    transform: rotate(3deg);
    top: 130px;
    left: 640px;
}

.page-raeumlichkeiten .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 12s ease-in-out infinite;
}

/* Responsive Anpassungen für den Hero-Bereich (angepasst von index.html) */
@media (max-width: 1260px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.95); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.90); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.85); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.80); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.75); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.70); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.65); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.60); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-raeumlichkeiten .image-container { transform: translateX(-50%) scale(0.55); }
    .page-raeumlichkeiten .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.60);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.86);
    }

    /* Neue Positionierung der beiden Bilder bei kleinerem Viewport */
    .page-raeumlichkeiten .image1 {
        width: 550px;
        height: auto;
        transform: rotate(-3deg);
        top: 30px;
        left: 200px;
    }

    .page-raeumlichkeiten .image2 {
        width: 450px;
        height: auto;
        transform: rotate(3deg);
        top: 330px; /* Deutlich weiter unten für Umbruch-Effekt */
        left: 540px;
    }
}

@media (max-width: 540px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.55);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.79);
    }
}

@media (max-width: 500px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.50);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.72);
    }
}

@media (max-width: 450px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.45);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.65);
    }
}

@media (max-width: 410px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.40);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.58);
    }
}

@media (max-width: 355px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.35);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.505);
    }
}

@media (max-width: 310px) {
    .page-raeumlichkeiten .image-container {
        transform: translateX(-50%) scale(0.30);
    }
    .page-raeumlichkeiten .hero {
        height: calc(470px * 0.435);
    }
}


/* Hero-Bereich speziell für page-person */
.page-person .hero {
    background: url('images/bg_Kindertagespflegeperon_Heiligenhaus.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Bildcontainer */
.page-person .image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

/* Bildframes */
.page-person .image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-person .image1 {
    width: 250px;
    height: auto;
    transform: rotate(-3deg);
    top: 40px;
    left: 280px;
}

.page-person .image2 {
    width: 380px;
    height: auto;
    transform: rotate(5deg);
    top: 100px;
    left: 540px;
}

.page-person .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 12s ease-in-out infinite;
}

/* Responsive Anpassungen für den Person-Bereich */
@media (max-width: 1260px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.95); }
    .page-person .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.90); }
    .page-person .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.85); }
    .page-person .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.80); }
    .page-person .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.75); }
    .page-person .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.70); }
    .page-person .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.65); }
    .page-person .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.60); }
    .page-person .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-person .image-container { transform: translateX(-50%) scale(0.55); }
    .page-person .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.60);
    }
    .page-person .hero {
        height: calc(470px * 0.86);
    }

    /* Neue Positionierung der beiden Bilder bei kleinerem Viewport */
    .page-person .image1 {
        width: 380px;
        height: auto;
        transform: rotate(-3deg);
        top: 45px;
        left: 115px;
    }

    .page-person .image2 {
        width: 570px;
        height: auto;
        transform: rotate(3deg);
        top: 140px; /* Deutlich weiter unten für Umbruch-Effekt */
        left: 500px;
    }
}

@media (max-width: 640px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.58);
    }
	    .page-person .image1 {
        top: 60px;
    }

    .page-person .image2 {
        top: 160px; /* Deutlich weiter unten für Umbruch-Effekt */
    }
}

@media (max-width: 600px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.54);
    }
	.page-person .image1 {
        top: 80px;
    }

    .page-person .image2 {
        top: 180px; /* Deutlich weiter unten für Umbruch-Effekt */
    }
}

@media (max-width: 570px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.52);
    }
	.page-person .image1 {
        top: 100px;
    }

    .page-person .image2 {
        top: 200px; /* Deutlich weiter unten für Umbruch-Effekt */
    }
}

@media (max-width: 540px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.49);
    }
    .page-person .hero {
        height: calc(470px * 0.79);
    }
	.page-person .image1 {
        top: 90px;
    }

    .page-person .image2 {
        top: 190px; /* Deutlich weiter unten für Umbruch-Effekt */
    }
}

@media (max-width: 500px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.44);
    }
    .page-person .hero {
        height: calc(470px * 0.72);
    }
}

@media (max-width: 450px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.40);
    }
    .page-person .hero {
        height: calc(470px * 0.65);
    }
}

@media (max-width: 410px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.35);
    }
    .page-person .hero {
        height: calc(470px * 0.58);
    }
}

@media (max-width: 355px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.30);
    }
    .page-person .hero {
        height: calc(470px * 0.505);
    }
}

@media (max-width: 310px) {
    .page-person .image-container {
        transform: translateX(-50%) scale(0.25);
    }
    .page-person .hero {
        height: calc(470px * 0.435);
    }
}


/* Hero-Bereich speziell für page-kindertagespflege */
.page-kindertagespflege .hero {
    background: url('images/bg_Die_Kindertagesplfege.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Bildcontainer */
.page-kindertagespflege .image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

/* Bildframes */
.page-kindertagespflege .image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-kindertagespflege .image1 {
    width: 700px;
    height: auto;
    transform: rotate(-3deg);
    top: 50px;
    left: 120px;
}

.page-kindertagespflege .image2 {
    width: 235px;
    height: auto;
    transform: rotate(5deg);
    top: 55px;
    left: 830px;
}

.page-kindertagespflege .image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 12s ease-in-out infinite;
}

/* Responsive Anpassungen für den Hero-Bereich (angepasst von index.html) */
@media (max-width: 1260px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.95); }
    .page-kindertagespflege .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.90); }
    .page-kindertagespflege .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.85); }
    .page-kindertagespflege .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.80); }
    .page-kindertagespflege .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.75); }
    .page-kindertagespflege .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.70); }
    .page-kindertagespflege .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.65); }
    .page-kindertagespflege .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.60); }
    .page-kindertagespflege .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-kindertagespflege .image-container { transform: translateX(-50%) scale(0.55); }
    .page-kindertagespflege .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.60);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.86);
    }

    /* Neue Positionierung der beiden Bilder bei kleinerem Viewport */
    .page-kindertagespflege .image1 {
        width: 700px;
        height: auto;
        transform: rotate(-5deg);
        top: 50px;
        left: 245px;
    }

    .page-kindertagespflege .image2 {
        width: 230px;
        height: auto;
        transform: rotate(93deg);
        top: 345px; /* Deutlich weiter unten für Umbruch-Effekt */
        left: 500px;
    }
}

@media (max-width: 540px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.55);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.79);
    }
}

@media (max-width: 500px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.50);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.72);
    }
}

@media (max-width: 450px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.45);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.65);
    }
}

@media (max-width: 410px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.40);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.58);
    }
}

@media (max-width: 355px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.35);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.505);
    }
}

@media (max-width: 310px) {
    .page-kindertagespflege .image-container {
        transform: translateX(-50%) scale(0.30);
    }
    .page-kindertagespflege .hero {
        height: calc(470px * 0.435);
    }
}

/* Hero-Bereich speziell für page-kindersport */
.page-kindersport .hero {
    background: url('images/bg_Kindersport.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Bildcontainer */
.page-kindersport .image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

/* Bildframes */
.page-kindersport .image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-kindersport .image1 {
    width: 500px;
    height: auto;
    transform: rotate(-3deg);
    top: 50px;
    left: 110px;
	z-index: 3;
}

.page-kindersport .image2 {
    width: 500px;
    height: auto;
    transform: rotate(3deg);
    top: 70px;
    left: 580px;
	z-index: 5;
}

.page-kindersport .image3 {
    width: 180px;
    height: auto;
    transform: rotate(-4deg);
    top: 235px;
    left: 735px;
	z-index: 6;
}

.page-kindersport .image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: zoomInOut 12s ease-in-out infinite;
}

/* Responsive Anpassungen für den Hero-Bereich (angepasst von index.html) */
@media (max-width: 1260px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.95); }
    .page-kindersport .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.90); }
    .page-kindersport .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.85); }
    .page-kindersport .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.80); }
    .page-kindersport .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.75); }
    .page-kindersport .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.70); }
    .page-kindersport .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.65); }
    .page-kindersport .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.60); }
    .page-kindersport .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-kindersport .image-container { transform: translateX(-50%) scale(0.55); }
    .page-kindersport .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.70);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.86);
    }

	.page-kindersport .image1 {
    width: 500px;
    height: auto;
    transform: rotate(-3deg);
    top: 40px;
    left: 200px;
	z-index: 3;
	}

	.page-kindersport .image2 {
    width: 500px;
    height: auto;
    transform: rotate(2deg);
    top: 280px;
    left: 500px;
	z-index: 5;
	}

	.page-kindersport .image3 {
    width: 180px;
    height: auto;
    transform: rotate(8deg);
    top: 120px;
    left: 760px;
	z-index: 6;
	}
}


@media (max-width: 620px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.65);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.82);
    }
}

@media (max-width: 580px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.60);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.74);
    }
}

@media (max-width: 540px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.55);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.68);
    }
}

@media (max-width: 500px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.50);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.62);
    }
}

@media (max-width: 460px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.45);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.56);
    }
}

@media (max-width: 420px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.40);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.50);
    }
}

@media (max-width: 370px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.35);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.44);
    }
}

@media (max-width: 320px) {
    .page-kindersport .image-container {
        transform: translateX(-50%) scale(0.30);
    }
    .page-kindersport .hero {
        height: calc(470px * 0.38);
    }
}


/* Hero-Bereich speziell für page-page-kontakt */
.page-kontakt .hero {
    background: url('images/bg_Kotakt_Kindertagespflege_Heiligenhaus.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Bildcontainer */
.page-kontakt .image-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 470px;
    transform-origin: top center;
    transition: transform 0.5s ease;
}

/* Bildframes */
.page-kontakt .image-frame {
    position: absolute;
    border: 6px solid #fff;
	background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.page-kontakt .image1 {
    width: 585px;
    height: auto;
    transform: rotate(-3deg);
    top: 33px;
    left: 300px;
	z-index: 3;
}

.page-kontakt .image-frame img {
    width: 100%;
    height: auto;
    object-fit: cover;
    animation: zoomInOut 12s ease-in-out infinite;
}

/* Responsive Anpassungen für den Hero-Bereich (angepasst von index.html) */
@media (max-width: 1260px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.95); }
    .page-kontakt .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.90); }
    .page-kontakt .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.85); }
    .page-kontakt .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.80); }
    .page-kontakt .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.75); }
    .page-kontakt .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.70); }
    .page-kontakt .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.65); }
    .page-kontakt .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.60); }
    .page-kontakt .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-kontakt .image-container { transform: translateX(-50%) scale(0.55); }
    .page-kontakt .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-kontakt .image-container {
        transform: translateX(-50%) scale(0.55);
    }
    .page-kontakt .hero {
        height: calc(470px * 0.55);
    }

	.page-kontakt .image1 {
    width: 585px;
    height: auto;
    transform: rotate(-3deg);
    top: 33px;
    left: 300px;
	z-index: 3;
	}

}


@media (max-width: 450px) {
    .page-kontakt .image-container {
        transform: translateX(-50%) scale(0.50);
    }
    .page-kontakt .hero {
        height: calc(470px * 0.50);
    }
}

@media (max-width: 400px) {
    .page-kontakt .image-container {
        transform: translateX(-50%) scale(0.45);
    }
    .page-kontakt .hero {
        height: calc(470px * 0.45);
    }
}

@media (max-width: 350px) {
    .page-kontakt .image-container {
        transform: translateX(-50%) scale(0.40);
    }
    .page-kontakt .hero {
        height: calc(470px * 0.40);
    }
}

@media (max-width: 320px) {
    .page-kontakt .image-container {
        transform: translateX(-50%) scale(0.38);
    }
    .page-kontakt .hero {
        height: calc(470px * 0.38);
    }
}

/* Hero-Bereich speziell für page-kindersport */
.page-datenschutz .hero {
    background: url('images/bg_Datenschutz.jpg') no-repeat center center;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1260px) {
    .page-datenschutz .hero { height: calc(470px * 0.95); }
}
@media (max-width: 1200px) {
    .page-datenschutz .hero { height: calc(470px * 0.90); }
}
@media (max-width: 1140px) {
    .page-datenschutz .hero { height: calc(470px * 0.85); }
}
@media (max-width: 1080px) {
    .page-datenschutz .hero { height: calc(470px * 0.80); }
}
@media (max-width: 1020px) {
    .page-datenschutz .hero { height: calc(470px * 0.75); }
}
@media (max-width: 950px) {
    .page-datenschutz .hero { height: calc(470px * 0.70); }
}
@media (max-width: 890px) {
    .page-datenschutz .hero { height: calc(470px * 0.65); }
}
@media (max-width: 830px) {
    .page-datenschutz .hero { height: calc(470px * 0.60); }
}
@media (max-width: 770px) {
    .page-datenschutz .hero { height: calc(470px * 0.55); }
}
@media (max-width: 700px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.86);
    }
}

@media (max-width: 620px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.82);
    }
}

@media (max-width: 580px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.74);
    }
}

@media (max-width: 540px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.68);
    }
}

@media (max-width: 500px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.62);
    }
}

@media (max-width: 460px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.56);
    }
}

@media (max-width: 420px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.50);
    }
}

@media (max-width: 370px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.44);
    }
}

@media (max-width: 320px) {
    .page-datenschutz .hero {
        height: calc(470px * 0.38);
    }
}


/* Farbe für Überschrift und Absatz im Inhaltsbereich */
.content h1, .content p {
    color: #74c095; /* Gleiche Farbe wie erstes Menüelement */	
}

h1 {
	font-size: 32px;
}
@media (max-width: 899px) {
    h1 {
       font-size: 28px;
    }
}
@media (max-width: 499px) {
    h1 {
       font-size: 24px;
    }
}


.content-boxes {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    max-width: 1200px;
    width: 95%;
    margin: 0px auto;
    flex-wrap: nowrap;
    align-items: stretch;
}
.box {
    flex: 1;
    min-width: 0;
    padding: 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
    align-items: stretch;
}
.box-image {
    width: 100%;
    display: block;
}
.box-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}
.box-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    height: 100%;
}
.box h3 {
    margin: 10px 0;
    color: white;
}
.box-text {
    color: white;
    text-align: left;
    margin: 10px 0 20px 0;
    flex-grow: 1;
}
.btn-container {
    display: flex;
    justify-content: center;
    margin-top: auto;
}
.btn {
    display: inline-block;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    width: auto;
    transition: background-color 0.3s ease-in-out;
}
.green { background-color: #74c095; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.yellow { background-color: #f9b44f; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.blue { background-color: #5fc4e1; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.orange { background-color: #ee6c6c; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.btn.green-shadow { background-color: #7bcfa4; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.btn.yellow-shadow { background-color: #fbc16b; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.btn.blue-shadow { background-color: #70d0ec; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.btn.orange-shadow { background-color: #f28585; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.btn:hover { background-color: rgba(255, 255, 255, 0.3); }

@media (max-width: 1070px) {
    .content-boxes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-boxes .box {
        flex: 1 1 calc(50% - 10px);
        margin-bottom: 10px;
    }
}

@media (max-width: 590px) {
    .content-boxes .box {
        flex: 1 1 100%;
    }
}


/* Content-Bereich */

.content-area {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
	margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Einspaltiger Textbereich */
.full-width-text,
.split-content .text-column {
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #5fc4e1;
}

/* Standard-Absatz ohne Abstand */
.full-width-text p,
.split-content .text-column p {
    margin: 0;
}

/* Spezielle Absätze mit Abstand nach oben */
.full-width-text p.spaced,
.split-content .text-column p.spaced {
    margin-top: 20px;
}

p.spaced-datenschutz {
    margin-top: 20px;
	font-size: 16px;
}

p.spaced-nomargin-top {
    margin-top: 0px;
}

p.spaced-nomargin-top-datenschutz {
    margin-top: 0px;
	font-size: 16px;
}

p.spaced-box-white {
    margin-top: 20px;
	color: #ffffff;
}

p.spaced-box-white-bottom0 {
    margin-top: 20px;
    margin-bottom: 0px;
	color: #ffffff;
}

p.spaced-quellen
{
    margin-top: 20px;
	font-size: 12px;
	
}

h3.presse
{
   color: #ee6c6c;
   font-size: 14px;
   margin-top: 20px;
}

/* Zweispaltiger Bereich */
.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Spalten: Text oder Bild */
.split-content .text-column,
.split-content .image-column {
    flex: 1 1 0;
}

/* Bild-Spalten */
.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* WICHTIG! */
    box-sizing: border-box;
	transition: all 0.4s ease;
}

/* Bild selbst */
.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    box-sizing: border-box;
	border-radius: 10px;
	border: 6px solid #5fc4e1;
}

@media (max-width: 1000px) {
    .image-column img {
        border-width: 5px;
    }
}

@media (max-width: 800px) {
    .image-column img {
        border-width: 4px;
    }
}

/* RESPONSIVE: Mobile Anpassungen */
@media (max-width: 640px) {
    .split-content {
        flex-direction: column;
    }
}


@media (max-width: 450px) {
    .image-column img {
        border-width: 3px;
    }
}




/* Footer */
footer {
    background-color: #f9b44f;
    color: white;
    padding: 30px 0;
    margin-top: 10px;
    font-weight: normal;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    width: 95%;
}

.footer-column {
    flex: 1;
    text-align: left;
}

/* Entferne alle Abstände für Texte */
.footer-column p {
    color: white;
    font-size: 16px;
    text-decoration: none;
    line-height: 1.1;
    margin: 0;
    font-weight: normal;
}

/* Links im Footer */
.footer-column a {
    color: white;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.footer-column:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center; /* Spalte mittig ausrichten */
}

.footer-column:nth-child(2) ul {
    text-align: left; /* Inhalte linksbündig */
}

/* Hover-Effekt für Links - Abdunkeln */
.footer-column a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 4px;
}

.footer-column:last-child {
    text-align: right;
}

.footer-logos {
    display: flex;
    flex-direction: column; /* untereinander */
    align-items: flex-end;   /* rechtsbündig */
    gap: 10px;               /* Abstand zwischen den Logos */
}

.footer-logos img {
    max-width: 250px;
    height: auto;
}

/* Copyright-Bereich als separates Element unterhalb des Footers */
.copyright-section {
    background-color: white;
    color: #5fc4e1; /* Farbe des dritten Menüpunkts */
    text-align: center;
    font-size: 16px; /* Globale Schriftgröße */
    font-weight: normal;
    margin: 20px 0;
}

@media (max-width: 999px) {
    .footer-container {
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1 1 50%;
    }

    .footer-column:last-child {
        flex: 1 1 100%;
        text-align: center;
        margin-top: 30px;
    }

    .footer-logos {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 655px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-column {
        flex: 1 1 100%;
        text-align: left;
        align-items: flex-start;
    }

    .footer-column ul {
        text-align: left;
		padding-left: 0;
    }

    .footer-column:nth-child(2) {
        align-items: center;
    }

    .footer-column:last-child {
        margin-top: 0; /* du kannst optional den margin-top hier auf 0 setzen */
    }

    .footer-logos {
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width: 409px) {
    .footer-logos {
        flex-direction: column;  /* Logos wieder untereinander */
        align-items: flex-start;
        gap: 10px; /* etwas Abstand dazwischen */
    }
	.footer-column:last-child {
    text-align: left; /* auch den Text in der Logo-Spalte linksbündig */
    }
}

@media (max-width: 429px) {
    .copyright-section {
        font-size: 15px; /* oder z.B. 13px */
    }
}
@media (max-width: 399px) {
    .copyright-section {
        font-size: 14px; /* oder z.B. 13px */
    }
}
@media (max-width: 369px) {
    .copyright-section {
        font-size: 13px; /* oder z.B. 13px */
    }
}
@media (max-width: 339px) {
    .copyright-section {
        font-size: 12px; /* oder z.B. 13px */
    }
}
@media (max-width: 310px) {
    .copyright-section {
        font-size: 11px; /* oder z.B. 13px */
    }
}

/* Footer-Hintergrundfarbe speziell für page-raeumlichkeiten.html */
.page-raeumlichkeiten footer {
    background-color: #5fc4e1;
}

/* Anpassung der Copyright-Leiste darunter */
.page-raeumlichkeiten .copyright-section {
    color: #5fc4e1; /* Kann so bleiben oder leicht angepasst werden */
}

/* Footer-Hintergrundfarbe speziell für page-person */
.page-person footer {
    background-color: #74c095;
}

/* Anpassung der Copyright-Leiste darunter */
.page-person .copyright-section {
    color: #74c095; /* Kann so bleiben oder leicht angepasst werden */
}

/* Footer-Hintergrundfarbe speziell für page-kindertagespflege */
.page-kindertagespflege footer {
    background-color: #f9b44f;
}

/* Anpassung der Copyright-Leiste darunter */
.page-kindertagespflege .copyright-section {
    color: #f9b44f; /* Kann so bleiben oder leicht angepasst werden */
}

/* Footer-Hintergrundfarbe speziell für page-kindersport */
.page-kindersport footer {
    background-color: #ee6c6c;
}

/* Anpassung der Copyright-Leiste darunter */
.page-kindersport .copyright-section {
    color: #ee6c6c; /* Kann so bleiben oder leicht angepasst werden */
}

/* Footer-Hintergrundfarbe speziell für page-kontakt */
.page-kontakt footer {
    background-color: #f099b6;
}
/* Anpassung der Copyright-Leiste darunter */
.page-kontakt .copyright-section {
    color: #f099b6; /* Kann so bleiben oder leicht angepasst werden */
}

/* Footer-Hintergrundfarbe speziell für page-datenschutz */
.page-datenschutz footer {
    background-color: #f2d29f;
}

/* Anpassung der Copyright-Leiste darunter */
.page-datenschutz .copyright-section {
    color: #f2d29f; /* Kann so bleiben oder leicht angepasst werden */
}


/* Äußerer Bereich mit grünem Hintergrund über volle Breite index*/
.info-box-split {
    background-color: #74c095;
    padding: 30px 0;
    margin: 30px auto;
}

.page-kindertagespflege .info-box-split {
    background-color: #f9b44f;
}

.page-kindersport .info-box-split {
    background-color: #ee6c6c;
}

.page-kontakt .info-box-split {
    background-color: #f099b6;
}


/* Innerer Container, der Inhalt hält */
.info-box-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    flex-wrap: wrap;
}

/* Linker Infotext: 3 Teile */
.info-box-inner .info-text {
    flex: 3;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    padding: 0px 40px 0px 0px;
}

/*Info-Box Kontaktseite */
.page-kontakt .info-box-inner .info-text {
    padding: 0px 0px 0px 0px;
}

/* Rechte rosa Box: 1 Teil */
.info-box-inner .box {
    flex: 1;
    min-width: 250px;
    max-width: 100%;
    margin: 0;
}
.info-box-inner .box.pink {
    flex: none;
    width: calc((100% - 30px) / 4); /* 4 Boxen, 3 Gaps à 10px */
}


img.auszeichnung-box {
    max-width: 180px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    transform: rotate(-6deg);
}

/* Neue Farbkategorie pink (wie letzter Menüpunkt) */
.pink {
    background-color: #f099b6;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
}
.btn.pink-shadow {
    background-color: #f4b0c6;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
}

/* Optional: Button-Hover-Effekt wie bei den anderen */
.btn.pink-shadow:hover {
    background-color: rgba(255, 255, 255, 0.3);
}




.info-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.info-button {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  color: white;
  text-decoration: none;
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
  min-height: 75px; /* oder z. B. 140px */
  align-items: center;
  transition: background-color 0.3s ease-in-out;
}

.info-button .icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    flex-shrink: 0;
    fill: white;
}

.info-button .text {
    line-height: 1.3;
	text-align: left; /* <- fehlt aktuell */
}

.info-button.green  { background-color: #7bcfa4; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.info-button.yellow { background-color: #fbc16b; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.info-button.blue   { background-color: #70d0ec; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }
.info-button.orange { background-color: #f28585; box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05); }


.info-button.green:hover  { background-color: #98d1ae; }
.info-button.yellow:hover { background-color: #fbd168; }
.info-button.blue:hover   { background-color: #89d8f0; }

/* Orange Info-Box ohne Fett, kein Hover */
.info-button.not-link {
  font-weight: normal;
  cursor: default;
  text-decoration: none;
}

.info-button.not-link .text {
  cursor: text;    /* Nur beim Text erscheint der Textmarkierer */
}

.info-button .icon {
  cursor: default; /* SVG bleibt normal */
}

/* Zusätzlicher Text in klein */
.info-button .text small {
  display: block;
  font-size: 12px;
  font-weight: normal;
  margin-top: 0px;
  line-height: 1.3;
}

.icon-inline {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: middle;
  position: relative;
  top: -2.3px; /* ← das rückt das Icon leicht nach oben */
  fill: white;
}


@media (max-width: 1199px) {
    .info-box-inner {
        flex-direction: column;
        gap: 20px;
        align-items: center; /* wichtig für zentrierte pink Box */
    }

    .info-box-inner .info-text {
        flex: none;
        width: 100%;
        padding: 0;
        text-align: center;
        font-size: 18px;
    }

    .info-box-inner .box.pink {
        width: 390px;
		margin-top: 15px; /* <-- Abstand wie Grid-Gap */
    }
}

@media (max-width: 859px) {
    .info-buttons {
        grid-template-columns: 1fr; /* einspaltig */
		justify-items: center; /* zentriert die Buttons */
		padding: 0 20px;
    }
	    .info-button {
        width: 100%;
        max-width: 350px; /* hier kannst du die Wunschbreite steuern */
    }
}

@media (max-width: 349px) {
    .info-buttons {
        padding: 0; /* Kein Extra-Padding mehr, wir nutzen die Containerbreite */
    }

    .info-button {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
        box-sizing: border-box;
    }
}

/* Aufzählung Zertifikate*/
h2.list-zertifikate {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 22px;
	margin: 0px;
	padding: 0px;
}

/* Aufzählung Vorteile Kindertagespflege*/
h2.list-vorteile {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 22px;
	margin: 0px;
	padding: 0px;
}

h3.list-zertifikate {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 22px;
	margin: 20px 0px 0px 0px;
	padding: 0px;
}
h3.list-vorteile {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 22px;
	margin: 20px 0px 0px 0px;
	padding: 0px;
}


ul.list-zertifikate {
    color: #ffffff;
    font-size: 18px;
	margin: 20px 0px 0px 18px;
	padding: 0px;
	list-style-type: square; 
}
li.list-zertifikate {
	margin-top: 10px;
}

ul.list-vorteile {
    color: #ffffff;
    font-size: 18px;
	margin: 20px 0px 0px 18px;
	padding: 0px;
	list-style-type: square; 
}
li.list-vorteile {
	margin-top: 10px;
}

ul.list-presse {
    color: #ee6c6c;
    font-size: 14px;
	margin: 0px 0px 0px 18px;
	padding: 0px;
	list-style-type: square; 
}
li.list-presse {
	margin-top: 0px;
}

a.list-presse {
    color: #ee6c6c;
    font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	text-decoration: none;
}

.list-presse a:hover {
    color: #f48c8c;
}

h4.nachwort {
    font-family: 'Nunito', sans-serif;
    color: #74c095;
    font-size: 22px;
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

h4.foerderung {
    font-family: 'Nunito', sans-serif;
    color: ##f9b44f;
    font-size: 22px;
	margin: 0px 0px 0px 0px;
	padding: 0px;
}


a.kontakt-links {
    color: #f099b6;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

a.kontakt-links:hover {
    color: #f4b0c6;
}

p.kontakt-small-spaced {
    margin-top: 10px;
}

h2.kontakt {
    font-size: 18px;
}


.btn-download{
  background-color: #f099b6;
  color: #fff;
  box-shadow: inset 0px -4px 0px rgba(0,0,0,0.05);
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  font-size: 14px;
  gap: 8px;
  min-width: 555px;
}

@media (max-width: 600px) {
.btn-download{
  min-width: 0px;
}
}

.btn-download:hover{
  background-color: #f4b0c6;
}

.btn-download-icon{
  width: 28px;
  height: 28px;
  color: #ffffff;   /* färbt DEIN SVG weiß */
  flex-shrink: 0;
}


h3.kontaktformular {
    font-family: 'Nunito', sans-serif;
    color: #ffffff;
    font-size: 22px;
	margin: 0px;
	padding: 0px;
}

h4.impressum {
    font-family: 'Nunito', sans-serif;
    color: #f099b6;
    font-size: 22px;
	margin: 0px;
	padding: 0px;
	text-align: center;
}

.page-kontakt h4.impressum + .content-area .full-width-text{
  text-align: center;
  margin: 0 auto;       /* Block mittig */
}


/* Kontaktformular (Kontaktseite) */
.kontaktform-hinweis{
  color: #ffffff;
  font-size: 14px;
  margin: 10px 0 15px 0;
}

.kontaktform{
  max-width: 550px;
  margin: 0 auto;
  padding: 18px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
}

.kontaktform-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kontaktform-full{
  grid-column: 1 / -1;
}

.kontaktform-field label{
  display: block;
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 6px 0;
}

.kontaktform-field .req{
  color: #ffffff;
  font-weight: bold;
}

.kontaktform-field input,
.kontaktform-field textarea{
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 10px;
  padding: 12px 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #444;
}

.kontaktform-field textarea{
  resize: vertical;
  min-height: 140px;
}

.kontaktform-field input:focus,
.kontaktform-field textarea:focus{
  outline: 3px solid rgba(255,255,255,0.45);
}

.kontaktform-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}


/* Honeypot verstecken */
.kontaktform-hp{
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 700px){
  .kontaktform-grid{
    grid-template-columns: 1fr;
  }
  .kontaktform-actions{
    justify-content: center;
  }
  .btn-submit{
    width: 100%;
    max-width: 350px;
  }
}


.page-kontakt .info-box-split .container{
  text-align: center;            /* Überschrift + Hinweis zentriert */
}


.page-kontakt .kontaktform {
    margin: 0 auto;
    text-align: left;
}

/* Schriftfarbe & Typografie in Kontaktformular-Feldern */
.page-kontakt .kontaktform input,
.page-kontakt .kontaktform textarea {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #f099b6; /* dunkles Rosa, sehr gut lesbar */
	text-align: left;
}

/* Platzhalter: heller & dezenter */
.page-kontakt .kontaktform input::placeholder,
.page-kontakt .kontaktform textarea::placeholder {
    color: #c88aa0; /* helles Rosa */
    font-style: italic;
}

/* Fokus-Zustand: minimal dunkler */
.page-kontakt .kontaktform input:focus,
.page-kontakt .kontaktform textarea:focus {
    color: #e387a1;
}

/* Submit-Button im Stil der Download-Buttons */
.page-kontakt .btn-submit {
    display: inline-block;
    background-color: #f099b6;          /* wie Download-Button */
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;                    /* größer als normal */
    font-weight: bold;
    padding: 10px 15px;                 /* etwas kräftiger */
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease-in-out;
}

/* Hover wie bei anderen Buttons */
.page-kontakt .btn-submit:hover {
    background-color: #f4b0c6;
}

/* Fokus (Tastatur / Accessibility) */
.page-kontakt .btn-submit:focus {
    outline: none;
    box-shadow:
        inset 0px -4px 0px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(255,255,255,0.4);
}


/* Datenschutz: KEIN weißer Wrapper-Hintergrund */
.page-kontakt .kontaktform-datenschutz .datenschutz-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;                 /* kein Feld-Look */
    background: none;
    box-shadow: none;
    border-radius: 0;
    cursor: default;
}

/* echtes Checkbox-Input unsichtbar */
.page-kontakt .kontaktform-datenschutz input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Gestyltes Kästchen */
.page-kontakt .kontaktform-datenschutz .custom-checkbox {
    width: 22px;
    height: 22px;
    background: #ffffff;        /* weißes Kästchen */
    border-radius: 6px;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
}

/* Rosa Häkchen */
.page-kontakt .kontaktform-datenschutz .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 6px;
    height: 12px;
    border: solid #f099b6;
    border-width: 0 3px 3px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    opacity: 0;
}

/* Checked-Zustand */
.page-kontakt .kontaktform-datenschutz
input[type="checkbox"]:checked + .custom-checkbox::after {
    opacity: 1;
}

/* Text: weiß wie restlicher Box-Inhalt */
.page-kontakt .kontaktform-datenschutz .datenschutz-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    cursor: default;
}

/* Link: exakt wie Footer-Link */
.page-kontakt .kontaktform-datenschutz .datenschutz-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.page-kontakt .kontaktform-datenschutz .datenschutz-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Sicherheit: kein Pointer im Rest */
.page-kontakt .kontaktform-datenschutz .datenschutz-wrapper * {
    cursor: default;
}

.page-kontakt .kontaktform-datenschutz .custom-checkbox,
.page-kontakt .kontaktform-datenschutz .datenschutz-link {
    cursor: pointer;
}

/* Abstand der Datenschutz-Checkbox wie bei anderen Formularfeldern */
.page-kontakt .kontaktform-datenschutz {
    margin-top: 16px;   /* entspricht dem Grid-Gap der Felder */
}



.kontaktform-field select{
  width: 100%;
  box-sizing: border-box;
  border: 0;
  border-radius: 10px;
  padding: 12px 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  background: #ffffff;
  color: #444;
}

.kontaktform-field select:focus{
  outline: 3px solid rgba(255,255,255,0.45);
}

.page-kontakt .kontaktform input,
.page-kontakt .kontaktform textarea,
.page-kontakt .kontaktform select {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #f099b6;
}

.antibot-frage{
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

/* Anti-Bot Layout: Aufgabe groß, Select klein daneben */
.page-kontakt .kontaktform-antibot .antibot-row{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Rechenaufgabe: 22px, fett, weiß */
.page-kontakt .kontaktform-antibot .antibot-frage{
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

/* Anti-Bot Select: etwas breiter + rechtsbündiger Inhalt */
.page-kontakt .kontaktform-antibot select{
  width: 130px;              /* +10px, damit „Bitte wählen…“ passt */
  max-width: 130px;
  padding: 8px 10px;
  font-size: 16px;
  border-radius: 10px;
  background: #ffffff;
  color: #f099b6;

  text-align: right;         /* Text im Feld rechtsbündig */
  text-align-last: right;    /* wichtig für Selects */
}

/* Dropdown-Optionen: so gut wie browserseitig möglich anpassen */
.page-kontakt .kontaktform-antibot select option{
  background: #ffffff;
  color: #f099b6;
}

/* ausgewählte Option (wirkt in vielen Browsern) */
.page-kontakt .kontaktform-antibot select option:checked{
  background: #f4b0c6;
  color: #ffffff;
}

/* Mobile: wenn’s eng wird, Zeilenumbruch zulassen */
@media (max-width: 250px){
  .page-kontakt .kontaktform-antibot .antibot-row{
    flex-wrap: wrap;
  }
  .page-kontakt .kontaktform-antibot select{
    width: 100%;
    max-width: 100%;
  }
}

.page-kontakt .kontaktform-antibot label{
  margin-top: 16px;
  display: block;
}




.page-kontakt .kontaktform-messages{
  border-radius: 10px;
  padding: 14px 16px;
  margin: 0 0 16px 0;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  max-width: 555px;
  text-align: left;
}

.page-kontakt .kontaktform-messages ul{
  margin: 0;
  padding-left: 18px;
  list-style-type: square;
  padding-left: 1.2em;   /* saubere Einrückung */
  margin: 0.5em 0;
}

.page-kontakt .kontaktform-messages.error{
  background: #ee6c6c;
  color: #ffffff;
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.06);
}

.page-kontakt .kontaktform-messages.success{
  background: #74c095;
  color: #ffffff;
  box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.06);
  font-weight: bold;
}



a.datenschutz-links {
    color: #f2d29f;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

a.datenschutz-links:hover {
    color: #f7deab;
}


.btn-datenschutz-back {
    display: inline-block;
    background-color: #f2d29f;         
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 18px;                    
    font-weight: bold;
    padding: 10px 15px;                 
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: inset 0px -4px 0px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease-in-out;
	margin-top: 18px;
}

.btn-datenschutz-back:hover {
    background-color: #f7deab;
}

.btn-datenschutz-back:focus {
    outline: none;
    box-shadow:
        inset 0px -4px 0px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(255,255,255,0.4);
}