/* Globales Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hintergrund allgemein */
body {
  font-family: 'Arial', sans-serif;
  color: white;
  text-align: center;
  background-image: url("images/earducateBackground.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Container mit halbtransparentem Weiß */
.logo-container {
  background: rgba(255, 255, 255, 0.4);
  padding: 2rem 3rem;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  display: inline-block;
  animation: fadeIn 1.2s ease-in-out;
}

/* Logo-Design */
.logo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

/* Titel */
h1 {
  margin-top: 1.5rem;
  font-size: 2rem;
  color: #222;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Mobile Optimierung */
@media screen and (max-width: 768px) {
  body {
    background-image: url("images/earducate_background_mobile.webp");
    background-size: cover;
    background-position: top center;
    padding: 1rem;
  }

  .logo-container {
    padding: 1rem 1.5rem;
  }

  .logo {
    max-width: 200px;
  }

  h1 {
    font-size: 1.4rem;
  }
}
