/* 所有页面顶部横幅使用同一张背景图（首页 + 文章页） */
#page-header.full_page,
#page-header.post-bg {
  background-image: url('/images/home-bg.png') !important;
  background-size: cover !important;
  background-position: center !important;
  background-color: transparent !important;
}

/* 去掉所有顶部横幅的暗色遮罩 */
#page-header.full_page::before,
#page-header.post-bg::before {
  background-color: rgba(0, 0, 0, 0) !important;
}

/* 首页大标题：黑色 · 华文行楷 · 72px */
#site-title {
  color: #000000 !important;
  font-family: '华文行楷', 'STXingkai', 'KaiTi', cursive !important;
  font-size: 72px !important;
  font-weight: normal !important;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 手机端适配 */
@media (max-width: 767px) {
  #site-title {
    font-size: 48px !important;
  }
}

/* =============================================
   投稿页样式
   ============================================= */

/* 顶部欢迎区：淡蓝色背景、居中、圆角 */
.contribute-hero {
  text-align: center;
  padding: 30px 20px;
  margin: 10px 0 30px 0;
  background: rgba(73, 177, 245, 0.08);   /* 主题主色调的淡色版本 */
  border-radius: 12px;
}

.contribute-hero p {
  font-size: 1.1em;
  line-height: 1.8;
}

/* 大按钮：沿用 Butterfly 默认主色 #49b1f5 */
.contribute-btn {
  display: inline-block;
  padding: 14px 36px;
  margin-top: 15px;
  background: #49b1f5;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(73, 177, 245, 0.3);
}

/* 悬停效果：变深 + 轻微上浮 */
.contribute-btn:hover {
  background: #2b8fc7;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73, 177, 245, 0.4);
}
