/* Footer base: light background, centered text, spacing */
footer {
  background-color: #272727;
  color: var(--color-text);
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

/* Wrapper keeps interior spacing consistent with the site grid */
.footer-container {
  text-align: center;
  padding: 1rem 0 1.25rem;
}

/* Social row under the copy with a subtle divider line */
.footer-socials {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  display: inline-flex;
  gap: 0.75rem;
  border-top: 1px solid rgb(255, 255, 255);
}

/* Clickable icon pills; color comes from current text color */
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;              /* SVGs use currentColor */
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, opacity 120ms ease;
}

/* SVG size + inherits color from parent */
.social-link .icon {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Hover/focus polish for better affordance + accessibility */
.social-link:hover {
  background: rgb(96, 96, 96); /* subtle background on hover */
  transform: translateY(-1px);
}
.social-link:focus-visible {
  outline: 2px solid rgba(0,0,0,0.35);
  outline-offset: 2px;
}