/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-logo {
  height: 100px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

.footer-col h4 {
  font-size: 15px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-col ul li a {
  color: #cbd5f5;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #facc15;
}

/* SOCIAL LINKS */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #e5e7eb;
  font-size: 18px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #facc15;
  color: #0f172a;
  transform: translateY(-3px);
}


/* BOTTOM BAR */
.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 13px;
  background: #020617;
  color: #94a3b8;
}

.footer-credit {
  margin-top: 16px;
  font-size: 13px;
  color: #94a3b8;
  text-align: center;
}

.footer-credit a {
  color: #e5e7eb;
  font-weight: 500;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #0a66c2; /* LinkedIn blue */
  text-decoration: underline;
}

.footer-credit .heart {
  color: #ef4444;
}


/* RESPONSIVE */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-social a {
    margin-right: 8px;
  }
}

@media (max-width: 600px) {
  .footer-credit {
    font-size: 12px;
  }
}

