.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  background-color: #191919;
  color: white;
  padding: 0 60px;
  flex-wrap: wrap;
}

/* Слева — заголовок */
.header-left .site-title {
  font-size: 24px;
}

/* Центр — навигация */
.nav-center {
  display: flex;
  gap: 30px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav-link:hover {
  color: #f0f0f0;
}

.nav-link::after {
  content: "";
  display: block;
  height: 2px;
  background-color: #f0f0f0;
  width: 0%;
  transition: width 0.3s;
  margin-top: 4px;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active::after {
  width: 100%;
  background-color: #909090; /* или оставь #f0f0f0 */
}
/* Справа — язык */
.header-right {
  min-width: 70px;
}

.language-select {
  background-color: #191919;
  color: white;
  border: 1px solid #444;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 4px;
}

/* Адаптив */
@media (max-width: 800px) {
  .header {
    flex-direction: column;
    height: 120px;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
  }

  .nav-center {

    align-items: center;
    gap: 10px;
  }
}
