@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.bci-header,
.bci-header a,
.bci-header__title {
  font-family: "Poppins", sans-serif !important;

}

.md-banner {
      border-bottom: 2px solid rgba(166, 124, 0, 0.3);
  background: #14132f;


}

.md-header {
      background: #424258;

}


.bci-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.6rem 1.5rem;

  /* Match your existing header colors 14132f*/
  /* background: var(--md-primary-fg-color); */
  /* color: var(--md-primary-bg-color); */

  font-size: 0.69rem;
}

/* Left/right nav groups */
.bci-header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  white-space: nowrap;
}

.bci-header__nav a {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
  letter-spacing: 0.04em;
}

.bci-header__nav a:hover,
.bci-header__nav a:focus {
  opacity: 1;
  color: #A67C00;
}

/* Center title */
.bci-header__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.2;
  font-size: 20px;
}

.bci-header__title a {
  text-decoration: none;
  color: #A67C00; /* your yellow-ish accent; change if needed */
}

@media (max-width: 980px) {
  /* Hide the left/right menus */
  .bci-header__nav {
    display: none;
  }

  /* Center the title nicely */
  .bci-header__title {
    position: static;
    transform: none;
    margin: 0 auto;
    text-align: center;
  }

  .bci-header {
    justify-content: center;
    /* padding: 0.6rem 1rem; */
    height: 40px;
  }
}



.bci-prefooter {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1rem 1.5rem;
  /* background: var(--md-primary-fg-color); */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Common height for both images */
.bci-prefooter img {
  max-height: 60px;   /* adjust to match your design */
}

/* Left image stays left */
.bci-prefooter__left {
  display: block;
}

/* Right image stays right */
.bci-prefooter__right {
  display: block;
}



.md-nav__title {
  /* display: none; */
}

.bci-header_contact {
      font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-family: Poppins, sans-serif;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
}


/* make banner sticky together with extra js in js folder */
.md-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
}


.md-banner .bci-header,
.md-banner .bci-header_contact {
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}












.bci-prefooter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 600px) {
  .bci-prefooter {
    flex-direction: column;
  }
}





@media screen and (max-width: 76.1875em) {
  .md-sidebar--primary,
  .md-overlay {
    z-index: 2000; /* above header and banner */
  }
}



