/* 页眉页脚全局样式 - 与首页统一 */

/* 导航栏 */
.navbar {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar-brand {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: #555 !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: #667eea !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: #667eea;
    color: #667eea;
}

.btn-outline-light:hover {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

/* 页脚样式 */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.site-footer a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #667eea;
}

