body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  overflow-x: hidden; /* verhindert horizontales Scrollen */
  overflow-y: auto;   /* erlaubt vertikales Scrollen */
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('../image/sb1.jpg') no-repeat center center fixed;
  background-size: cover;
  filter: blur(8px) brightness(0.8);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.3); /* dunkler Schleier f端r Kontrast */
  z-index: -1;
}


.hero-section {
  text-align: center;
  padding: 3rem 1rem;
}

.logo .script {
  font-family: 'Brush Script MT', cursive;
  font-size: 2rem;
}

.hero-text h1 {
  font-family: 'Tan Mon Cheri', cursive;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}


.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.progress-section {
  margin-top: 3rem;
}

.progress-bar-container {
  background: rgba(255, 255, 255, 0.3);
  height: 10px;
  width: 300px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  background: #f78db3;
  height: 10px;
  width: 0%;
  transition: width 2s ease;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  width: 300px;
  margin: 0.3rem auto 0;
  font-size: 0.85rem;
}

/* Optional: Footer auslagern, falls nicht schon gemacht */
.footer {
  background: rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.footer a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
}
.footer-text {
  margin-top: 0.5rem; /* Abstand zwischen Links und ©-Text */
}

.footer a:hover {
  text-decoration: underline;
}
/* Neue Grundstruktur */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
}

.logo-img {
  width: 600px;
  height: auto;
  margin-bottom: 2rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
}

@font-face {
  font-family: 'Tan Mon Cheri';
  src: url('fonts/tan-mon-cheri.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
.newsletter-section {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
}

.newsletter-section p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  width: 250px;
  max-width: 80%;
}

.newsletter-form button {
  background-color: #f78db3;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #e26f9f;
}


.magic-script {
  font-family: 'Tan Mon Cheri', cursive;
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.back-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  background-color: #f78db3;
  color: white;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.back-button:hover {
  background-color: #e0679e;
}



/* Smartphones (bis 600px) */
@media screen and (max-width: 600px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .logo-img {
    width: 80%;
  }

  .progress-bar-container,
  .progress-labels {
    width: 80%;
  }

  .footer a {
    display: block;
    margin: 0.5rem 0;
  }

  .footer {
    font-size: 0.8rem;
  }
}

/* Tablets (601px – 1024px) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .logo-img {
    width: 400px;
  }

  .progress-bar-container,
  .progress-labels {
    width: 70%;
  }
}

/* Kleine Laptops / Desktops (1025px – 1440px) */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .logo-img {
    width: 500px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}

/* Große Bildschirme (ab 1441px) */
@media screen and (min-width: 1441px) {
  .logo-img {
    width: 600px;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }
}
