/* ---
一期一會 (Club Now) - 品牌視覺識別系統 CSS
更新日期: 2025-09-27 
設計師: UI 設計大師
版本: 9.0 (回歸簡潔可靠)
--- */

/* 全域設定 */
:root {
    --ink-green: #2C3E36;
    --burgundy-red: #7B2D26;
    --aged-gold: #B8860B;
    --warm-beige: #F5F5DC;
    --pale-sky-blue: #B0C4DE;
    --text-primary: #333333;
    --text-secondary: #6c757d;
    --font-serif: 'Source Serif Pro', serif;
    --font-sans-serif: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-sans-serif);
    background: var(--warm-beige);
    color: var(--text-primary);
    line-height: 1.6;
}

/* 導覽列 */
/* --- Header Rework by UI Master - 2025-09-28 --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, opacity 0.5s ease, transform 0.5s ease;
    opacity: 0; /* 預設隱藏 */
    transform: translateY(-20px); /* 預設向上偏移 */
    pointer-events: none; /* 預設不可點擊 */
}

body.subpage .main-header,
.main-header.scrolled {
    background-color: rgba(44, 62, 54, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    opacity: 1; /* 滾動後顯示 */
    transform: translateY(0); /* 滾動後回到原位 */
    pointer-events: auto; /* 滾動後可點擊 */
}

/* For subpages, add padding to the body to prevent content from being hidden by the fixed header */
body.subpage .main-header {
    background-color: rgba(44, 62, 54, 0.85); /* 確保子頁面預設就有背景 */
}
body.subpage {
    padding-top: 80px;
}

.main-header.hidden {
    transform: translateY(-120%); /* Ensures it's fully off-screen */
}

.main-header.initially-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
}

.main-header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.main-header .logo img {
    height: 40px;
    width: auto;
    transition: filter 0.3s ease;
}

.main-header .logo .logo-wordmark {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--aged-gold);
    margin-left: 12px;
}

/* 漢堡選單與覆蓋式導覽 */
.hamburger-menu {
    position: fixed;
    top: 30px;
    right: 40px; /* Aligned with header padding */
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001; /* 確保在最上層 */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: opacity 0.4s ease, transform 0.4s ease; /* Add transition */
}

.hamburger-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--aged-gold);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center; /* For hover effect */
}

/* 細膩的懸停反饋 */
.hamburger-menu:not(.active):hover .bar {
    transform: scaleX(0.8);
}

/* 漢堡選單打開時的動畫 */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.overlay-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--warm-beige);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.overlay-nav.active {
    opacity: 1;
    visibility: visible;
}

.overlay-header {
    position: absolute;
    top: 20px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1003;
    transition: opacity 0.4s ease; /* 為平滑過渡添加 */
}

.overlay-nav.active .overlay-header {
    opacity: 1;
}

.overlay-nav.level-2-active .overlay-header,
.overlay-nav.level-3-active .overlay-header {
    opacity: 0;
    pointer-events: none;
}

.overlay-header img {
    height: 40px;
    width: auto;
}
.overlay-header span {
    font-family: 'Source Serif Pro', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--aged-gold);
}

.overlay-nav-links {
    text-align: center;
    list-style: none;
    padding: 0;
}

.overlay-nav-links li {
    margin: 30px 0;
}

.overlay-nav-links a {
    font-family: 'Source Serif Pro', serif;
    font-size: 2.5rem;
    color: var(--ink-green);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.overlay-nav.active .overlay-nav-links a {
    opacity: 1;
    transform: translateY(0);
}

/* 連結出現的延遲效果 */
.overlay-nav.active .overlay-nav-links li:nth-child(1) a { transition-delay: 0.2s; }
.overlay-nav.active .overlay-nav-links li:nth-child(2) a { transition-delay: 0.3s; }
.overlay-nav.active .overlay-nav-links li:nth-child(3) a { transition-delay: 0.4s; }
.overlay-nav.active .overlay-nav-links li:nth-child(4) a { transition-delay: 0.5s; }

/* --- V2: Two-Level Overlay Navigation --- */
.overlay-nav .nav-level {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 100px 50px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    background-color: #F5F5DC;
}

.overlay-nav .nav-level-1 {
    transform: translateX(0);
}

.overlay-nav.level-2-active .nav-level-1,
.overlay-nav.level-3-active .nav-level-1 {
    transform: translateX(-100%);
}

.overlay-nav .nav-level-2 {
    transform: translateX(100%);
}

.overlay-nav.level-2-active .nav-level-2 {
    transform: translateX(0);
}

.overlay-nav .nav-level-3 {
    transform: translateX(100%);
}

.overlay-nav.level-3-active .nav-level-3 {
    transform: translateX(0);
}

.back-to-main-nav {
    position: absolute;
    top: 40px;
    left: 40px;
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1003;
    transition: color 0.3s ease;
}
.back-to-main-nav:hover {
    color: var(--ink-green);
}

.journeys-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 80%;
    max-width: 1200px;
    text-align: center;
}

.journey-card {
    position: relative;
    height: 250px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.journey-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.journey-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}
.journey-card:hover .journey-card-bg {
    transform: scale(1.1);
}

.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.journey-card-content {
    z-index: 2;
}

.journey-card h4 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.journey-card p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    opacity: 0.8;
}

.overlay-nav-footer {
    position: absolute;
    bottom: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}
.overlay-nav-footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.overlay-nav-footer a:hover {
    color: var(--ink-green);
}

.close-icon-wrapper {
    position: absolute;
    top: 40px;
    right: 40px; /* Aligned with header padding */
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
}
.close-icon-wrapper::before,
.close-icon-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 9.5px;
    width: 100%;
    height: 3px;
    background-color: var(--ink-green);
    transition: transform 0.3s ease;
}
.close-icon-wrapper::before {
    transform: rotate(45deg);
}
.close-icon-wrapper::after {
    transform: rotate(-45deg);
}
.close-icon-wrapper:hover::before {
    transform: rotate(135deg);
}
.close-icon-wrapper:hover::after {
    transform: rotate(45deg);
}

.overlay-nav-links a.consultation-link {
    font-size: 1.8rem;
    color: var(--aged-gold);
    border: 1px solid var(--aged-gold);
    padding: 10px 30px;
    border-radius: 30px;
    transition: background-color 0.3s, color 0.3s;
}

.overlay-nav-links a.consultation-link:hover {
    background-color: var(--aged-gold);
    color: var(--off-white);
}

/* --- Hero Section for Homepage --- */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Full viewport height */
    padding: 40px;
    text-align: center;
    background-color: var(--ink-green); /* Ink Green background */
    overflow: hidden; /* Hide anything that might overflow during animation */
}

/* Force absolute centering for hero content - REMOVED as it's redundant after HTML simplification */
/*
.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
*/

.hero-section .hero-logo {
    max-width: 250px; /* Adjust size as needed */
    width: 100%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease-out 0.5s forwards;
}

.hero-section .hero-brand-name {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem); /* Responsive font size */
    font-weight: 600;
    color: var(--aged-gold); /* Changed to Aged Gold as per UI Master's final decision */
    letter-spacing: 0.15em; /* Added for elegance and breathability */
    margin-bottom: 2rem; /* 增加與下方標語的間距 */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease-out 0.8s forwards;
}

.hero-section .hero-slogan {
    font-family: var(--font-sans-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 400;
    color: var(--warm-beige);
    letter-spacing: 0.1em; /* 增加文字間距以提升呼吸感 */
    margin-top: 0; /* 重設上方間距，由上方元素控制 */
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 1.2s ease-out 1.1s forwards;
    max-width: 90%;
    opacity: 0.85; /* 降低不透明度，使其更柔和 */
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: 24px;
    height: 24px;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease-out 1.5s forwards;
}

.scroll-indicator::before,
.scroll-indicator::after {
    content: '';
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-right: 2px solid var(--aged-gold);
    border-bottom: 2px solid var(--aged-gold);
    transform: rotate(45deg);
    animation: scroll-hint 2.5s infinite cubic-bezier(0.5, 0, 0.1, 1);
}

.scroll-indicator::after {
    animation-delay: 0.2s;
}

/* Reusable FadeIn Animation */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* New, elegant scroll hint animation */
@keyframes scroll-hint {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-15px, -15px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(15px, 15px);
    }
}


/* 為首圖增加柔和的漸層舞台 */
.hero-image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), transparent);
    z-index: 1;
}

/* --- QR Code Page Specific Styles --- */
.qr-page-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}
.qr-container {
    background: var(--stone-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 450px;
    width: 100%;
}
.qr-container h1 {
    color: var(--ink-green);
    margin-bottom: 25px;
    font-family: var(--font-serif);
    font-size: 2.2em;
}
.qr-code img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 10px;
    background: white;
    margin-bottom: 25px;
}
.qr-container p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-secondary);
}
.back-button {
    display: inline-block;
    padding: 14px 35px;
    background: var(--aged-gold);
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.2);
}

/* 滿版圖片區塊 */
.hero-image-section {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center top; /* 修改這裡，確保圖片頂部對齊 */
    position: relative;
    padding-top: 100px; /* 為 fixed header 預留空間 */
    display: flex; /* 使用 flexbox 來居中內容 */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 54, 0.2);
}

/* 文字說明區塊 */
.hero-text-section {
    padding: 4rem 2rem;
    background: var(--warm-beige);
    max-width: 1200px;
    margin: 0 auto;
}

.journey-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: block;
}

.journey-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--ink-green);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.journey-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 800px;
}

/* 地圖區塊 */
.journey-map-section {
    padding: 4rem 0;
    background: #EFEBE5;
    width: 100%;
    overflow: hidden; /* 防止內容溢出 */
}

.journey-map-section h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--ink-green);
    margin-bottom: 3rem;
    font-weight: 600;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 0;
    height: 500px; /* 從 600px 縮減為 500px，提升互動體驗 - 更新日期：2025-09-30 */
    width: 100%;
    max-width: none;
    margin: 0 auto;
    background: white;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.12);
    border-radius: 4px;
    overflow: hidden;
}

.map-container {
    height: 500px; /* 從 600px 調整為 500px */
    position: relative;
}

#map {
    width: 100%;
    height: 500px; /* 從 600px 調整為 500px */
}

.destinations-panel {
    background: white;
    display: flex;
    flex-direction: column;
    height: 500px; /* 從 600px 調整為 500px */
    border-left: 1px solid rgba(44, 62, 54, 0.1);
}

.panel-header {
    padding: 1.25rem 1.5rem; /* 微調內邊距，節省垂直空間 */
    background: var(--ink-green);
    color: var(--warm-beige);
    text-align: center;
}

.panel-header h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem; /* 從 1.2rem 微調至 1.15rem */
    margin: 0;
    font-weight: 600;
}

.destinations-list {
    flex: 1;
    overflow-y: auto; /* 確保可以滾動 */
    padding: 0.875rem 1rem; /* 微調內邊距 */
    height: calc(500px - 70px); /* 總高度減去標題高度 */
    max-height: calc(500px - 70px);
}

.destination-card {
    padding: 0.875rem 1rem; /* 從 1rem 調整為更緊湊的設計 */
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    border-radius: 4px;
}

.destination-card:hover {
    background: rgba(184, 134, 11, 0.05);
    border-left-color: var(--aged-gold);
    transform: translateX(3px);
}

/* 品牌化的滾動條設計 - 更新日期：2025-09-30 */
.destinations-list::-webkit-scrollbar {
    width: 6px; /* 細緻的滾動條 */
}

.destinations-list::-webkit-scrollbar-track {
    background: rgba(44, 62, 54, 0.03);
    border-radius: 3px;
}

.destinations-list::-webkit-scrollbar-thumb {
    background-color: var(--aged-gold);
    border-radius: 3px;
    opacity: 0.6;
    transition: background-color 0.3s ease;
}

.destinations-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--burgundy-red);
}

.destination-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.destination-info h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem; /* 從 1.1rem 微調至 1.05rem */
    color: var(--ink-green);
    margin: 0 0 0.25rem 0; /* 增加底部間距 */
    font-weight: 600;
    line-height: 1.3; /* 優化行高 */
}
.destination-date {
    font-size: 0.875rem; /* 從 0.9rem 微調 */
    font-weight: 600;
    color: var(--aged-gold);
    white-space: nowrap;
}
.destination-info .english-name {
    font-size: 0.8rem; /* 從 0.85rem 微調 */
    color: var(--text-secondary);
    opacity: 0.8; /* 降低視覺權重 */
    line-height: 1.3;
}

.destination-days {
    background: var(--aged-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.day-theme {
    font-size: 0.875rem; /* 從 0.9rem 微調 */
    color: var(--burgundy-red);
    font-style: italic;
    line-height: 1.5; /* 優化行高 */
    margin-top: 0.375rem; /* 增加與上方的間距 */
}

/* 旅程章節 - 70/30 比例 - 更新日期：2025-09-30 */
.journey-chapter {
    display: grid;
    grid-template-columns: 60% 40%; /* 從 70% 30% 修改為 60% 40% */
    align-items: center; /* 垂直居中對齊 */
    min-height: 80vh;
    margin: 0;
    padding: 0;
    position: relative; /* 為裝飾元素定位 */
}

/* 在每個章節下方加上清晰的視覺結束標記 - 更新日期：2025-09-30 */
.journey-chapter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* 從 40px 加寬到 60px */
    height: 2px; /* 從 1px 加粗到 2px */
    background: linear-gradient(
        to right, 
        transparent, 
        var(--aged-gold) 20%, 
        var(--aged-gold) 80%, 
        transparent
    ); /* 中間實心段佔 60% */
    opacity: 0.5; /* 從 0.3 提升到 0.5 */
}

/* 桌面版：章節之間的裝飾性間距 */
@media (min-width: 969px) {
    .journey-chapter {
        margin-bottom: 0; /* 桌面版維持緊密排列 */
    }
}

.journey-chapter.chapter-reverse {
    grid-template-columns: 40% 60%; /* 從 30% 70% 修改為 40% 60% */
}

.journey-chapter.chapter-reverse .chapter-image {
    order: 2; /* 確保圖片在右邊 */
}

.journey-chapter.chapter-reverse .chapter-text {
    order: 1; /* 確保文字在左邊 */
}


.chapter-image {
    overflow: hidden;
    height: 100%; /* 確保圖片填滿容器高度 */
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chapter-text {
    background: var(--warm-beige);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; /* 確保文字區塊填滿容器高度 */
}

/* 為 content-wrapper 增加底部呼吸空間 - 更新日期：2025-09-30 */
.content-wrapper {
    padding-bottom: 3rem; /* 在手機版會進一步調整 */
}

.chapter-day {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.chapter-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--ink-green);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.chapter-theme {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--burgundy-red);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.chapter-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 550px; /* 從 400px 增加到 550px */
}

/* 引言區塊 */
.journey-quote {
    padding: 4rem 2rem;
    background: var(--ink-green);
    color: var(--warm-beige);
    text-align: center;
}

.journey-quote blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* 體驗亮點 */
.journey-highlights {
    padding: 4rem 2rem;
    background: var(--warm-beige);
}

.journey-highlights h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--ink-green);
    margin-bottom: 3rem;
    font-weight: 600;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(44, 62, 54, 0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.12);
}

.highlight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.highlight-card h4 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--ink-green);
    padding: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.highlight-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 旅程資訊 */
.journey-details {
    padding: 4rem 2rem;
    background: #EFEBE5;
}

.journey-details h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    text-align: center;
    color: var(--ink-green);
    margin-bottom: 3rem;
    font-weight: 600;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.details-card {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(44, 62, 54, 0.08);
}

.details-card h4 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--burgundy-red);
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--aged-gold);
}

.details-card ul {
    list-style: none;
}

.details-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.details-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--aged-gold);
    font-weight: bold;
}

.details-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.details-card strong {
    color: var(--ink-green);
}

.details-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--ink-green);
    color: var(--warm-beige);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.details-cta:hover {
    background: var(--burgundy-red);
    transform: translateY(-2px);
}

/* 頁尾 */
.footer {
    background: var(--ink-green);
    color: var(--warm-beige);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-consultation-link {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: var(--aged-gold);
    color: var(--ink-green);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.footer-info {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-info p {
    margin: 5px 0;
    font-size: 14px;
    color: #aaa;
}

.footer-links {
    margin-top: 20px;
    margin-bottom: 20px; /* Adjust as needed for spacing */
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

/* 響應式設計 - 更新日期: 2025-09-30 */
@media (max-width: 968px) {
    .main-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .map-container {
        height: 320px; /* 從 350px 進一步優化，讓地圖更緊湊 */
    }
    
    #map {
        height: 320px; /* 同步更新地圖高度 */
    }
    
    .destinations-panel {
        height: 320px; /* 從 500px 大幅縮減，實現「一半」的設計目標 */
        min-height: 320px; /* 確保最小高度 */
    }
    
    .destinations-list {
        height: calc(320px - 65px); /* 總高度減去標題高度 */
        max-height: calc(320px - 65px);
        padding: 0.75rem 0.875rem; /* 調整內邊距以優化空間利用 */
    }
    
    .panel-header {
        padding: 1rem 1.25rem; /* 手機版進一步縮減內邊距 */
    }
    
    .destination-card {
        padding: 0.75rem; /* 微調卡片內邊距，讓內容更緊湊 */
        margin-bottom: 0.625rem;
    }
    
    .journey-chapter {
        grid-template-columns: 1fr;
        min-height: auto;
        margin-bottom: 2rem; /* 從 3rem 減少到 2rem，避免誤以為內容未載入 - 更新日期：2025-09-30 */
    }
    
    .journey-chapter.chapter-reverse {
        grid-template-columns: 1fr;
    }
    
    .chapter-image {
        height: 50vh;
        position: relative;
    }
    
    /* 在圖片下方加入優雅的漸層過渡 - 更新日期：2025-09-30 */
    .chapter-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, transparent, rgba(245, 241, 232, 0.6));
        pointer-events: none;
    }
    
    .chapter-text {
        padding: 2rem;
        padding-top: 2.5rem; /* 從 3rem 減少到 2.5rem，更緊湊 - 更新日期：2025-09-30 */
    }
    
    /* 平板版：強化古銅金分隔線 - 更新日期：2025-09-30 */
    .journey-chapter::after {
        opacity: 0.6; /* 從 0.3 提升到 0.6 */
        width: 70px; /* 從 40px 加寬到 70px */
        height: 2px; /* 從 1px 加粗到 2px */
        bottom: -1rem;
    }
    
    /* 手機版增加章節間的呼吸空間 */
    .content-wrapper {
        padding-bottom: 4rem; /* 手機版增加底部間距 */
    }
    
    /* 手機版進一步增加詳細行程按鈕的底部間距 */
    .journey-details-toggle {
        margin-bottom: 5rem; /* 手機版增加至 5rem */
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-image-section {
        height: 50vh;
    }
    
    .hero-text-section {
        padding: 2rem;
    }
    
    /* 手機螢幕下地圖區塊的進一步優化 - 更新日期: 2025-09-30 */
    .journey-map-section {
        padding: 3rem 0; /* 減少上下內邊距 */
    }
    
    .journey-map-section h3 {
        font-size: 2rem; /* 縮小標題字體 */
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .map-container {
        height: 280px; /* 小螢幕下優化地圖高度，保持緊湊 */
    }
    
    #map {
        height: 280px;
    }
    
    .destinations-panel {
        height: 280px; /* 從 550px 大幅縮減為 280px，實現一半高度 */
        min-height: 280px;
    }
    
    .destinations-list {
        height: calc(280px - 60px); /* 調整標題高度計算 */
        max-height: calc(280px - 60px);
        padding: 0.625rem 0.75rem; /* 進一步優化內邊距 */
    }
    
    .panel-header {
        padding: 1rem 1.25rem; /* 縮小標題內邊距 */
    }
    
    .panel-header h4 {
        font-size: 1.05rem; /* 縮小標題字體 */
    }
    
    .destination-card {
        padding: 0.625rem 0.75rem; /* 更緊湊的卡片設計 */
        margin-bottom: 0.5rem;
    }
    
    .destination-info h4 {
        font-size: 0.95rem; /* 縮小目的地名稱字體 */
        line-height: 1.3;
    }
    
    .destination-date {
        font-size: 0.8rem;
    }
    
    .day-theme {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .english-name {
        font-size: 0.75rem; /* 縮小英文名稱 */
    }
    
    /* 超小螢幕進一步增加呼吸空間 - 更新日期：2025-09-30 */
    .content-wrapper {
        padding-bottom: 5rem; /* 超小螢幕增加更多底部間距 */
    }
    
    .journey-details-toggle {
        margin-bottom: 6rem; /* 超小螢幕增加至 6rem，確保清晰的視覺分隔 */
    }
    
    /* 超小螢幕：優化章節間距，避免誤以為內容未載入 - 更新日期：2025-09-30 */
    .journey-chapter {
        margin-bottom: 2.5rem; /* 從 4rem 減少到 2.5rem，保持適度呼吸感 */
    }
    
    .chapter-text {
        padding-top: 2.5rem; /* 從 3.5rem 減少到 2.5rem */
    }
    
    /* 超小螢幕：圖片底部的漸層過渡 */
    .chapter-image::after {
        height: 60px; /* 從 80px 減少回 60px，更緊湊 */
        background: linear-gradient(to bottom, transparent, rgba(245, 241, 232, 0.7));
    }
    
    /* 超小螢幕：強化古銅金分隔線的視覺存在感 - 更新日期：2025-09-30 */
    .journey-chapter::after {
        opacity: 0.65; /* 從 0.4 提升到 0.65，更清晰可見 */
        width: 80px; /* 從 60px 加寬到 80px */
        height: 2px; /* 從 1px 加粗到 2px，更有存在感 */
        bottom: -1.25rem; /* 調整位置到章節之間 */
        background: linear-gradient(
            to right, 
            transparent, 
            var(--aged-gold), 
            var(--aged-gold), 
            transparent
        ); /* 中間實心段更長 */
    }
    
    /* 超小螢幕：為引言區塊增加適度間距 - 更新日期：2025-09-30 */
    .journey-quote {
        margin: 2rem 0; /* 從 3rem 減少到 2rem，避免過大留白 */
        padding: 2.5rem 1.5rem; /* 增加內邊距補償 */
    }
}

/* Reimagined About & Team Sections
-------------------------------------------------- */

.about-section-reimagined {
    background-color: #F5F5DC; /* Warm Beige */
    padding: 10rem 0;
    text-align: center;
}

.about-intro-text {
    max-width: 720px;
    margin: 0 auto;
    font-family: 'Source Serif Pro', serif;
    color: #2C3E36; /* Ink Green */
    font-size: 1.5rem;
    line-height: 2.2;
    font-weight: 400;
}

.about-intro-text p {
    margin-bottom: 2.5em;
    opacity: 0.8;
}

.about-intro-text h2 {
    font-size: 2rem;
    font-weight: 600;
    opacity: 1;
    color: #7B2D26; /* Burgundy Red */
}

/* 品牌起源區塊 - 更新日期：2025-09-30 22:00 */
.origin-section {
    background-color: #FFFFFF;
    padding: 8rem 0;
    position: relative;
}

.origin-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--aged-gold);
    opacity: 0.5;
}

.origin-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.origin-content p {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.4rem;
    line-height: 2.2;
    color: var(--ink-green);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.origin-content .origin-lead {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    color: var(--ink-green);
    opacity: 1;
}

.origin-content .origin-revelation {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--burgundy-red);
    margin: 3rem 0;
    position: relative;
    padding: 2rem 0;
}

.origin-content .origin-revelation::before,
.origin-content .origin-revelation::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--aged-gold);
    opacity: 0.4;
}

.origin-content .origin-revelation::before {
    top: 0;
}

.origin-content .origin-revelation::after {
    bottom: 0;
}

.origin-content .origin-promise {
    font-size: 1.5rem;
    margin: 2.5rem 0;
    font-style: italic;
}

.origin-content .origin-belief {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink-green);
    margin-top: 3rem;
    padding-top: 2rem;
    position: relative;
}

.origin-content .origin-belief::before {
    content: '「';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--aged-gold);
    opacity: 0.3;
    font-family: 'Source Serif Pro', serif;
}

.team-section-reimagined {
    padding: 8rem 0;
    background-color: #FFFFFF;
}

.team-section-reimagined .section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.team-section-reimagined .section-header h2 {
    font-family: 'Source Serif Pro', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #2C3E36; /* Ink Green */
    margin-bottom: 0.5rem;
}

.team-section-reimagined .section-header .en-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #B8860B; /* Aged Gold */
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.team-section-reimagined .section-header .section-lead {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.4rem;
    color: #333;
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.curator-profile {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 10rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.curator-profile.in-view {
    opacity: 1;
    transform: translateY(0);
}


/* Staggered animation delay */
.curator-profile.peter { transition-delay: 0.1s; }
.curator-profile.hsuan { transition-delay: 0.2s; }
.curator-profile.yahoo { transition-delay: 0.3s; }


/* Alternating layout for magazine feel */
.curator-profile.hsuan {
    grid-template-columns: 1.2fr 1fr;
}

.curator-profile.hsuan .curator-image {
    order: 2;
}
.curator-profile.hsuan .curator-info {
    order: 1;
    text-align: right;
}


.curator-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 5;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.4s ease;
}

.curator-image img:hover {
    filter: grayscale(0%) contrast(1);
}

.curator-info h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #2C3E36; /* Ink Green */
    margin-bottom: 1rem;
}

.curator-info h3 .title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #7B2D26; /* Burgundy Red */
    display: block;
    margin-top: 0.5rem;
}

.curator-info p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
}

.curator-quote {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--burgundy-red);
    padding: 1.5rem 0;
    line-height: 1.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .curator-profile,
    .curator-profile.hsuan {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .curator-profile.hsuan .curator-image,
    .curator-profile.hsuan .curator-info {
        order: 0; /* Reset order */
        text-align: center;
    }

    .curator-image {
        max-width: 400px;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .about-section-reimagined { padding: 6rem 0; }
    .about-intro-text { font-size: 1.2rem; line-height: 2; }
    .about-intro-text h2 { font-size: 1.5rem; }

    /* 品牌起源區塊響應式 - 更新日期：2025-09-30 22:00 */
    .origin-section { 
        padding: 5rem 0; 
    }
    
    .origin-content p {
        font-size: 1.1rem;
        line-height: 2;
    }
    
    .origin-content .origin-lead {
        font-size: 1.3rem;
    }
    
    .origin-content .origin-revelation {
        font-size: 1.4rem;
        margin: 2rem 0;
        padding: 1.5rem 0;
    }
    
    .origin-content .origin-promise {
        font-size: 1.2rem;
    }
    
    .origin-content .origin-belief {
        font-size: 1.3rem;
    }

    .team-section-reimagined { padding: 5rem 0; }
    .team-section-reimagined .section-header h2 { font-size: 2.2rem; }
    .team-section-reimagined .section-header .section-lead { font-size: 1.2rem; }

    .curator-info h3 { font-size: 1.8rem; }
    .curator-info p { font-size: 1rem; }
}

/* --- 行程頁面：可展開式行程 (Accordion) 優化 - 更新日期：2025-09-30 --- */
.journey-details-toggle {
    margin-top: 2.5rem; /* 增加與上方內容的間距，創造呼吸感 */
    margin-bottom: 4rem; /* 增加與下方章節的距離，避免視覺混淆 */
    padding-top: 0; /* 移除內邊距，讓裝飾更緊湊 */
    position: relative;
}

/* 用古銅金裝飾點取代完整橫線，符合品牌美學 */
.journey-details-toggle::before {
    content: '';
    position: absolute;
    top: -1rem; /* 位於區塊上方 */
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--aged-gold);
    border-radius: 50%;
    opacity: 0.6;
}

/* 在按鈕下方加上柔和的結束標記 */
.journey-details-toggle::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background-color: var(--aged-gold);
    border-radius: 50%;
    opacity: 0.25;
}

.journey-details-toggle summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--aged-gold); /* 改用古銅金色，提升識別度 */
    position: relative;
    padding-left: 2rem;
    list-style: none; /* 隱藏預設的箭頭 */
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 0.95rem; /* 稍微縮小字體，降低視覺權重 */
}

.journey-details-toggle summary:hover {
    color: var(--burgundy-red);
    transform: translateX(3px); /* 微妙的滑動效果 */
}

.journey-details-toggle summary::-webkit-details-marker {
    display: none; /* 再次確保在 Safari 中隱藏箭頭 */
}

/* 自訂 +/- 指示器 */
.journey-details-toggle summary::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--aged-gold);
    transition: transform 0.3s ease;
}

.journey-details-toggle[open] > summary::before {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}

.details-content {
    padding: 1.5rem 0 0.5rem 2rem;
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeInAccordion 0.5s ease forwards;
}

.details-content strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--ink-green);
    font-family: var(--font-serif);
}
.details-content ul {
    list-style-type: none;
    padding-left: 0;
}
.details-content li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@keyframes fadeInAccordion {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 行程頁面：新增區塊樣式 --- */
.who-is-this-for {
    padding: 4rem 2rem;
    background: var(--warm-beige);
    text-align: center;
}
.who-is-this-for h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--ink-green);
    margin-bottom: 2rem;
}
.who-is-this-for ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.who-is-this-for li {
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    font-size: 1.1rem;
}
.who-is-this-for li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--aged-gold);
    font-weight: bold;
}
.who-is-this-for .welcome-message {
    margin-top: 2rem;
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--ink-green);
}

.journey-curator {
    padding: 4rem 2rem;
    background: #EFEBE5;
}
.curator-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.12);
}
.curator-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(50%);
}
.curator-text h3 {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.curator-text h4 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
    margin-bottom: 1.5rem;
}
.curator-text p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1rem;
}
.curator-text p:last-child {
    margin-bottom: 0;
}

.social-proof {
    padding: 4rem 2rem;
    background: var(--warm-beige);
    text-align: center;
}
.social-proof h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--ink-green);
    margin-bottom: 2rem;
}
.social-proof blockquote {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    color: var(--text-secondary);
}
.social-proof footer {
    margin-top: 1rem;
    font-style: italic;
    color: var(--ink-green);
}

.call-to-action {
    padding: 5rem 2rem;
    background: var(--ink-green);
    color: var(--warm-beige);
    text-align: center;
}
.call-to-action h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.call-to-action p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .curator-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .curator-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }

    .hamburger-menu {
        top: 22px;
        right: 20px;
    }
    
    .overlay-header {
        left: 20px;
    }

    .overlay-nav-links a {
        font-size: 2rem;
    }

    .about-section-reimagined {
        padding: 4rem 1.5rem;
    }
    
    .about-intro-text {
        font-size: 1.2rem;
        line-height: 1.9;
    }

    .about-intro-text h2 {
        font-size: 1.6rem;
    }
    
    .moment-section {
        height: 50vh;
    }

    .moment-quote {
        font-size: 1.3rem;
        padding: 0 1.5rem;
    }

    .philosophy-section, .cta-section {
        padding: 4rem 1.5rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-item {
        padding: 1rem 0;
    }

    .philosophy-section .section-header h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .journeys-list {
        width: 100%;
        padding: 1rem;
        height: calc(100vh - 120px); /* 調整高度以適應螢幕 */
    }

    .journey-item {
        flex-direction: column;
        gap: 1rem;
    }

    .journey-item-image {
        width: 100%;
        height: 150px; /* 給定一個固定高度 */
    }
}

/* ---
新增樣式 - 旅遊定型化契約頁面優化 (contract.html)
設計師: UI 設計大師
日期: 2025-09-30
--- */

/* 契約頁面標題區塊 */
.contract-header {
    padding: 6rem 2rem 4rem;
    background: var(--warm-beige);
    text-align: center;
}

.contract-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contract-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 契約內容容器 */
#contract-content {
    background-color: #FFFFFF;
    padding: 3rem 4rem;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(44, 62, 54, 0.1);
    margin: 4rem auto; /* 上下留出足夠空間 */
    max-width: 900px; /* 設定最大寬度以利閱讀 */
}

/* 契約內文排版 */
#contract-content .about-text {
    text-align: left;
}

#contract-content .about-text h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink-green);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(44, 62, 54, 0.2);
}

#contract-content .about-text h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--burgundy-red);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

#contract-content .about-text p,
#contract-content .about-text li {
    font-family: var(--font-sans-serif);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

#contract-content .about-text ol {
    padding-left: 1.5rem; /* 保持自然的縮排 */
}

#contract-content .about-text ol li {
    margin-bottom: 0.8rem;
}

/* 響應式調整 */
@media (max-width: 768px) {
    #contract-content {
        padding: 2rem 1.5rem;
        margin: 2rem auto;
    }

    #contract-content .about-text h3 {
        font-size: 1.4rem;
    }

    #contract-content .about-text h4 {
        font-size: 1.1rem;
    }

    #contract-content .about-text p,
    #contract-content .about-text li {
        font-size: 0.95rem;
    }
}

/* --- 相關規範頁面優化 (更新日期: 2025-09-30) --- */
.regulations-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.regulation-item {
    color: var(--ink-green);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.regulation-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--aged-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.regulation-item:hover {
    color: var(--burgundy-red);
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(44, 62, 54, 0.15);
}

.regulation-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .regulations-list {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .regulation-item {
        font-size: 1.4rem;
        padding: 0.6rem 1rem;
    }
}

/* ---
新增樣式 - 針對 index.html 的結構升級
版本: 1.0
--- */

/* --- 1. 主題式體驗列表 (Overlay Nav) --- */
.journeys-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
    max-width: 800px; /* 限制最大寬度以保持優雅 */
    text-align: left;
    height: 80vh;
    overflow-y: auto;
    padding: 2rem;
}

.journey-item {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 1rem;
    transition: background-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.journey-item:hover {
    background-color: #FFFFFF;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.journey-item-image {
    width: 120px;
    flex-shrink: 0;
    border-radius: 4px;
    background-size: cover;
    background-position: center;
}

.journey-item-content h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--ink-green);
    margin: 0 0 0.25rem 0;
}

.journey-item-content p {
    font-family: var(--font-sans-serif);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.journey-item-date {
    font-family: var(--font-sans-serif);
    font-size: 0.85rem;
    color: var(--burgundy-red);
    margin-top: 0.5rem;
    display: block;
}

/* --- 2. 瞬間的迴響區塊 --- */
.moment-section {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    perspective: 1px;
}

.moment-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
    /* iOS 視差滾動相容性優化 - 更新日期: 2025-09-30 23:50 */
    transform: translateZ(-1px) scale(2);
    z-index: -1;
}

.moment-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    position: relative; /* 確保在背景之上 */
    z-index: 2;
    padding: 0 2rem;
}

/* --- 3. 策展哲學區塊 --- */
.philosophy-section {
    padding: 8rem 2rem;
    background-color: var(--warm-beige);
}

.philosophy-section .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.philosophy-section .section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    color: var(--ink-green);
    margin-bottom: 0.5rem;
}

.philosophy-section .section-header .en-subtitle {
    font-family: var(--font-sans-serif);
    font-size: 1.2rem;
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.philosophy-section .section-header .section-lead {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 1rem auto 0;
    opacity: 0.7;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
}

.philosophy-item h3 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--burgundy-red);
}

.philosophy-item p {
    font-family: var(--font-sans-serif);
    color: var(--aged-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.philosophy-item span {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* --- 4. 行動呼籲 (CTA) 區塊 --- */
.cta-section {
    padding: 8rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--ink-green);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.cta-link {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--aged-gold);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    background-color: #c99a25; /* Slightly darker gold on hover */
}

/* --- 5. 響應式調整 for new sections --- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


@media (max-width: 768px) {
    .main-header {
        padding: 1