/* 企业文化页面完整样式 - 整合版本 */
/* 整合了 transparency-optimization.css, transparency-global.css, about-layout-transparency.css */

/* ===== CSS变量定义 ===== */
:root {
  /* 文字阴影增强可读性 */
  --text-shadow-light: none;
  --text-shadow-medium: none;
  --text-shadow-strong: none;
}

/* ===== 基础容器 ===== */
.unified-content-container {
  background: transparent;
}

/* ===== 页面头部完全透明化 ===== */
.page-header {
  background: transparent;
  border: none;
  margin: var(--space-lg) 0;
  padding: var(--space-xl);
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(139, 69, 19, 0.8) 0%, rgba(210, 105, 30, 0.6) 50%, rgba(139, 69, 19, 0.8) 100%);
}

.page-header h1 {
  color: #fff;
  text-shadow: none;
  margin-bottom: var(--space-sm);
  font-weight: 700;
}

.page-header p {
  color: #e0e0e0;
  text-shadow: none;
  font-weight: 500;
}

/* ===== 发展历程区域完全透明化 ===== */
.timeline-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  margin: var(--space-2xl) auto;
  padding: var(--space-3xl);
  max-width: var(--container-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.timeline-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: #000000;
  font-weight: 700;
}

/* 时间线容器居中 */
.timeline {
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: var(--space-lg) 0;
}

/* 时间线项目优化布局 */
.timeline-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-xl);
  padding: var(--space-2xl);
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timeline-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.timeline-date {
  background: rgba(139, 69, 19, 0.9);
  color: white;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.timeline-content h3 {
  color: #fff;
  margin-bottom: var(--space-sm);
  text-shadow: none;
  font-weight: 600;
}

.timeline-content p {
  color: rgba(0, 0, 0, 0.8);
  line-height: var(--line-height-relaxed);
  text-shadow: none;
  font-weight: 400;
}

/* ===== 企业文化区域优化布局 ===== */
.culture-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-2xl);
  max-width: var(--container-xl); 
}

.culture-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: #fff;
  text-shadow: none;
  font-weight: 700;
}

/* 文化项目优化布局 */
.culture-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.culture-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* 移除闪烁的装饰效果 */

/* 文化项目文字增强可读性 */
.culture-item h3 {
  color: #fff;
  text-shadow: none;
  font-weight: 600;
  position: relative;
  z-index: 10;
}

.culture-item p {
  color: rgba(0, 0, 0, 0.88);
  text-shadow: none;
  font-weight: 400;
  position: relative;
  z-index: 10;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
  padding: var(--space-lg) 0;
}

/* 企业文化图标样式 */
.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  position: relative;
  z-index: 10;
}

.culture-icon i {
  font-size: var(--font-size-3xl);
  color: var(--primary-color);
  text-shadow: none;
}

.culture-item:hover .culture-icon {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* ===== 企业价值观区域完全透明化 ===== */
.values-section {
  background: transparent;
  border: none;
  margin: var(--space-lg) 0;
  padding: var(--space-xl);
}

.values-section h2 {
  text-align: center;
  margin-bottom: var(--space-xl);
  color: #fff;
  text-shadow: none;
  font-weight: 700;
}

/* 价值观项目完全透明化 */
.value-item {
  background: transparent;
  border: none;
  padding: var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.value-item:hover {
  background: transparent;
  transform: translateY(-2px);
}

.value-item h3 {
  color: #fff;
  margin-bottom: var(--space-sm);
  text-shadow: none;
  font-weight: 600;
}

.value-item p {
  color: rgba(0, 0, 0, 0.8);
  line-height: var(--line-height-relaxed);
  text-shadow: none;
  font-weight: 400;
}



/* ===== 响应式调整 ===== */
@media (max-width: 768px) {
  .page-header,
  .timeline-section,
  .culture-section {
    margin: var(--space-md) 0;
    padding: var(--space-lg);
  }
  
  .timeline-item,
  .culture-item {
    transition: transform 0.3s ease;
  }
  
  .culture-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

@media (max-width: 480px) {
  .page-header,
  .timeline-section,
  .culture-section {
    padding: var(--space-md);
  }
  
  .timeline-item,
  .culture-item {
    padding: var(--space-md);
  }
  
  .page-header h1 {
    font-size: var(--font-size-xl);
  }
  
  .page-header p {
    font-size: var(--font-size-base);
  }
}