
.site-footer {
  background: #000;          /* black background */
  color: #eee;               /* light text */
  display: flex;             /* align left/right */
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;      /* small height */
  font-size: 0.85rem;
  width: 100%;
  box-sizing: border-box;
}

.footer-left {
  text-align: left;
}

.footer-right {
  display: flex;
  gap: 1rem;                 /* spacing between icons */
}

.footer-icon {
  color: #eee;               /* light gray icons */
  text-decoration: none;     /* no underline */
  font-size: 1.2rem;         /* slightly larger for visibility */
}

.footer-icon:hover {
  color: #ff6b35;            /* highlight on hover */
}