@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 700;
  font-display: swap;
}

body {
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  background-color: #fefef2;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
}

header {
  background-image: url(../img/bg-footer.jpg);
  background-size: cover;
  background-position: right;
  padding: 25px 0;
  text-align: center;
  position: relative;
}

.logo {
  max-height: 50px;
  height: auto;
  display: block;
  margin: auto;
}

.coming-soon {
  background-color: #e30713;
  color: #fff;
  padding: 0 50px 0 10px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
}

header .coming-soon {
  position: absolute;
  right: 0;
  bottom:-22px;
}

main {
  flex-grow: 1;
}

h1 {
  text-transform: uppercase;
}

h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

ul {
  padding-left: 0;
  columns: 2;
}

li {
	margin: 0 0 3px 0;
	padding-left: 28px;
	list-style: none;
	background-image: url(../img/icons/bp.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 16px;
}


.text-red {
  color: #e30713;
}

.icon img {
  width: 32px;
}

.rounded-corners {
  border-radius: 15px;
}

.shadow {
  box-shadow: #999 5px 5px 10px !important;
}

footer {
  background-image: url(../img/bg-footer.jpg);
  font-size: 14px;
  font-weight: 400;
}

footer a {
  text-decoration: none;
  color: #000;
}

footer a:hover {
  text-decoration: underline;
}


@media (min-width: 768px) {
  .wrapper {
    padding: 0 25px;
  }

  header {
    background-image: url(../img/bg-header.jpg);
    background-position: center;
    padding: 25px 0;
    text-align: left;
  }

  h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .logo {
    margin: 0;
  }

  .coming-soon {
    padding: 5px 50px 5px 15px;
    font-size: 24px;
  }

  .icon img {
    width: 20px;
    margin-right: 10px;
  }

  footer {
    font-size: 18px;
  }
}


/*

.content-section {
  background-color: #ffffff;
  padding: 30px 20px;
  margin: 20px auto;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  width: 100%;
}

.image-section {
  margin-top: 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.image-section img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
.contact-info, .location-info {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.contact-info h3, .location-info h3 {
  color: #000; 
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-info p, .location-info p {
  margin-bottom: 5px;
  font-size: 1.1em;
  color: #555;
}
.icon {
  font-size: 1.8em;
  color: #000; 
  margin-bottom: 10px;
}
*/
.footer-section {
  background-color: #e0e0e0; /* Hellerer Grau für den Footer */
  color: #555;
  padding: 15px 10px;
  text-align: center;
  margin-top: auto; /* Sorgt dafür, dass der Footer am unteren Rand bleibt */
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 0.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Ermöglicht Umbruch auf kleinen Bildschirmen */
}
.footer-section a {
  color: #555;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.footer-section a:hover {
  color: #000;
}
.footer-logo {
  max-width: 100px; /* Kleinere Größe für das Footer-Logo */
  height: auto;
  margin-left: 15px;
  border-radius: 5px;
}
/* Responsive Anpassungen 
@media (max-width: 576px) {
  .content-section {
    padding: 20px 15px;
    margin: 15px auto;
  }
  .contact-info, .location-info {
    padding: 15px;
  }
  .footer-section {
    flex-direction: column;
  }
  .footer-section a, .footer-logo {
    margin: 5px 0;
  }
}*/