/**
 * 游戏资源网 - 导航栏自动隐藏样式
 * 版本: 1.4
 * 修改说明：优化移动端导航栏高度
 */

/* ================= 基础样式 & 自动隐藏功能 ================= */
.navbar {
    transform: translateY(0);
    transition: transform 0.3s ease;
    width: 100%;
}

.navbar-hidden {
    transform: translateY(-100%);
}

/* ================= 移动端默认样式（高度优化版） ================= */
.navbar-container {
    display: flex;
    flex-direction: column;
    padding: 5px 10px; /* 减少内边距（原10px→5px） */
    min-height: 40px; /* 固定最小高度（原未设置） */
}

.logo {
    align-self: center;
    height: 28px; /* 缩小Logo（原未设置高度） */
    margin-bottom: 5px; /* 减少间距（原10px→5px） */
    object-fit: contain; /* 保持Logo比例 */
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 5px; /* 减小间距（原8px→5px） */
    padding: 0;
    list-style: none;
}

.nav-item {
    text-align: center;
    padding: 3px 0; /* 减小内边距（原未设置→3px） */
    font-size: 14px; /* 调小字体（可选） */
}

/* ================= PC端适配（完全不变） ================= */
@media (min-width: 769px) {
    /* 保持原有PC端样式 */
    .navbar {
        background: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .navbar-container {
        display: flex;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        height: 60px;
        flex-direction: row;
    }
    .logo {
        position: absolute;
        left: 40px;
        height: 40px;
        margin-bottom: 0;
        align-self: center;
    }
    .nav-menu {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 40px;
        padding: 0 120px 0 180px;
    }
    .nav-item {
        white-space: nowrap;
        padding: 8px 12px;
    }
    .nav-item:hover {
        background: #f5f5f5;
        border-radius: 4px;
    }
}