/* ═══════════════════════════════════════════════════
   ARTCORE WEBSYSTEMS – FOOTER (Bottom Bar)
   Always dark style (#16162b), unaffected by theme
   ═══════════════════════════════════════════════════ */

.bottom-bar{
  position:fixed;
  bottom:0;left:0;right:0;
  height:46px;
  background:#16162b;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3rem;
  z-index:999;
  box-shadow:0 -2px 20px rgba(0,0,0,.35);
}

.bottom-bar a{
  font-family:'Rajdhani',sans-serif;
  font-weight:400;
  font-size:.65rem;
  letter-spacing:.22em;
  color:rgba(160,160,200,.45);
  text-decoration:none;
  transition:color .3s;
}
.bottom-bar a:hover{
  color:rgba(160,160,200,.85);
}
