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

body {
  font-family: 'Poppins', sans-serif;
  background: #000000;
  color: #111;
}

header {
  background: #000000;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo img {
    max-height: 40px;
    filter: brightness(0) invert(1);
    width: auto;
    height: auto;
}

.desktop-nav a,
.mobile-nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.5rem;
  font-weight: bold;
}

.desktop-nav {
  display: flex;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 25px;
  background: white;
  margin: 4px 0;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #000000;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.mobile-nav a {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


.spacer {
  height: 40px;
}

footer {
  background: #000000;
  color: white;
  padding: 4rem 2rem;
  font-size: 0.9rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

/* Linke Spalte */
.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-left ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-left ul li {
  margin-bottom: 0.7rem;
}

.footer-left ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-left ul li a:hover {
  color: #0DFDB1;
}

/* Mittlere Spalte */
/* Mittlere Spalte */
.footer-center {
  flex: 1;
  justify-content: center;
  align-items: center;
  min-width: 200px;
  text-align: center;
}

.footer-center p {
  margin-bottom: 10px; /* Abstand zwischen Text und Icon */
}

.footer-center .footer-icon {
  display: block;
  font-size: 2.5rem; /* Größe des Icons */
  color: #0DFDB1;
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none; /* Entfernt die Link-Optik */
}

.footer-center .footer-icon:hover {
  color: white;
  transform: scale(1.2);
}


/* Rechte Spalte */
.footer-right {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 1rem;
}

.footer-right .social-media a {
  color: #0DFDB1;
  margin-left: 1rem;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-right .social-media a:hover {
  color: white;
}

.footer-logo img {
  max-height: 60px;
  filter: brightness(0) invert(1);
  width: auto;
  height: auto;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-right .social-media a {
    margin-left: 0.8rem;
    margin-right: 0.8rem;
  }
}

/* FOOTER VORBEI */


@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }

}