/* style.css */

/* Override Bootstrap’s default button */
.btn-primary {
  background: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  background: #0b5ed7;
  border-color: #0b5ed7;
}

/* Footer social icons */
footer a i {
  font-size: 1.5rem;
  transition: color .2s;
}
footer a:hover i {
  color: #0d6efd;
}

/* Add a subtle scroll‑shadow to the navbar when scrolling */
#mainNav.scrolled {
  background: #212529 !important;
  box-shadow: 0 4px 6px rgba(0,0,0,.1);
}

