/* --- Header & Navigation --- */
@font-face {
  font-family: "Font Awesome 6 Free";
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2")
    format("woff2");
  font-display: swap;
}


:root {
  --brand-dark: #1b2945;
  --brand-light-gray: #e6e6e6;
  --brand-font: "Montserrat", sans-serif;
}

.navbar a {
  font-family: var(--brand-font);
}

.navbar-brand {
  font-weight: 800;
  color: var(--brand-dark) !important;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #000 !important;
  text-transform: uppercase;
  padding: 0.5rem 1rem !important;
}

.nav-item.news-highlight .nav-link {
  background-color: var(--brand-light-gray);
  border-radius: 4px;
  padding: 0.5rem 1.2rem !important;
}

.search-container {
  position: relative;
  background-color: var(--brand-light-gray);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0.3rem 0.8rem;
  margin: 0 1rem;
}

.search-container i {
  font-size: 0.8rem;
  color: #666;
  margin-right: 8px;
}

.search-container input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.85rem;
  width: 120px;
}

.btn-register {
  background-color: #000;
  color: #fff;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-register:hover {
  color: #fff;
  opacity: 0.8;
}

.navbar-nav ul{
  text-decoration: none;
  list-style: none;
}

.dropdown-menu .page_item a{
  text-decoration: none;
  color: #000;
}

/* --- Divider Line --- */
.divider-container {
  padding: 0 2rem;
  margin-top: 10px;
}

.divider-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
}

.divider-line::before,
.divider-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background-color: #000;
}

.divider-line::before {
  left: 0;
}
.divider-line::after {
  right: 0;
}
