.navbar {
  background-color: #EDECE7;
  height: 67px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
  font-family: "display", "Helvetica Neue", Helvetica, sans-serif;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 700;
}
.logo {
  font-size: 24px;
  color: #323232;
}

.logo a {
  text-decoration: none;
  color: #323232;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-items {
  display: flex;
  gap: 20px;
}
.nav-items a {
  text-decoration: none;
  color: #323232;
  font-size: 17px;
}

.nav-items a:hover {
  color: #E59C1F
}

.social-icons {
  display: flex;
  gap: 6px;
}

.social-icons a {
  text-transform: none;
  text-decoration: none;
}

.icon-circle {
  width: 38px;
  height: 38px;
  background-color: #E0E0DA;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #323232;
  font-size: 18px;
  transition: all 0.3s ease;
}


.icon-circle:hover {
  background-color: #E59C1F
}

.hamburger {
  display: none; /* default: hidden */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 900;
  width: 30px;
  height: 24px;
  position: relative;
}

/* Only show hamburger on small screens (adjust as needed) */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: #323232;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}

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

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}



.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin-top: 30px;
  background-color: #EDECE7;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  z-index: 600;
}
.mobile-menu a {
  text-decoration: none;
  color: #323232;
  font-size: 26px;
  font-family: "display", "Helvetica Neue", Helvetica, sans-serif;
  
}
.mobile-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.mobile-icons .icon-circle {
  width: 34px;
  height: 34px;
  font-size: 16px;
}
@media (max-width: 1070px) {
  .nav-items,
  .social-icons {
	display: none;
  }
  .hamburger {
	display: flex;
  }
}