/* 基础配置 - 电脑端 */
:root {
  --color-primary: #e3741a;
  --color-secondary: #4b392b;
  --color-neutral: #f5f5f5;
  --color-dark: #333333;
  --color-light: #ffffff;
}

/* 自定义工具类 */
.content-auto {
  content-visibility: auto;
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.transition-custom {
  transition: all 0.3s ease-in-out;
}

.circle-icon-container {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
}


/* 电脑端特有样式 */
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--color-dark);
  background-color: var(--color-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* 导航栏样式 */
#navbar {
  padding: 1rem 0;
}

/* 英雄区域样式 */
#home h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
}

#home p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
}

#home .flex {
  flex-direction: row;
  gap: 2rem;
}
#home .h-screen {
    height: 50vh;
}

/* 内容区块样式 */
section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

/* 产品网格布局 */
#products .grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

#gallery .grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

#about .grid,
#contact .grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

/* 服务流程样式 */
#process .relative {
  padding: 2rem 0;
}

#process .flex {
  flex-direction: row;
  align-items: center;
}

/* 按钮交互效果 */
a.btn, button {
  transition: transform 0.3s ease;
}

a.btn:hover, button:hover {
  transform: scale(1.05);
}

/* 卡片悬停效果 */
.transform-hover {
  transition: transform 0.3s ease;
}

.transform-hover:hover {
  transform: translateY(-5px);
}

/* 图片悬停效果 */
.img-zoom {
  transition: transform 0.5s ease;
}

.img-zoom:hover {
  transform: scale(1.1);
}