
/* ---------------- Header ---------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background: #2c2b28;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: rotateLogo 5s linear infinite;
  border: 3px solid #f0a500;
}

@keyframes rotateLogo {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(10deg); }
  100% { transform: rotate(0deg); }
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

header nav ul li a:hover {
  color: #f0a500;
  transform: scale(1.1);
}