/* 全局样式 */
body {
  font-family: 'Noto Sans TC', sans-serif;
}

/* Hero 背景 */
.hero-bg {
  background-color: #bb8975;
  background-image: url('https://images.unsplash.com/photo-1507842217343-583bb7270b66?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
}

/* 手机版菜单动画 */
.transition-height {
  transition: max-height 0.3s ease-in-out;
  max-height: 0;
  overflow: hidden;
}

.transition-height.open {
  max-height: 300px;
}

/* 卡片悬停效果 */
.hover-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* 链接悬停效果 */
.hover-link:hover {
  text-decoration: underline;
  color: #c2410c;
}

/* 按钮悬停效果 */
.btn-primary {
  background-color: #f97316;
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #ea580c;
}