
/* =========================================================
   LJH Webb – Footer (Aqua Style Inspired)
   /assets/style/footer.css
   ========================================================= */

/* Container */
.ljh-footer {
  margin-top: 4rem;
  background: linear-gradient(to bottom, #f8faff, #eef2ff);
  border-top: 1px solid #dbeafe;
  padding-top: 2rem;
  color: #1e293b;
  font-family: system-ui, sans-serif;
}

footer {
  position: relative;
  z-index: 50; /* högre än snön */
}



/* Inner grid */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;

  align-items: start;
}

/* Logo + branding */
.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e40af;
}

/* Footer links */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  font-size: .95rem;
}

.footer-nav a {
  color: #1e3a8a;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* Version box */
.footer-version {
  font-size: .9rem;
  color: #334155;
}

.v-current {
  font-weight: 600;
  color: #1e3a8a;
}

.v-next {
  opacity: .75;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  padding: 1rem;
  margin-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
  font-size: .85rem;
  opacity: .75;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-nav {
    align-items: center;
  }
}
