/* Gold feature bar */
#home-page .feature-region {
  background-color: #FFD700; /* gold */
  height: auto;               /* height adjusts to content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;                 /* no padding */
  box-sizing: border-box;
  color: #000000;             /* black text inside gold */
}

/* Black bar under gold */
#home-page .feature-region + div {
  background-color: #000000; /* solid black bar */
  color: #ffffff;            /* white text if added later */
  height: 50px;
}

/* Footer text default (optional, leave as site default) */
#app-footer, #app-footer * {
  color: inherit;
}

/* Hide the search box entirely */
#search-form.callout-region {
  display: none;
}
