.site-footer {
  background: #0f0f0f;
  color: #f0f0f0;
  padding: 14px 0;
  text-align: center;
  font-size: 0.9em;
  border-top: 1px solid #333;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer-logo img {
  display: block;
  max-width: 200px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-logo img:hover {
  opacity: 1;
}

/* links */
.footer-links{
  display:inline-flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  margin-top:6px;
  flex-wrap:wrap;
}

.footer-link{
  color:#f0f0f0;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,0.18);
  padding-bottom:2px;
}

.footer-link:hover{
  border-bottom-color:rgba(255,255,255,0.6);
}

.footer-dot{
  opacity:0.6;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  .footer-logo img {
    max-width: 150px;
  }
}