/* nav.html */
@media (min-width: 769px) {
  #top {
    margin-right: 30px;
  }
}
nav {
  background-color: #264653;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 0 6px black);
  align-items: center;
}
.logo-container img {
  width: 100px;
  animation: flip 6s infinite linear;
  transform-style: preserve-3d;
  margin-right: 10px;
  filter: brightness(0) invert(1);
}
.logo-container h1 {
  font-family: "Algerian";
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  color: white;
}

@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  gap: 20px;
  margin-left: auto;
}

.nav-links li a {
  text-decoration: none;
  color: #fffafe;
  font-size: 20px;
  font-family: "myfont1regular";
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #e9c46a;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-right: 20px;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* per pajisje te vogla */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 61px;
    right: 0;
    height: calc(100vh - 61px);
    background: #264653;
    flex-direction: column;
    width: auto;
    display: none;
    padding: 0 20px;
    justify-content: flex-end;
    align-items: center;
    z-index: 100;
  }
  .nav-links li {
    margin: 15px 10px 15px 0;
  }
  .nav-links.show {
    display: flex;
  }
  #top {
    margin-bottom: 50px;
  }
}
