/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: black;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: red;
}

/* LINKS (DESKTOP) */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li a {
  color: white;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-links li a:hover {
  background: red;
  border-radius: 5px;
}

/* 📱 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  nav {
    flex-direction: column;
    text-align: center;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    padding: 10px 0;
  }
}
