/* NAVBAR */

.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #2563eb;
  color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.nav-container{
  max-width: 1100px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.nav-logo{
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
}

.nav-links a{
  color: #ffffff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav-links a:hover{
  opacity: 0.8;
}