/* ----------------------------------
   FOOTER – Sørsia Fysioterapi (ROBUST)
----------------------------------- */

.site-footer {
  background-color: #0f172a; /* mørk blå-grå */
  color: #e5e7eb;
  padding: 3rem 0 2rem;
  border-top: 1px solid #1e293b;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
}


/* ----------------------------------
   FOOTER BRAND / LOGO
----------------------------------- */

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 260px;
}

/* SVG-LOGO – HARD LÅSING */
.footer-logo {
  display: block;
  max-height: 36px;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

/* KVEL SVG FULLSTENDIG */
.footer-brand,
.footer-logo {
  overflow: hidden;
}

/* ----------------------------------
   TITLER
----------------------------------- */

.site-footer h3,
.site-footer h4 {
  margin: 0 0 0.6rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: #f9fafb;
}

/* ----------------------------------
   TEKST
----------------------------------- */

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #d1d5db;
}

/* ----------------------------------
   LENKER
----------------------------------- */

.site-footer a {
  color: #bfdbfe;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #e0f2fe;
  text-decoration: underline;
}

/* ----------------------------------
   FOOTER BOTTOM
----------------------------------- */

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid #1f2937;
  text-align: center;
  font-size: 0.85rem;
  color: #9ca3af;
}


/* ----------------------------------
   MOBIL
----------------------------------- */

@media (max-width: 768px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-logo {
    max-height: 34px;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}

