/* 整個頁面背景顏色 */
body {
  background-color: #f5f5f5; /* 淺米色背景 */
  color: #333738;
  margin: 0;
  padding-top: 100px; /* 為固定 header 留出空間 */
  font-family: sans-serif;
}

/* 主內容最大寬度置中 */
main {
  max-width: 1200px;
  margin: 0 auto;
}

/* 配色定義 */
:root {
  --primary-color: #679396; /* 淺藍綠色 */
  --primary-dark: #3a5e5f;
  --background-light: #f5f5f5; /* 淺米色 */
  --accent-yellow: #fbbf24; /* 黃色點綴 */
  --text-dark: #1f2937;
  --text-white: #ffffff;
}

.bg-primary {
  background-color: var(--primary-color);
}

.text-primary {
  color: var(--primary-color);
}

.bg-light-gray {
  background-color: var(--background-light);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* 腳印圖示樣式 - 兩個重疊的腳印 */
.footprint-icon {
  width: 60px;
  height: 50px;
  display: inline-block;
  position: relative;
}

.footprint-icon::before,
.footprint-icon::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 45px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  transform: rotate(-10deg);
}

.footprint-icon::before {
  left: 5px;
  top: 0;
  background: var(--accent-yellow);
  z-index: 1;
}

.footprint-icon::after {
  right: 5px;
  top: 8px;
  background: var(--primary-color);
  z-index: 2;
  transform: rotate(10deg);
}
