/* 导入所有CSS模块 */
@import 'base.css';
@import 'components.css';
@import 'header.css';
@import 'hero.css';
@import 'sections.css';
@import 'footer.css';
@import 'animations.css';
@import 'responsive.css';

/* Logo样式 */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    margin-right: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .logo-image {
        height: 30px;
    }
}

/* 品牌理念部分样式调整 */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.philosophy-item {
    text-align: center;
    padding: 30px 25px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.philosophy-item i {
    font-size: 2.5rem;
    color: #c41230; /* 将图标颜色改为红色 */
    margin-bottom: 15px;
}

.philosophy-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.philosophy-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

/* 修复导航栏遮挡内容问题 */
body:not(.home-page) {
    padding-top: 70px;
}
@media (max-width: 768px) {
    body:not(.home-page) {
        padding-top: 60px;
    }
}

/* 修复锚点跳转被导航栏遮挡问题 */
#team {
    scroll-margin-top: 80px; /* 根据导航栏高度调整，建议略大于padding-top */
}