/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #005bb5;
  box-shadow: 0 3px 10px rgba(0, 91, 181, 0.4);
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 28px;
  order: 1;
  flex-shrink: 0;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  color: #f0f5fb;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 8px 10px;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  color: #e76f51;
  border-bottom: 2px solid #e76f51;
}

nav .logo {
  font-weight: 700;
  font-size: 1.4rem;
  color: #f0f5fb;
  cursor: default;
  letter-spacing: 2px;
  text-transform: uppercase;
  order: 2;
  flex-shrink: 0;
  white-space: nowrap;
  padding-left: 20px;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  color: #f0f5fb;
  cursor: pointer;
  order: 0;
}
