/*
  CSS Styles for site navigation
  In the web site BayITOutsourcing.com 
*/

/*
  Copyright (c) 2025 Bay IT Outsourcing
  All rights reserved.
  Created: 2025-09
*/

header nav {
  align-self: stretch;
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0;
  justify-content: center;
  z-index: 1;
}

.nav-list li {
  margin: 0;
  border-left: 1px solid var(--muted);
}

.nav-list li:first-child {
  border-left: none;
}

.nav-list a {
  text-decoration: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  display: block;
  transition: background-color 0.2s ease;
}

.nav-list a:hover {
  background-color: rgba(11,116,222,0.08);
  color: var(--accent);
}

@media (max-width: 560px) {
  header nav {
    justify-content: flex-end;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .nav-list li {
    border-left: none;
    border-top: 1px solid var(--muted);
  }
  .nav-list li:first-child {
    border-top: none;
  }
}
