@charset "utf-8";
/* CSS Document */

body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #ffd6e0, #c6f5ff, #e4ffc9, #ffe9b4);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container img {
  width: 592px;
  height: 422px;
  opacity: 0;
  transform: scale(0.95);
  animation: fadeInZoom 1.2s ease forwards;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-container img:hover {
  transform: scale(1.02);
  filter: brightness(1.1) saturate(1.2);
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes fadeInZoom {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.brand-name {
  font-family: 'Segoe UI', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInBrand 1.4s ease 0.8s forwards;
  text-align: center;
  letter-spacing: 0.05em;
}
@keyframes fadeInBrand {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.85); /* leicht durchsichtiges Weiß */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-family: 'Segoe UI', sans-serif;
  border-top: 1px solid #ccc;
  z-index: 999;
  backdrop-filter: blur(6px); /* schöner Effekt bei Animationen */
}

.footer-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  color: #333;
}

.site-footer a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #0077cc;
}

@media (max-width: 768px) {
  .logo-container img {
    width: 300px; /* statt 592px */
    height: auto;
  }

  .brand-name {
    font-size: 1.4rem;
    margin-top: 12px;
  }

  .site-footer {
    font-size: 0.75rem;
    height: 45px;
    padding: 0 10px;
  }

  .footer-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
}

