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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #1a1a1a, #000);
  color: #e0e0e0;
  min-height: 100vh;
}

/* Welcome Intro */
.welcome-animation {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100vh;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: introFadeOut 4s ease-in-out forwards;
}

@keyframes introFadeOut {
  0% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

.intro-content {
  text-align: center;
  animation: contentFadeIn 2s ease-in-out;
}

@keyframes contentFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.intro-logo {
  width: 80px;
  margin-bottom: 1rem;
}

.gradient-text {
  font-size: 2.5rem;
  font-weight: 600;
  background: linear-gradient(90deg, #00bfff, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.powered-by {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1rem;
}

/* Header */
header#mainHeader {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  padding: 0.7rem 2rem;
  z-index: 10;
  border-bottom: 1px solid #333;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-logo {
  width: 35px;
  height: auto;
}

.logo-text {
  font-weight: 600;
  color: #00bfff;
  font-size: 1.2rem;
}

/* Main */
main#mainContent {
  padding: 6rem 2rem 2rem;
  opacity: 0;
  transform: translateY(40px);
  animation: contentReveal 2s ease-out 4s forwards;
}

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

/* Müllplan-Karte */
.plan-container {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(30, 30, 30, 0.75);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #333;
}

.plan-container h2 {
  text-align: center;
  color: #00bfff;
  margin-bottom: 1.5rem;
}

#muellListe {
  list-style: none;
  padding: 0;
}

#muellListe li {
  background: #222;
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 4px solid #00bfff;
  transition: 0.2s;
}

#muellListe li.aktuell {
  border-left: 4px solid #4ecdc4;
  background-color: #2a2a2a;
  font-weight: bold;
}

/* Fehler */
.error-message {
  color: #ff5555;
  margin-top: 1rem;
  text-align: center;
}

/* Footer */
.footer {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  padding: 2rem 1rem;
}