/* HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--fh-bg);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 2em;
  width: 100%;
  box-sizing: border-box;
}

.logo {
  height: 96px;
  margin-right: 2em;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
  transform: scale(1.4);
  filter: drop-shadow(0 0 12px rgb(176, 176, 176));
}

.nav-menu {
  display: flex;
  gap: 1em;
}

.sticky-header .nav-menu a {
  color: var(--text2);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 2em;
  transition: color 0.2s;
}

.sticky-header .nav-menu a:last-child {
  margin-right: 0;
}

.sticky-header .nav-menu a:hover,
.sticky-header .nav-menu a:focus {
  color: var(--main);
}

@media (max-width: 900px) {
  .sticky-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }
  .nav-menu {
    gap: 1em;
    font-size: 1em;
  }
}
