.site-footer {
  background: var(--color-bg-footer);
  padding-top: 4rem;
  margin-top: 4rem;
  width: 100vw; /* Tvinger fuld viewport bredde */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--page-margin) 4rem var(--page-margin);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr 1.8fr; /* Giver kortet endnu mere plads */
  gap: 3rem;
}

.footer-col h3 {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-dark);
  text-decoration: none;
}

.footer-brand .site-header__logo {
  display: block;
  width: 200px;
  margin-bottom: 1.5rem;
}

.footer-brand .site-header__logo svg {
  width: 100%;
  height: auto;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-socials .icon svg {
  fill: var(--color-dark);
  width: 2.5rem;
  height: 2.5rem;
}

.footer-list,
.footer-hours {
  list-style: none;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.footer-col-map {
  width: 100%;
}

.footer-map {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

/* DEN LYSE BJÆLKE */
.footer-bottom {
  background: var(--color-white); /* Den lyse nuance fra dit billede */
  width: 100%;
  padding: 1.2rem 0;
  text-align: center;
  margin-top: 0;
}

.footer-bottom p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--color-dark);
}

/* Responsiv tilretning */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand .site-header__logo,
  .footer-socials {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .footer-hours {
    padding-inline: var(--space-lg);
  }
}
