@charset "UTF-8";
:root {
  --header-nav-bg: rgba(0, 0, 0, 0.1);
  --header-nav-link-hover-bg: #E26E86;
  --header-nav-blur: 10px;
  --text-color-main: #ffffff;
}

.header__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--header-nav-bg, rgba(0, 0, 0, 0.1));
  backdrop-filter: blur(var(--header-nav-blur, 10px));
  -webkit-backdrop-filter: blur(var(--header-nav-blur, 10px));
}
@media (min-width: 768px) {
  .header__nav {
    padding: 15px 30px;
  }
}

.header__logo {
  height: 35px;
  display: block;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .header__logo {
    height: 40px;
  }
}

.header__nav-list ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 40px;
}
.header__nav-list li {
  margin-left: 20px;
}
.header__nav-list li:first-child {
  margin-left: 0;
}
.header__nav-list li:nth-child(4) {
  margin-left: 20px;
}
.header__nav-list a {
  text-decoration: none;
  color: var(--text-color-main, #ffffff);
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
  .header__nav-list li {
    margin-left: 20px;
  }
  .header__nav-list li:nth-child(4) {
    margin-left: 40px;
  }
  .header__nav-list a {
    font-size: 16px;
  }
}

/* Якщо у вас є кнопка бургер-меню, її стилі теж тут */
.nav-text-link {
  padding: 6px 10px;
  border-radius: 8px;
}
.nav-text-link:hover {
  background-color: var(--header-nav-link-hover-bg, #E26E86);
  color: var(--text-color-main, #ffffff);
  box-shadow: 0 0 5px rgba(222, 109, 138, 0.7);
}
@media (min-width: 768px) {
  .nav-text-link {
    padding: 8px 15px;
    border-radius: 10px;
  }
}

.nav-images {
  height: 24px;
  display: block;
}
@media (min-width: 768px) {
  .nav-images {
    height: 30px;
  }
}

.header__nav-list li a:not(.nav-text-link) {
  padding: 5px;
  border-radius: 50%;
}
.header__nav-list li a:not(.nav-text-link):hover {
  background-color: transparent;
  box-shadow: none;
}/*# sourceMappingURL=header-navigation.css.map */