/* ===== 其他頁面通用樣式 ===== */

/* 頁面主視覺 */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4d9;
    overflow: hidden;
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 50px 40px;
    background-color: rgba(252, 252, 245, 0.85);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    max-width: 800px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 響應式設計 ===== */

/* 平板 */
@media (max-width: 968px) {
    .hero-title {
        font-size: 60px;
    }
    
    .hero-content {
        padding: 40px 30px;
    }
}

/* 手機 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-content {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        padding: 30px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

