.footer {
  background: #1e1e1e;
  color: #ccc;
  text-align: center;
  padding: 40px 10%;
  font-size: 0.9rem;
}

.footer a {
  color: #ff9800;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-social img {
  width: 28px;
  margin: 10px 8px;
  filter: brightness(0) invert(1); /* weiße Icons */
  transition: transform 0.3s;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-copy {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #777;
}



/* POPUP / MODAL */
.legal-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.legal-content {
  background: #fff;
  color: #222;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.3s ease;
}

.close-legal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
}

.close-legal:hover {
  color: #000;
}

@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.95);}
  to {opacity: 1; transform: scale(1);}
}
