/* === Page background === */
body {
  background-color: #e0dcdc !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* === Logo background (top header only) === */
.container-header .grid-child:first-child {
  background-image: url('https://support.cs.wm.edu/images/logos/WM_Banner.png?1756220060764');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 2rem 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* === Fix: Target actual site description block === */
.site-description {
  text-align: center !important;
  background-color: rgba(17, 87, 64, 0.6) !important;  /* Semi-transparent green */
  color: white !important;
  padding: 1rem 2rem !important;
  max-width: 90%;
  margin: 0 auto 1rem auto !important;
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* === Ensure logo image sizing remains full === */
.container-header .navbar-brand img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  margin: 0 auto !important;
}

/* === Remove spacing around logo container === */
.container-header .grid-child {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* === Green nav bar === */
.container-header .container-nav {
  background-color: #115740 !important;
  padding: 0.75rem 0 !important;
  margin: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
}

/* === Center menu items === */
.container-header .container-nav .menu {
  display: flex !important;
  justify-content: center !important;
  gap: 2rem;
  flex-wrap: wrap;
}

/* === Nav link styles === */
.container-header .container-nav a {
  color: white !important;
  font-size: 1rem;
}
.container-header .container-nav a:hover {
  color: #d6d6d6 !important;
}

/* === Remove borders from header === */
header, .container-header, .container-nav {
  border: none !important;
  outline: none !important;
}
