/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 80px 0 40px !important;
  padding-block-start: 80px !important;
  padding-block-end: 40px !important;
  background: hsl(var(--lyselilla));
  color: hsl(var(--foreground));
  max-width: 100%;
  width: 100%;
  margin: 0;
}

/* --- Top-grid: logo venstre, nav højre ----------------------------------
   .site-footer .footer-inner bruges for at matche Hello Elementors
   specificitet og overskrive deres display:flex med vores grid. */

.site-footer .footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  max-width: none;
  width: auto;
  margin: 0;
}

@media (min-width: 768px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr 3fr;
  }
}

/* --- Logo --------------------------------------------------------------- */

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

@media (min-width: 768px) {
  .footer-logo { height: 96px; }
}

/* --- Nav-liste ---------------------------------------------------------- */

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--foreground));
  text-decoration: none;
  background-image: none !important;
  transition: color 200ms ease;
}
.site-footer .footer-nav-link:hover {
  color: hsl(var(--lilla));
}

/* --- Copyright-bar ------------------------------------------------------ */

.footer-copyright {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--foreground) / 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  color: hsl(var(--foreground) / 0.6);
}
