/* 引入公共样式 */
@import url('common.css');

/* 页面通用样式 */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 30%, #d5f4e6 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(180, 239, 78, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255, 57, 210, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(26, 102, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

/* Header 样式覆盖 */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 239, 78, 0.2);
  box-shadow: 0 2px 20px rgba(180, 239, 78, 0.1);
}

/* 导航样式 */
nav#navigation ul li a {
  color: #2c3e50 !important;
  font-weight: 600;
  background: transparent;
}

nav#navigation ul li a:hover,
nav#navigation ul li a.active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #B4EF4E 0%, #9DE83F 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 130px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
  line-height: 1.2;
}

.hero-subtitle-cn {
  font-size: 1.5rem;
  color: #5a6c7d;
  margin-bottom: 1rem;
  font-weight: 500;
}

.hero-description {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.hero-description-cn {
  font-size: 1.1rem;
  color: #5a6c7d;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
}