/* Apply Raleway font globally */
body, .navbar, .btn, .nav-link, .navbar-text {
  font-family: 'Raleway', sans-serif;
}

/* Minimal Light Navbar */
.navbar-light-custom {
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08); /* subtle shadow */
  padding: 0.6rem 1.5rem;
  border-radius: 0 0 8px 8px;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.navbar-light-custom .navbar-brand {
  font-weight: 700; /* Bold brand */
  font-size: 1.4rem;
  color: #0d6efd;
}

.navbar-light-custom .nav-link {
  color: #495057;
  font-weight: 500;
  margin-right: 1rem;
  transition: color 0.2s;
}

.navbar-light-custom .nav-link:hover {
  color: #0d6efd;
}

.navbar-light-custom .btn-outline-primary {
  border-color: #0d6efd;
  color: #0d6efd;
  font-size: 0.875rem;
  padding: 0.25rem 0.75rem;
  transition: background-color 0.2s, color 0.2s;
}

.navbar-light-custom .btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}

.navbar-light-custom span.navbar-text {
  color: #495057;
  font-weight: 500;
}
