/* ========================================
   Anya & Kimo - 导航栏组件
   
   固定在页面顶部的导航栏，包含品牌 Logo 和链接。
   使用 CSS 变量，自动适配主题色。
   所有页面共用，只需引入一次。
   ======================================== */

/* 导航栏容器（固定顶部） */
.navbar {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

/* 品牌 Logo 文字（渐变效果） */
.nav-brand {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b9d, #c44dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    text-decoration: none;
    box-sizing: border-box;
}

/* 链接容器 */
.nav-links {
    display: flex;
    gap: 2rem;
    box-sizing: border-box;
}

/* 导航链接 */
.nav-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
}

/* 链接悬浮 */
.nav-links a:hover {
    color: var(--text);
}

/* 当前页面高亮 */
.nav-links a.active {
    color: var(--pink);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }
}