
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo_text {
    align-items: center;
    color: white;
    font-size: 28px;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}



.site-header {
    border-bottom: 1px solid #ddd;
}

.header__inner {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


.logo img {
    height: 60px;
}


.nav__list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--accent);
    padding: 10px;
    z-index: 100;
    transition: transform 0.3s ease;
}

.burger[aria-expanded="true"] {
    transform: rotate(90deg);
}

.nav-close {
    display: none;
}

@media (max-width: 768px) {

    .nav-close {
        display: block;
        position: absolute;
        top: 10px;
        right: 16px;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 5;
    }
}
/* Навигация */
.nav {
    transition: all 0.3s ease-out;
}

.nav__list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__list li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 8px 0;
    position: relative;
}

.nav__list li a:hover {
    color: var(--accent);
}

.nav__list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav__list li a:hover::after {
    width: 100%;
}
