/* ---------------------------------- */
/* Footer sectie */
/* ---------------------------------- */
:root {
  --footer-text-color: #fff;
  --footer-link-hover: #d1d8e0;
  --primary-color: #2575fc;
  --secondary-color: #6a11cb;
  --gradient: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto; /* Zorgt ervoor dat de footer onderaan blijft */
  align-items: center;
  top: 100vh;
  flex-wrap: wrap;
  background: var(--gradient);
  padding: 20px;
  color: var(--footer-text-color);
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
}

.footer-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.copyText {
  font-size: 1.3em;
  text-align: center;
  color: var(--footer-text-color);
}

.footer-links h3 {
  font-size: 1.3em;
  font-weight: 700;
  color: var(--footer-text-color);
  margin: 0;
  white-space: nowrap;
}

.footer-links h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: var(--footer-text-color);
  margin: 5px auto;
  border-radius: 2px;
}

.footer-links ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links li:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-links a {
  color: var(--footer-text-color);
  text-decoration: none;
  font-size: 1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

/* ---------------------------------- */
/* Responsieve aanpassingen */
/* ---------------------------------- */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links ul {
    flex-direction: column;
    gap: 10px;
  }
}
