
/* Base Styles */
.bd-footer-wrapper {
  width: 100%;
  background-color: #3f455e;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding: 15px 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

.bd-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 700px;
  width: 90%;
  margin: 10px auto;
  padding: 0;
}

.bd-footer-nav a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  background-color: #3f455e;
  border: 1px solid #3f455e;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.bd-footer-nav a:hover {
  background-color: #007BFF;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.bd-footer-special {
  color: #ffb703 !important;
  border-color: #ffb703 !important;
}

.bd-footer-special:hover {
  background-color: #ffb703 !important;
  color: #2b2d42 !important;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .bd-footer-wrapper {
    flex-direction: column;
    padding: 10px;
    font-size: 0.8rem;
  }

  .bd-footer-nav {
    max-width: 100%;
    width: 90%;
    justify-content: center;
    gap: 6px;
    padding: 0 5px;
    margin: 10px auto 15px auto;
  }

  .bd-footer-nav a {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
}
