@charset "utf-8";

/* =====================
   BASE 全站基礎設定
===================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft JhengHei", "PingFang TC", sans-serif;
  color: #333;
  line-height: 1.8;
  background: #fff;
  overflow-x: hidden;
}

/* 文字基礎 */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

/* 圖片基礎防爆版 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 共用容器 */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 按鈕基礎 */
.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  background: #d4af37;
  color: #000;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* RWD */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}