/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-dark);
  color: var(--color-text-light);
  padding: 60px 20px 25px;
}

/* ========================================
   FOOTER CONTAINER
   ======================================== */

.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;

  display: flex;
  flex-direction: column;

  gap: 40px;
}

/* ========================================
   HEADINGS
   ======================================== */

.footer h2,
.footer h3 {
  color: var(--color-primary);
}

.footer h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ========================================
   TEXT
   ======================================== */

.footer p {
  line-height: 1.7;
  opacity: 0.9;
}

/* ========================================
   LINKS – EINHEITLICH
   ======================================== */

.footer a {
  color: var(--color-text-light);

  text-decoration: none;

  transition:
    color var(--transition),
    transform var(--transition);
}

.footer a:hover {
  color: var(--color-primary);
}

/* ========================================
   NAVIGATION
   ======================================== */

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

.footer li {
  margin-bottom: 10px;
}

.footer-navigation a {
  display: inline-block;
}

.footer-navigation a:hover {
  transform: translateX(3px);
}

/* ========================================
   KONTAKT
   ======================================== */

.footer-contact a {
  display: inline-block;
}

/* ========================================
   FOOTER BOTTOM
   ======================================== */

.footer-bottom {
  max-width: var(--container-width);
  margin: 40px auto 0;

  padding-top: 20px;

  border-top: 1px solid var(--color-border);

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 15px;

  text-align: center;
}

/* ========================================
   LEGAL LINKS
   ======================================== */

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 20px;
}

.footer-legal a {
  display: inline-block;
}

/* ========================================
   DESKTOP
   ======================================== */

@media (min-width: 1024px) {
  .footer-container {
    flex-direction: row;

    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand {
    max-width: 300px;
  }

  .footer-bottom {
    flex-direction: row;

    justify-content: space-between;
    align-items: center;

    text-align: left;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}