/* =========================
   FOOTER BASE
========================= */

.footer {
  background: var(--color-bg-black);
  color: var(--color-text-light);
  padding: 3rem 0 1.5rem;
}

/* =========================
   GRID LAYOUT
========================= */

.footer-inner {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;

  align-items: start;
}

/* =========================
   BRAND
========================= */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

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

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  display: inline-flex;
}

.footer-socials img {
  width: 18px;
  height: 18px;
  display: block;
  transition: 0.2s ease;
}


/* =========================
   TEXT STYLES
========================= */

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* 👈 det er den der giver “luft” */
}

.footer-contact a {
  display: block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.footer-title {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-name {
  margin: 0 0 0.5rem;
}

.footer-mail,
.footer-address-link {
  color: inherit;
  text-decoration: none;
  line-height: 1.6;
  opacity: 0.85;
}


/* =========================
   BOTTOM
========================= */

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.45;
}

/* =========================
   Hover effects
========================= */

.footer-socials a:hover img,
.footer-mail:hover,
.footer-address-link:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand,
  .footer-contact,
  .footer-address {
    text-align: left;
  }
}