/* ========== Kolibri Footer ========== */
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 2rem 4rem;
  gap: 2rem;
  flex-wrap: wrap;

  /* Softer neutral background */
  background: #FEFCFA;
  border-top: 1px solid var(--line);
}

/* Left video */
.footer-left {
  flex: 0 0 auto;
}

.footer-video {
  width: 120px;
  height: auto;
}

/* Middle content */
.footer-middle {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
}

.footer-column {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
  color: #222;
}

.footer-column p,
.footer-column a {
  margin-top: 0;
}

.spacer {
  height: 1rem;
}

/* LinkedIn link styling */
.linkedin-link {
  text-decoration: underline;
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}

.linkedin-link:hover {
  color: #0077b5; /* LinkedIn blue on hover */
}

/* Right logo */
.footer-logo-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 100px;
  width: auto;
}

/* Responsive layout */
@media (max-width: 800px) {
  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .footer-middle {
    flex-direction: column;
    gap: 1.5rem;
  }
}
