/* Header Styles - Dark Tactical Glassmorphic Theme */
.site-header {
  background: linear-gradient(135deg, rgba(26, 60, 44, 0.95) 0%, rgba(20, 45, 35, 0.95) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
              0 2px 8px rgba(44, 142, 62, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 3900;
  border-bottom: 2px solid rgba(44, 142, 62, 0.4);
}

.site-header .container {
  position: relative;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  position: relative;
}

.header-inner .logo {
  margin: 0;
}

/* Webmail icon - NOW IN TICKER */
.header-webmail {
    display: none !important;
}

/* Header information (date/time/weather) - NOW IN TICKER, HIDE OLD FIXED VERSION */

#header-info {
  display: none !important;
}
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

#header-weather i {
    color: #ffd700;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Navigation styles - Tactical board design */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-menu li {
  margin: 0;
  position: relative;
}

.nav-menu a {
  color: #d4f5d4;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  padding: 10px 18px;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  background: rgba(44, 142, 62, 0.15);
  border-left: 2px solid transparent;
  border-right: 2px solid transparent;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 142, 62, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  border-radius: 4px;
}

.nav-menu a:hover {
  color: #ffffff;
  background: rgba(44, 142, 62, 0.35);
  border-left-color: #2c8e3e;
  border-right-color: #2c8e3e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(44, 142, 62, 0.25);
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu li.active a {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(44, 142, 62, 0.5), rgba(39, 174, 96, 0.3));
  border-left-color: #2ecc71;
  border-right-color: #2ecc71;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(44, 142, 62, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  letter-spacing: 0.8px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Hamburger menu animation */
.bar.animate:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.bar.animate:nth-child(2) {
  opacity: 0;
}

.bar.animate:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
