/* ==========================================================================
   SISTEM REKOMENDASI KARIER MAHASISWA - FOOTER STYLES
   File: assets/css/footer.css
   ========================================================================== */

.landing-footer {
  background-color: var(--slate-900);
  color: var(--slate-400);
  padding: 65px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer-brand-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-gold);
  letter-spacing: 0.5px;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--slate-400);
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-400);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-access-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.footer-access-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--slate-400);
}

@media (min-width: 768px) {
  .footer-bottom-bar {
    flex-direction: row;
  }
}
