/* ==========================================================================
   關於對位 - 內頁專屬樣式 (Philosophy Page)
   ========================================================================== */

/* 基礎設定與字體套用 */
.philosophy-page {
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    background-color: #ffffff;
    /* 國際感極簡白底 */
    overflow-x: hidden;
}

/* 留白與呼吸感 (Whitespace) */
/* 利用極大的 margin 保留區塊視覺呼吸空間 */
.philosophy-page section {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .philosophy-page section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/* 圖片佔位符 (Image Placeholders) */
.image-placeholder {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    /* 加入斜線裝飾紋理增加設計感 */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0,0,0,0.025) 10px, rgba(0,0,0,0.025) 20px); */
    pointer-events: none;
}

.placeholder-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.95rem;
    color: #888;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 2;
}

/* 1. Hero Section */
.hero-header {
    background-color: #fff;
    padding-top: 0 !important;
    /* 滿版區塊去除頂部 padding */
    padding-bottom: 0 !important;
}

.hero-text-box {
    margin-top: -80px;
    /* 製造圖文重疊感 (Overlap) */
    background-color: #fff;
    padding: 60px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 10;
}

.hero-text-box h1 {
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: 0.15em;
    color: #111;
}

@media (max-width: 768px) {
    .hero-text-box {
        margin-top: -30px;
        padding: 40px 20px;
    }

    .hero-text-box h1 {
        font-size: 2rem;
    }
}

/* 2. 理念引言 (Philosophy Quote) */
.philosophy-quote {
    background-color: #fafafa;
}

.quote-text {
    font-size: 2.2rem;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #222;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.6rem;
    }
}

/* 引言裝飾符號 */
.quote-text::before,
.quote-text::after {
    font-family: serif;
    font-size: 5rem;
    color: #ffc453;
    opacity: 0.25;
    position: absolute;
    z-index: -1;
}

.quote-text::before {
    content: '“';
    top: -45px;
    left: -30px;
}

.quote-text::after {
    content: '”';
    bottom: -80px;
    right: -30px;
}

/* 3. 圖文交錯區 */
.alternating-content {
    background-color: #ffffff;
}

.content-box h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #1a1a1a;
}

.content-box p {
    font-size: 1.05rem;
    color: #555;
    text-align: justify;
    line-height: 2.2;
    /* 極寬鬆的閱讀行距 */
}

/* 增加非對稱網格質感的側邊修飾線 */
.content-box-left {
    border-left: 3px solid #ffc453;
    padding-left: 40px !important;
}

.content-box-right {
    border-right: 3px solid #ffc453;
    padding-right: 40px !important;
}

@media (max-width: 991px) {

    .content-box-left,
    .content-box-right {
        border: none;
        padding-left: var(--bs-gutter-x, 0.75rem) !important;
        padding-right: var(--bs-gutter-x, 0.75rem) !important;
    }
}