/*------------------------------
  ----------------------------------------------Footer Styles (2026 Fresh)
------------------------------*/

.site-footer {
  background-color: #222;
  color: #ddd;
  padding: 2.5rem 2rem;
  font-family: system-ui, sans-serif;
  font-size: 0.9rem;
  text-align: center;
  border-top: 2px solid #444;
  user-select: none;
}

.footer-navigation {
  margin-bottom: 1.5rem;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 480px;
}

.footer-menu li {
  margin: 0;
}

.footer-menu a {
  color: #bbb;
  text-decoration: none;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    transform 0.2s ease;
}

.footer-menu a:hover,
.footer-menu a:focus {
  color: #fff;
  background-color: #444;
  transform: translateY(-2px);
  outline: none;
}

.site-info p {
  margin: 0;
  color: #888;
  font-style: italic;
  user-select: text;
}

/* Social Links Container */
.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 1rem;
  padding-bottom: 1rem;
}

/* SOCIAL */
.social-links a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222;
  color: #fff;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-links a:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* SVG Sizing */
.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Brand Colors on Hover */
.social-links a.facebook:hover   { background-color: #1877F2; }
.social-links a.instagram:hover  { background-color: #E1306C; }
.social-links a.bluesky:hover    { background-color: #0A7AFF; }
.social-links a.x-twitter:hover  { background-color: #000000; }
.social-links a.linkedin:hover   { background-color: #0A66C2; }
.social-links a.spotify:hover    { background-color: #1DB954; }