/* ---------------------------------------------------------- */
/* 0. Font Import - Meslo LG Nerd Font Pro                   */
/* ---------------------------------------------------------- */
@import url('https://cdn.jsdelivr.net/gh/ryanoasis/nerd-fonts@master/css/meslo.css');

body, html, .md-typeset {
  font-family: 'Meslo LG Nerd Font Pro', 'Meslo LG', monospace;
}


/* ---------------------------------------------------------- */
/* 1. Custom UI Overrides (Buttons)                          */
/* ---------------------------------------------------------- */
.md-typeset .md-button:hover {
  background-color: var(--md-primary-fg-color);
  border-color: var(--md-primary-fg-color);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.md-typeset .md-button--primary:hover {
  background-color: #2e5de0;
  border-color: #2e5de0;
}

/* ---------------------------------------------------------- */
/* 2. Navigation Bar Styling                                 */
/* ---------------------------------------------------------- */
.md-tabs {
  background: linear-gradient(90deg, #1e3a8a 0%, #11214e 100%);
  height: auto;
}

.md-tabs__list {
  justify-content: left;
}

.md-tabs__link {
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
  color: rgba(255, 255, 255, 0.900);
  transition: all 0.3s ease;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  margin-top: 0;
  height: auto;
}

.md-tabs__link:hover,
.md-tabs__link--active {
  opacity: 1;
  color: #ffffff;
}

.md-tabs__link:hover {
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  transform: translateY(-1px);
}

.md-tabs__link--active {
   font-weight: bold;
}

/* ---------------------------------------------------------- */
/* 3. Header Logo Spacing                                     */
/* ---------------------------------------------------------- */
.md-header__button.md-logo {
    margin-right: 0rem;
}

.md-header__title {
    align-items: left;
}