*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #302e47;
  color: white;
}

    .center-container {
  width: 90%;

      margin: 0 auto;
      display: flex;
      justify-content: center;		
		
    }


b
{
  color: #f4a261;
    }




    .inner {
  width: 100%;
  max-width: 600px;
  background-color: #1f1e2e;
  color: #ffffff;
  border-radius: 15px;
  padding: 20px 30px;
  text-align: justify;
  font-size: 1.0rem;

	}
    .innerheader {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.4rem;
    }


/* Header & Logo */
.container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.sky-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: auto;
}
.city-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: url('img/City.png') repeat-x bottom;
  background-size: auto 100%;
  z-index: 1;
}
.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 250px;
  z-index: 2;
}

/* Countdown */
.countdown {
	  background: #1f1e2e;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px 0;
  color: #f4a261;
}

/* Sprechblase */
.sprechblasen-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 40px 20px;
}
.figur img {
  max-width: 180px;
}
.sprechblase {
  background: #f4f4f4;
  color: #302e47;
  border-radius: 20px;
  padding: 20px 30px;
  max-width: 500px;
  text-align: center;
  font-weight: bold;
  position: relative;
}
.sprechblase::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  border: 20px solid transparent;
  border-right-color: #f4f4f4;
}
.sprech-button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #f4a261;
  color: #302e47;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* Footer */
.footer {
  background: #1f1e2e;
  color: #bbb;
  text-align: center;
  padding: 30px 16px;
  font-size: 0.9rem;
}
.footer a {
  color: #f4a261;
  text-decoration: none;
  margin: 0 8px;
}
.footer a:hover {
  text-decoration: underline;
}


   .swiper {
      width: 90%;
	   max-width: 1080px;
      height: 90%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

.swiper-button-next, .swiper-button-prev{ color:white;}


/* Mobile */
@media (max-width: 767px) {
  .container { height: 200px; }
  .logo { height: 180px; }
  .sprechblasen-container {
    flex-direction: column;
  }
  .sprechblase::before {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    border: 20px solid transparent;
    border-bottom-color: #f4f4f4;
    border-top: 0;
    border-left: 0;
    border-right: 0;
  }
}

   .swiper {
      width: 95%;
      height: 95%;
    }

    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

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

