/* Globale Styles */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #ffffff;
  background: url('background.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Logo oben links */
.logo {
  position: fixed;
  top: 0;       /* direkt am oberen Rand */
  left: 0;      /* direkt am linken Rand */
  margin: 20px; /* einheitlicher Abstand */
  width: 140px; /* Logo-Größe */
  height: 50px;
  background: url('Tada_Labs_BL_Logo01_300_white.png') no-repeat center left;
  background-size: contain;
  display: block;
  z-index: 100;
  text-indent: -9999px; /* Text ausblenden */
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
}

/* Landingpage */
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

h1, p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  animation-delay: 0.2s;
}

p.developing {
  font-size: 3rem; /* Größere Schrift für Claim */
  margin: 1rem 0;
  animation-delay: 0.6s;
}

p.stay-tuned {
  font-size: 2.5rem; /* Größere Schrift für 'Stay tuned' */
  font-weight: bold;
  margin-top: 1rem;
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  color: #ffffff;
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

footer a {
  color: #ffffff;
  text-decoration: underline;
}

/* Impressum */
section {
  max-width: 50rem;
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(0,0,0,0.7); /* dunkler Hintergrund für Lesbarkeit */
  border-radius: 1rem;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

section p {
  margin: 0.3rem 0;
}

.note {
  font-size: 0.85rem;
  color: #d1d5db;
  margin-top: 1rem;
}

section a {
  display: inline-block;
  margin-top: 1.5rem;
  color: #ffffff;
  text-decoration: underline;
}
