/* NAVBAR */
.navbar {
  width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  border: 2px solid #444;
  border-radius: 25px;
  padding: 10px 15px;
  background-color: #fefcf8;
  min-height: 60px;
}

.logo {
  border: 2px solid #666;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navLinks {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(45, 90, 39, 0, 0.08);
}

.navLinks a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  color: #6b8f63;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.navLinks a:hover {
  background-color: #eaf3de;
  color: #3b6d11;
}

.navLinks a.active {
  background: #3b6d11;
  color: #eaf3de;
}

.nav-icons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.nav-icons a {
  text-decoration: none;
  font-size: 1.2rem;
  color: black;
}

/* NAVBAR RESPONSIVE */
@media (max-width: 900px) {
  .navbar {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
  }

  .navLinks {
    justify-content: center;
  }

  .nav-icons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .navLinks {
    flex-direction: column;
    gap: 10px;
  }
}