/* guide.css - 采摘攻略列表页样式 (暖橙+米白) */

/* 全局 emoji 字体支持 */
body, .container, .header, .guide-card, .guide-icon, .guide-title, .guide-desc, h1, p, .header-title h1 {
    font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.container {
    background-color: #fffaf5;
    padding-bottom: 70px;
    position: relative;
}

/* 头部渐变 - 暖橙色调 */
.header {
    background: linear-gradient(135deg, #f9a26c, #f7b05e);
    padding: 20px 20px 28px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.back-btn {
    background: rgba(255,255,255,0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: 0.2s;
}
.back-btn:active {
    background: rgba(255,255,255,0.3);
}
.logo {
    font-size: 20px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}
.logo i {
    margin-right: 6px;
}
.placeholder {
    width: 36px;
}
.header-title {
    text-align: center;
    color: white;
}
.header-title h1 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.header-title p {
    font-size: 14px;
    opacity: 0.9;
}

/* 攻略列表 */
.guide-list {
    margin-top: -20px;
    padding: 0 16px 24px;
    position: relative;
    z-index: 2;
}

.guide-card {
    background: white;
    border-radius: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.25s ease;
    cursor: pointer;
    border: 1px solid rgba(247, 176, 94, 0.2);
}
.guide-card:active {
    transform: scale(0.98);
    background: #fffef7;
}

.guide-icon {
    width: 60px;
    height: 60px;
    background: #fef2e4;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 16px;
    box-shadow: inset 0 0 0 1px rgba(249, 162, 108, 0.3);
}

.guide-info {
    flex: 1;
}
.guide-title {
    font-size: 18px;
    font-weight: 600;
    color: #7a4d2a;
    margin-bottom: 6px;
}
.guide-desc {
    font-size: 13px;
    color: #b38b6d;
    display: flex;
    align-items: center;
    gap: 6px;
}
.guide-desc i {
    font-size: 12px;
    color: #f9a26c;
}

.arrow-icon {
    color: #e7c7a8;
    font-size: 20px;
    transition: 0.2s;
}
.guide-card:hover .arrow-icon {
    transform: translateX(4px);
    color: #f9a26c;
}

/* 装饰 */
.leaf-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.05;
    font-size: 120px;
    pointer-events: none;
    color: #f7b05e;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 500px;
    margin: 0 auto;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0 14px;
    border-top: 1px solid #f0e0d0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.02);
    z-index: 10;
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: #c0a080;
    text-decoration: none;
    gap: 4px;
    transition: 0.2s;
}
.nav-item.active {
    color: #f57c00;
}
.nav-item i {
    font-size: 22px;
}

@media (max-width: 480px) {
    .guide-icon {
        width: 52px;
        height: 52px;
        font-size: 28px;
    }
    .guide-title {
        font-size: 16px;
    }
}