/* Hamburger menu styles */
.hamburger-menu {
 width: 32px;
  height: 32px;
  z-index: 2001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  align-self: self-start;
  margin-left: 36px;
  margin-right:26px;
  margin-top:12px;
}
.hamburger-menu span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
}

/* Sidebar styles */
.sidebar-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 96vh;
  background: #8a7c74;
  color: #fff;
  z-index: 2002;
  transition: right 0.3s;
  box-shadow: -2px 0 8px rgba(0,0,0,0.2);
  padding-top: 40px;
}
.sidebar-nav.open {
  right: 0;
}
.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.sidebar-nav li {
  text-align: left;
  padding-left: 32px;
  text-align: center;
}
.sidebar-nav li:last-child {
  margin-bottom: 10px;
}
.sidebar-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.5em;
  transition: color 0.2s;
}
.sidebar-nav a:hover {
  color: #ffd700;
}
.close-sidebar {
  position: absolute;
  top: 16px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2em;
  cursor: pointer;
} 