body {
  font-family: 'Nunito', sans-serif;
}

/* NAVBAR */
.navbar {
  position: fixed; 
  top: 0px; 
  left: 0; 
  right: 0; 
  z-index: 100;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 2px solid #1a3a16;
  background-color: #fefcf8;
  box-shadow: 0 2px 12px rgba(45,90,39,0.08);
}

.navbar a {
  font-weight: bold;
}

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

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

.navLinks a,
.nav-icons a {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #2e8b57;
  padding: 6px 16px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2;
  /* font-size: 1.1rem;  old font size */
}

.navLinks a.active {
  background: #678f62;
  color: #eaf3de;
}

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

.nav-icons a {
  color: black;
}

/* =========================================
   NAVBAR LOGO
   Controls the size and positioning of
   the Green Thumb logo inside the navbar
   ========================================= */
.logo {
  width: 50px;
  height: 50px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* LOGO IMAGE SIZING */
.logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* LOGO IMAGE STYLING */
.logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

/* 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;
  }
}
