/* header.css - стили шапки сайта */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 0;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

.logo-icon {
    font-size: 1.8rem;
    color: #e94560;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #e94560, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 5px;
    height: 70px;
}

.nav-link {
    color: #7f8c8d;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-link:hover {
    color: #e94560;
    background: #f8f9fa;
    border-bottom-color: #e94560;
}

.nav-link.active {
    color: #e94560;
    border-bottom-color: #e94560;
    background: #f8f9fa;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 8px;
}

.breadcrumbs li:not(:last-child):after {
    content: '/';
    margin-left: 8px;
    color: #bdc3c7;
}

.breadcrumbs a {
    color: #e94560;
    text-decoration: none;
}

.breadcrumbs span {
    color: #95a5a6;
}