.taskbar {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: white;
  padding: 0.8rem 2rem;
  font-family: 'Tan Pearl', sans-serif;
  z-index: 1000;
  border: 1px solid #e0dcd6;
}

.taskbar-container {
  width: 100%;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 0;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0rem;
}

.home-link {
  text-decoration: none;
  display: inline-block;
}

.home-link .site-title {
  color: #627045; /* keeps your original color */
}

.logo {
  width: 50px;
}

.site-title {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #627045;
}

.right-section {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.right-section a {
  font-family: 'Marcellus', serif;
  color: black;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.right-section a:hover {
  color: #dbb5b1;
  border-bottom: 2px solid #dbb5b1;
  padding-bottom: 4px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

@media (max-width: 600px) {
  .left-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0rem;
  }

  .hamburger-menu {
    display: flex;
  }

  .right-section {
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0dcd6;
    display: none;
    border-top: 1px solid #e0dcd6;
    z-index: 999;
  }

  .right-section.active {
    display: flex;
    z-index: 1001;
  }

  .right-section a {
    padding: 0.5rem 0;
    border-bottom: none;
  }

  .taskbar-container {
    flex-wrap: nowrap;
  }

  .taskbar {
    padding: 0.8rem 1rem;
  }

  .right-section {
    padding: 1.25rem 1rem;
  }
}


