/* styles/footer.css */

/* Base footer wrapper */
footer.footer{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  width: 100%;
  padding: 20px 12px;
  background: #222;   /* or use your var: var(--bg-dark, #222) */
  color: #fff;
  box-sizing: border-box;
}

/* Links row */
footer.footer .footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  margin: 0 0 14px 0;
  padding: 0;
}

footer.footer .footer-links a{
  color: #fda83c;     /* or var(--gold-accent, #fda83c) */
  text-decoration: none;
  font-size: 14px;
}

footer.footer .footer-links a:hover{
  color: #0099ff;     /* or var(--blue-accent, #0099ff) */
}

/* Social icons row */
footer.footer .footer-social{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px 0;
  padding: 0;
}

footer.footer .footer-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

footer.footer .footer-social img{
  width: 30px;
  height: 30px;
  display: block;
}

/* Copy text */
footer.footer .footer-copy{
  max-width: 900px;
  text-align: center;
}

footer.footer .footer-copy p{
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #ddd;
}

/* Mobile tightening */
@media (max-width: 480px){
  footer.footer{
    padding: 16px 10px;
  }
  footer.footer .footer-links a{
    font-size: 13px;
  }
}