
.navigation {
	position: sticky;
	top: 0;
/*	background-color: rgba(255, 255, 255, 0.8); */
/*  background-color: rgb(146 95 52); */
    background-color: #adb49e;
	margin-bottom: 6px;
	z-index: 99; } 



button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  line-height: 1.8;
  color: inherit;
  font-family: "Encode Sans";
  font-size: 20px;
  font-style: normal; }

@media (width >= 1064px) { button { font-size: 15px; } }
@media screen and (min-width: 1064px) { button { line-height: 2.3; } }

/*   */
:is( .burger, .dropdowns) {
  position: fixed;
  top: 0;
  width: 100%;
}



.navbar {
  z-index: 1;
  left: 0;
  display: flex;
  align-items: stretch;
  flex-direction: row-reverse;
  height: 62px;
  /*background: #c5c0c0;*/
  color: #34333A;
  max-width: 1064px;
  margin-inline: auto;
}

.burger {
  z-index: 3;
  right: 0;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background-image: url("/navbar/menu.svg");
  background-repeat: no-repeat;
  background-position: center;
	position: absolute;
}

body.open .burger {
  background-image: url("/navbar/close.svg");
}

@media (width >= 1064px) {
  .burger {
    display: none;
  }
}

.button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 24px;
  height: 100%;
  /* opacity: 0.6; */
  letter-spacing: 3px;
}

.button > img {
  display: none;
}

@media (width >= 1064px) {
  .button {
    padding: 0 26px 0 26px;
  }

  .button > img {
    display: block;
  }
}

@media (width >= 1064px) {
  .dropdown:hover .button {
    opacity: 1;
  }
}

.dropdowns {
  left: -9999px;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /*background: #0d0d0e; */
  background: #925f34;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: 0.3s;
}

@media (width < 1064px) {
  body.open .dropdowns {
    opacity: 1;
    visibility: visible;
    left: 0;
  }
}

@media (width >= 1064px) {
  .dropdowns {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    background: transparent;
    opacity: 1;
    visibility: visible;
	margin-inline: auto;
  }
}

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.dropdown-menu {
  display: grid;
  margin-bottom: 28px;
}

@media (width >= 1064px) {
  .dropdown {
    height: 100%;
    flex-direction: row;
	white-space: nowrap; 
  }

  .dropdown-menu {
    position: absolute;
    top: 62px;
    left: 0;
    width: 242px;
    padding: 6px 24px 10px;
    margin-bottom: 0;
    place-items: start;
    /* background: #99612f9c; */
	/*background-color: rgba(255, 255, 255, 0.8);*/
	background-color: #adb49e;
    opacity: 0;
    visibility: hidden;
    translate: 0 24px;
    transition: 0.3s;
	margin-left: 29px;
    border-radius: 8px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
}

.dropdown-menu > button {
  color: #fffdf7;
  opacity: 1;
  height: 40px;
}

@media (width >= 1064px) {
  .dropdown-menu > button {
    opacity: 0.6;
  }

  .dropdown:hover .button {
    opacity: 1;
  }
}

.dropdown-menu > button:hover {
  opacity: 1;
}
