/* Hero 區域圖片樣式 */
.hero-main-visual {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 100px 15px;
}

.hero-banner-img {
    max-width: 450px;
    height: auto;
    margin: 0 auto 1px;
    display: block;
    transition: transform 0.3s ease;
}

.hero-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 300px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #8b7355; /* 深棕色 */
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title-en {
    display: block;
    font-size: 1.5rem;
    font-weight: 300;
    color: #d4a574; /* 金色 */
    margin-top: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .hero-main-visual {
        padding: 60px 15px;
    }
    
    .hero-card {
        padding: 25px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-title-en {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* 手機版背景圖片修復 */
    .hero-section {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
        min-height: 100vh !important;
        background-repeat: no-repeat !important;
    }
}
