:root {
    --primary-color: #3B855A;
    --secondary-color: #E79363;
    --accent-color: #FFA8AD;
    --text-color: #333;
    --bg-color: #FCFAE8;
    --blue-accent: #6DB9ED;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Serif SC', serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部样式 */
.header {
    background: linear-gradient(to right, var(--primary-color), #2D6B48);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--bg-color);
    font-size: 28px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.3s;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* 英雄区域样式 */
.hero {
    background: url('../images/lotus-ink.jpg') center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.chinese-brush {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--bg-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

/* 关于我们部分 */
.about {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

/* 联系我们部分 */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(59, 133, 90, 0.1), rgba(109, 185, 237, 0.1));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* 页脚样式 */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer a {
    color: var(--bg-color);
    text-decoration: none;
    opacity: 0.9;
}

.footer a:hover {
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-links {
        flex-direction: column;
        text-align: center;
    }
    
    .chinese-brush {
        font-size: 36px;
    }
}

/* 添加装饰元素样式 */
.hero-content {
    position: relative;
    z-index: 2;
}

.subtitle {
    color: var(--bg-color);
    font-size: 1.4rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.decorative-line {
    width: 100px;
    height: 2px;
    background: var(--secondary-color);
    margin: 30px auto;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: -4px;
}

.decorative-line::after {
    right: -4px;
}

.lotus-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1596566816826-761f1ebf1a0f') no-repeat center/contain;
    opacity: 0.1;
    pointer-events: none;
}

/* 企业文化部分 */
.culture {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(59, 133, 90, 0.05), rgba(231, 147, 99, 0.05));
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.culture-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.culture-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.culture-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* 团队架构部分 */
.team {
    padding: 100px 0;
    background: var(--bg-color);
}

.team-structure {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-department {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.team-department h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.team-department ul {
    list-style: none;
}

.team-department ul li {
    padding: 10px 0;
    color: var(--text-color);
    position: relative;
    padding-left: 20px;
}

.team-department ul li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
}

/* 团队理念部分 */
.values {
    padding: 100px 0;
    background: white;
}

.values-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59, 133, 90, 0.05), rgba(109, 185, 237, 0.05));
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

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

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .culture-grid,
    .team-structure,
    .values-content {
        grid-template-columns: 1fr;
    }
    
    .culture-item,
    .team-department,
    .value-item {
        margin: 0 20px;
    }
} 

/* 添加渐入动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title,
.culture-item,
.team-department,
.value-item,
.info-item {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.culture-item:nth-child(2) {
    animation-delay: 0.2s;
}

.culture-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* 添加基础的鼠标悬停效果 */
.nav-links li a,
.culture-item,
.team-department,
.value-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: var(--secondary-color);
}

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