/* Шапка */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'MyFont', 'Jura', sans-serif;
    font-weight: normal;
    font-size: 1.7rem; /* подберите размер */
    color: #38382d; /* цвет для хедера, для футера может быть другой */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    background: none;
    padding: 0;
}
.logo-icon {
    width: 44px; /* настройте размер */
    height: 44px;
    flex-shrink: 0;
}

.logo:hover .logo-icon {
    filter: brightness(0.8) saturate(0.8);
    transition: filter 0.s ease;
}

.logo:hover {
    color: #888888;
}

.logo::after {
    display: none !important;
}

.logo:focus {
    outline: none;
    box-shadow: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    font-family: 'Noto Sans KR', sans-serif;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 1rem;
    white-space: nowrap;
    padding: 8px 0;
    position: relative;
    display: inline-block;
}

.nav-links a:hover {
    color: #888888;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #888888;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}