/* ------------------------------------------
   FOOTER - Hauptcontainer
------------------------------------------ */
.footer {
  width: 100%;
  padding: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ------------------------------------------
   Footer Button
------------------------------------------ */
.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 14px 28px;
  background: linear-gradient(135deg, #6a5acd, #8a7fff);
  color: #fff;
  border: 1px solid #6a5acd;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(106, 90, 205, 0.25), 
              0 2px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

body.dark-mode .footer-button {
  background: linear-gradient(135deg, #9d7dff, #6a5acd);
  color: #fff;
  border: 1px solid #9d7dff;
  box-shadow: 0 6px 18px rgba(157, 125, 255, 0.3), 
              0 2px 6px rgba(0, 0, 0, 0.15);
}

.footer-button:hover {
  background: linear-gradient(135deg, #5a4abd, #7a6fff);
  border: 1px solid #5a4abd;
  box-shadow: 0 10px 25px rgba(106, 90, 205, 0.45), 
              0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

body.dark-mode .footer-button:hover {
  background: linear-gradient(135deg, #8567ff, #5a3acd);
  border: 1px solid #8567ff;
  box-shadow: 0 12px 28px rgba(157, 125, 255, 0.55), 
              0 4px 12px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* ------------------------------------------
   Footer Button Icon + Animation
------------------------------------------ */
.footer-button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.footer-button:hover svg {
   transform: translateY(-5px) rotate(-10deg);
}

/* ------------------------------------------
   Footer Logo + Firmenname
------------------------------------------ */
.footer-logo {
  width: 24px;   
  height: 24px;
  object-fit: contain;
  margin-right: -3px;
}

.footer-note {
  margin-top: 16px;
  font-size: 16px;
  font-weight: bolder;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px; 
  justify-content: center;
}

body.dark-mode .footer-note {
  color: var(--text-dark);
}

/* ------------------------------------------
   Copyright Icon & Textausrichtung
------------------------------------------ */
.copyright-wrapper {
  display: flex;
  align-items: center; 
  gap: 6px;
}

.copyright-wrapper i[data-lucide="copyright"] {
  width: 24px;
  height: 24px;
  stroke-width: 0;
  display: inline-flex;
  vertical-align: middle;
}

/* ------------------------------------------
   Social Icons (YouTube, FB, IG, TikTok, X)
------------------------------------------ */
.footer-social-icon {
  width: 26px;
  height: 26px;
  filter: invert(1); /* schwarz → weiß */
  transition: transform 0.3s ease, filter 0.3s ease;
}

body.dark-mode .footer-social-icon {
  filter: brightness(1);
}

.footer-socials a:hover .footer-social-icon {
  transform: rotate(15deg);
  filter: brightness(0);
}

body.dark-mode .footer-socials a:hover .footer-social-icon {
  filter: brightness(1.4);
}
