/* ==================== */
/* 首頁樣式 - 主要按鈕與佈局 */
/* ==================== */

.home-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* 品牌標頭容器 */
.brand-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

/* 衡真坊書法大字 */
.hengzhen-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 4.5rem;
    font-weight: 900;
    color: #1a1a1a;
    text-shadow: 
        3px 3px 0 rgba(198,40,40,0.15),
        6px 6px 0 rgba(212,175,55,0.1);
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

/* 書法字墨跡效果 */
.hengzhen-title::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, 
        transparent 0%, 
        #C62828 30%, 
        #D4AF37 70%, 
        transparent 100%);
    opacity: 0.6;
}

/* 品牌副標 */
.hengzhen-subtitle {
    font-family: 'Noto Serif TC', serif;
    font-size: 1.3rem;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Logo 容器 */
.hengzhen-logo {
    margin-bottom: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* 核心信念 */
.core-belief {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== */
/* 主要按鈕 */
/* ==================== */

.main-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
}

.main-btn {
    background: var(--vermilion);
    color: white;
    padding: 2rem 3.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(33,33,33,0.25);
    border: none;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: inherit;
    border: 2px solid transparent;
}

.main-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(33,33,33,0.35);
    background: #C62828;
    border-color: #F9A825;
}

.main-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(33,33,33,0.3);
}

