/* =============================================
   HRz PITSTOP – Footer
   ============================================= */

footer {
  background: #0a0b0c;
  padding: 40px 4.5vw 24px;
  color: #8e908e;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

footer .brand { color: #ecece8; }
footer a:not(.brand), footer p {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer a:hover { color: var(--red2); }

.footer-links {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links b {
  font: 700 13px 'Barlow Condensed';
  text-transform: uppercase;
  color: #e9e9e5;
  letter-spacing: 1px;
}
.footer-links a { font-size: 11px; color: #a5a6a6; }
.footer-admin-link { color: var(--gold) !important; font-weight: 700; }

.footer-socials {
  display: flex;
  gap: 20px;
}

/* Very end of the footer - Copyright & Admin Button */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  width: 100%;
}
.footer-bottom-bar p {
  font-size: 11px;
  color: #8e908e;
  letter-spacing: 0.8px;
  margin: 0;
}
.footer-admin-btn {
  background: rgba(255, 183, 3, 0.12);
  color: var(--gold) !important;
  border: 1px solid rgba(255, 183, 3, 0.4);
  padding: 8px 16px;
  border-radius: 6px;
  font: 700 12px 'DM Sans', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-admin-btn:hover {
  background: var(--gold);
  color: #000 !important;
}

/* Mobile Footer Clearance for Mobile Bottom Dock */
@media (max-width: 800px) {
  footer {
    padding-bottom: 95px !important;
  }
  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-admin-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
}
