/* 全局背景样式 */
body {
    background-image: url('../assets/img/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* 确保第一个section从导航栏下方开始 */
.resume-section:first-child {
    padding-top: 6rem;
}

/* 小屏幕设备样式调整 */
@media (max-width: 992px) {
    .resume-section {
        margin-left: 0;
        width: 100%;
        padding-top: 5rem;
    }
    
    .resume-section:first-child {
        padding-top: 8rem;
    }
}

/* 导航栏样式调整 */
.navbar.bg-primary {
    background-color: #455d7a !important; /* 深蓝灰色导航栏 */
}

/* 内容卡片样式 */
.resume-section-content {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}    