/* header.css */

header {
  background: #061324;
  color: #fff;
  padding-top: 0;
  min-height: 100px;
  border-bottom: #e8491d 3px solid;
  z-index: 1001;
  position: relative;
}

.container,
.header-container {
  max-width: 1170px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#branding {
  display: flex;
  align-items: center;
}

#branding img {
  display: block;
  max-height: 89px;
  animation: slideInLogo 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(-20px);
}

@keyframes slideInLogo {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
}

header a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}

header .highlight,
header .current a {
  color: #e8491d;
  font-weight: bold;
}

header a:hover {
  color: #ffffff;
  font-weight: bold;
}

header nav a:hover {
  text-shadow: 0 0 8px #e8491d;
  transition: text-shadow 0.3s ease;
}
