@charset "UTF-8";
@font-face {
  font-family: "Pangolin";
  src: url("../fonts/Pangolin-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: "GloriaHallelujah";
  src: url("../fonts/GloriaHallelujah-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: "ArchitectsDaughter";
  src: url("../fonts/ArchitectsDaughter-Regular.ttf") format("TrueType");
}
@font-face {
  font-family: "Playwrite";
  src: url("../fonts/PlaywriteDESAS-VariableFont_wght.ttf") format("TrueType");
}
p {
  font-family: "Pangolin", cursive;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}

.container {
  background-color: #f5f5f5;
  max-width: 85%;
  margin: 2rem auto 0 auto;
  padding: 2rem;
  min-height: 100vh;
}
.container ul {
  color: #2c2c2c;
  font-family: "Pangolin", cursive;
  font-size: 1.5rem;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.container ul li {
  margin-bottom: 0.7rem;
}

@media (max-width: 768px) {
  .container {
    padding: 0.5rem;
    max-width: 100%;
  }
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.link-big {
  font-size: 1.5rem;
  font-weight: bold;
  font-style: italic;
  font-family: "Pangolin", cursive;
  color: #02419c;
  text-align: center;
}

.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Fontstyle italic */
.fs-italic {
  font-style: italic;
}

/* Größere Schrift */
.fs-larger {
  font-size: larger !important;
}

h2 {
  font-family: "Pangolin", cursive;
  font-size: 2rem;
  color: #696969;
  margin-bottom: 1rem;
}

h3 {
  font-family: "Pangolin", cursive;
  font-size: 1.5rem;
  color: #404040;
  margin-bottom: 0.5rem;
}

.wichtig {
  color: #b71c1c;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.schreibschrift {
  font-family: "Playwrite", cursive;
  font-size: 1.5rem;
  color: green;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .schreibschrift {
    font-size: 1.1rem;
  }
}
hr {
  margin-bottom: 3rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: white;
  background-color: white;
  background-image: url("../img/Kinderspaziergang_2.png");
  background-size: cover;
  background-repeat: no-repeat;
}

/* === NAVIGATION === */
nav {
  background: #02419c;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3rem;
}

.nav-brand {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Burger-Icon */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 3px;
  background: #fff;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 3px;
  font-size: 0.95rem;
}
.nav-links a:hover, .nav-links a:focus {
  background: rgba(255, 255, 255, 0.18);
}

.active {
  background-color: #b71c1c !important;
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 56px;
    background: #02419c;
    flex-direction: column;
    padding: 0.5rem 1rem 1rem;
    display: none;
    width: 40%;
  }
  .nav-links.show {
    display: flex;
  }
}
.page-titel {
  font-family: "ArchitectsDaughter", sans-serif;
  font-size: 2.5rem;
  color: darkblue;
  text-align: center;
}

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

/* === FOOTER === */
.site-footer {
  background: #02419c;
  color: #fff;
  text-align: center;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
  height: 2.5rem;
}
.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.site-footer a:hover {
  text-decoration: underline;
}

/* === BETREUUNGSZEITEN === */
.grid-2x5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
  grid-template-rows: repeat(5, auto); /* 5 Reihen */
  gap: 1rem;
  margin: 2rem auto;
  width: 50%;
}

@media (max-width: 768px) {
  .grid-2x5 {
    width: 90%;
  }
}
.grid-2x5 > div {
  background: #ffffff;
  color: #333;
  font-family: "Pangolin", cursive;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* KONTAKT */
.kontakt {
  color: #1010cc;
  width: 100%;
  margin-top: 5%;
  position: relative;
  align-content: center;
}
.kontakt h1 {
  position: relative;
  top: 2%;
  text-align: center;
}

.email {
  color: #1010cc;
  font-weight: bold;
  text-decoration: none;
}

.contact-box {
  background: #ffffff;
  color: #333;
  font-family: "Pangolin", cursive;
  font-size: 1.5rem;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: fit-content;
  margin: 0 auto;
}
.contact-box .fb {
  font-weight: bold;
}
.contact-box .lh {
  line-height: 1.5rem;
}

/* === RÄUMLICHKEITEN === */
.carousel {
  position: relative;
  width: 60%;
  margin: auto;
  overflow: hidden;
}

.carousel-track img {
  width: 100%;
  display: none;
  border: solid 5px #02419c;
  border-radius: 10px;
}

.carousel-track img.active {
  display: block;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 1480px) {
  .carousel {
    width: 70%;
  }
}
@media (max-width: 1280px) {
  .carousel {
    width: 80%;
  }
}
@media (max-width: 1024px) {
  .carousel {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .carousel {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
