@import url('base.css');

.navbar {
  background-color: #333;
  color: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.navbar li {
  margin-right: 1rem;
}

.navbar a {
  text-decoration: none;
  color: white;
}
.navbar a.active {
  color: green;
}

/* Improve heading contrast on light backgrounds */
/* Default to a strong, legible dark color on white */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #1b1f24;
}

/* Preserve white headings when inside hero sections */
.hero h1,
.hero h2,
.hero h3,
.hero h4,
.hero h5,
.hero h6,
.hero .h1,
.hero .h2,
.hero .h3,
.hero .h4,
.hero .h5,
.hero .h6 {
  color: #fff;
}

/* Admin-only overrides */
body.admin {
  /* Ensure headings use a strong, dark color on light background */
  --bs-heading-color: #212529;
}
