/* =====================================================
   Aliscon Footer v1.0.0
===================================================== */

.af-footer {
  background: #00192F;
  color: rgba(255,255,255,0.7);
  font-family: 'Albert Sans', -apple-system, sans-serif;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  position: relative;
  overflow: hidden;
}

/* ── Top stripe ── */
.af-footer__top {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 56px 0 48px;
}
.af-footer__top-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Kolonne: Om ── */
.af-col__logo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.af-logo-tekst {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.af-logo-hoved {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1;
}
.af-logo-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}


/* ── Kontaktinfo ── */
.af-kontakt-liste {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.af-kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}
.af-kontakt-item svg {
  width: 14px; height: 14px;
  color: #DB8C28;
  flex-shrink: 0;
  margin-top: 2px;
}
.af-kontakt-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .18s;
}
.af-kontakt-item a:hover { color: #DB8C28; }
.af-kontakt-item strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
}

/* ── Nav kolonner ── */
.af-col__titel {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #ffffff !important;
  margin: 0 0 16px;
}
.af-nav-liste {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.af-nav-liste a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 500;
  transition: color .18s;
  display: inline-block;
}
.af-nav-liste a:hover { color: #fff; }

/* ── Divider ── */
.af-footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── Bottom bar ── */
.af-footer__bottom {
  padding: 20px 0;
}
.af-footer__bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.af-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
}
.af-politik-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.af-politik-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: color .18s;
}
.af-politik-links a:hover { color: rgba(255,255,255,0.7); }

/* ── Gå til top knap ── */
.af-top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #DB8C28;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9960;
  box-shadow: 0 4px 20px rgba(219,140,40,0.5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease, background .18s, box-shadow .18s;
  border: 2px solid rgba(255,255,255,0.2);
  text-decoration: none;
}
.af-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.af-top-btn:hover {
  background: #C57A1B;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(197,122,27,0.5);
}
.af-top-btn svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: #fff;
}

/* ── Responsiv ── */
@media (max-width: 960px) {
  .af-footer__top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .af-col__logo { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 40px; }
  .af-col__tagline { max-width: none; }
}
@media (max-width: 600px) {
  .af-footer__top-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .af-col__logo { flex-direction: column; gap: 16px; grid-column: auto; }
  .af-footer__top { padding: 40px 0 36px; }
  .af-footer__bottom-inner { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .af-top-btn { bottom: 20px; right: 20px; }
}

/* Footer custom logo */
.af-footer-logo {
  max-height: var(--af-logo-h, 60px);
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}
