/* ===========================
   FOOTER.CSS – Unified Premium Final (Manger Transporte)
   =========================== */

footer.footer-clean {
  background: #0e1117;
  color: var(--clr-bg-light);
  font-family: 'Poppins', sans-serif;
  padding: 26px 20px 38px;
  border-top: 3px solid var(--clr-accent-light);
  text-align: left;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

/* ===== WRAPPER ===== */
.footer-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

/* ===== LINKE SPALTE ===== */
.footer-left {
  flex: 1;
  min-width: 320px;
}
.footer-title {
  font-weight: 700;
  font-size: 1.05em;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.footer-left p {
  margin: 3px 0;
  line-height: 1.5;
  color: #e5e7eb;
}

/* ===== KONTAKT ===== */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.2s, text-shadow 0.2s;
}
.footer-contact a:hover {
  color: var(--clr-accent-light);
  transform: translateX(3px);
  text-shadow: 0 0 6px rgba(96, 165, 250, 0.4);
}

/* ===== RECHTE SPALTE ===== */
.footer-right {
  flex: 1;
  min-width: 250px;
}
.footer-heading {
  color: var(--clr-white);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.05em;
}

/* ===== NAVIGATION ===== */
.footer-navlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-navlist li {
  margin-bottom: 6px;
}
.footer-navlist a {
  color: #9ca3af;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.2s;
}
.footer-navlist a:hover {
  color: var(--clr-accent-light);
  text-shadow: 0 0 6px rgba(96, 165, 250, 0.4);
}


/* ===== COOKIE-LINKS & COPYRIGHT ===== */

/* ===== COOKIE-LINKS & COPYRIGHT ===== */
.footer-bottom {
  max-width: 1100px;
  margin: 28px auto 0;
  border-top: 1px solid #1f2937;
  padding: 14px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9em;
  line-height: 1.5;
  flex-wrap: wrap;
  gap: 10px;
}

/* reiner Inhalt – KEIN Layout */
.footer-cookie {
  max-width: 1100px;        /* exakt wie deine Content-Boxen */
  margin: 0 auto;          /* Container zentrieren */
  padding: 0 20px;         /* gleicher Seitenabstand wie oben */
  display: flex;
  justify-content: flex-start;  /* LINKS ausrichten */
  align-items: center;
  gap: 12px;
}

.footer-links a,
.footer-cookie a {
  color: var(--clr-accent-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
}
.footer-links a:hover,
.footer-cookie a:hover {
  color: var(--clr-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-shadow: 0 0 6px rgba(79, 139, 255, 0.5);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* ---- TABLET (≤900px) ---- */
@media (max-width: 900px) {
  footer.footer-clean {
    text-align: center;
    padding: 28px 16px 38px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .footer-left,
  .footer-right {
    width: 100%;
    padding: 0;
  }

  .footer-contact {
    align-items: center;
  }
  .footer-contact a {
    justify-content: center;
    font-size: 0.95em;
  }

  .footer-navlist {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-top: 24px;
  }

  .footer-cookie,
  .footer-links {
    justify-content: center;
    gap: 10px;
  }
}

/* ---- HANDY (≤600px) ---- */
@media (max-width: 600px) {
  footer.footer-clean {
    padding: 30px 12px 36px;
  }

  .footer-wrapper {
    gap: 22px;
  }

  .footer-navlist a,
  .footer-contact a {
    font-size: 0.9em;
  }

  .footer-bottom {
    font-size: 0.85em;
    margin-top: 20px;
  }
}


/* ===== Scroll-to-Top Button ===== */
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  z-index: 9000;
}
.scroll-top:hover {
  background: var(--clr-accent-light);
  transform: translateY(-3px);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

