.elementor-kit-6{--e-global-color-primary:#002942;--e-global-color-secondary:#EFEBEC;--e-global-color-text:#FFFFFF;--e-global-color-accent:#B4DDF9;--e-global-typography-primary-font-family:"DM Serif Display";--e-global-typography-primary-font-size:60px;--e-global-typography-primary-font-weight:400;--e-global-typography-primary-font-style:italic;--e-global-typography-secondary-font-family:"Work Sans";--e-global-typography-secondary-font-size:32px;--e-global-typography-secondary-font-weight:600;--e-global-typography-text-font-family:"Work Sans";--e-global-typography-text-font-size:25px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Work Sans";--e-global-typography-accent-font-size:48px;--e-global-typography-accent-font-weight:700;--e-global-typography-13f971b-font-family:"Pacifico";--e-global-typography-13f971b-font-size:60px;--e-global-typography-13f971b-font-style:normal;background-color:#002942;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:100%;}.e-con{--container-max-width:100%;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
  --primary: #FF0033;
  --dark-blue: #002942;
  --darker-blue: #001d30;
  --light-blue: #123a55;
  --light: #EFEBEC;
  --accent: #B4DDF9;

  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Work Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-blue);
  color: var(--light);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  margin-top: 0;
}

/* Abschnitte allgemein */
.section {
  padding: 100px 20px;
  width: 100%;
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
}

/* Teaser-Layout */
.teaser-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 60px;
}

.teaser-img {
  max-width: 300px;
  border-radius: 10px;
  flex-shrink: 0;
}

.teaser-text {
  flex: 1;
}

.teaser-text h3 {
  font-size: 30px;
  margin-bottom: 10px;
}

.teaser-text p {
  font-size: 20px;
  margin-bottom: 20px;
}

.teaser-text .button {
  display: inline-block;
  background-color: #B4DDF9;
  color: var(--dark-blue);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  margin-top: 10px;
}

.teaser-text .button:hover {
  background-color: #FFD700;
  color: var(--dark-blue);
}

/* Globale Buttons */
.button {
  background-color: #B4DDF9;
  color: var(--dark-blue);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-family: var(--font-body);
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #FFD700;
  color: var(--dark-blue);
}

/* Responsive Teaser */
@media (max-width: 768px) {
  .teaser-block {
    flex-direction: column;
    text-align: center;
  }

  .teaser-img {
    margin: 0 auto;
  }

  .teaser-text {
    font-size: 16px;
  }

  .teaser-text .button {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .nav-links a {
    font-size: 18px;
  }

  h1 {
    font-size: 38px !important;
  }

  h2 {
    font-size: 28px !important;
  }

  p {
    font-size: 16px !important;
  }

  .button {
    font-size: 16px !important;
    padding: 10px 20px;
  }
}

#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  z-index: 9999;
  background-color: #B4DDF9;
  color: #002942;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#backToTop:hover {
  background-color: #FFD700;
  color: #002942;
}

#backToTop.show {
  opacity: 1;
  pointer-events: auto;
}

:root {
  --burger-color: #B4DDF9;
}
.burger span {
  background-color: var(--burger-color);
}

@media (max-width: 768px) {

  /* HERO Bereich */
  .hero {
    height: 60vh !important;
    padding: 0 10px !important;
  }

  .hero .hero-content {
    padding: 20px !important;
    max-width: 90% !important;
  }

  .hero h1 {
    font-size: 32px !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  .hero p {
    font-size: 18px !important;
    text-align: center !important;
  }

  .hero .button {
    font-size: 16px !important;
    padding: 10px 20px !important;
  }

  /* TEASERBEREICHE */
  .section {
    padding: 50px 15px !important;
  }

  .teaser-block {
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .teaser-block img {
    max-width: 240px !important;
    width: 100% !important;
    height: auto !important;
  }

  .teaser-text h3 {
    font-size: 22px !important;
  }

  .teaser-text p {
    font-size: 16px !important;
  }

  .teaser-text .button {
    font-size: 16px !important;
    padding: 10px 24px !important;
    margin-top: 10px !important;
  }
}
a.button:hover {
  background-color: #FFFFFF !important;
  color: #002942 !important; /* Damit der Text auf weißem Hintergrund lesbar bleibt */
}
.wave-transition {
  line-height: 0;
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: -1px; /* verhindert Lücken */
}
.wave-transition svg {
  display: block;
  width: 100%;
  height: auto;
}/* End custom CSS */