/* ================================================
   🎬 HERO SECTIONS - CLEAN MOBILE-FIRST APPROACH
   ================================================ */

/* Desktop Base Styles (unchanged) */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
    /* */
    background: linear-gradient(135deg, #ffffff, #ffc0cb);
    /* 🎨 線性漸層：白色占 80%，粉紅從 80% 開始佔 20% */





    background: linear-gradient(135deg, #ffffff, #e6f4ea);
    /* 淺綠色背景 */

    background: linear-gradient(135deg, #ffffff, #edf4fa);
    /* 淺藍色背景 */

    background: linear-gradient(135deg, #ffffff, #f5deb3);
    /* 淺黃色背景 */
}

.hero-content {
    z-index: 2;
    max-width: 80%;
    margin: 0 auto;
    padding: 2rem;
}

/* ================================================
   📱 MOBILE RESPONSIVE OVERRIDES (max-width: 767px)
   ================================================ */

@media (max-width: 767px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
        padding: 0rem;
    }

    .hero-content.mobile-responsive {
        max-width: 95%;
        padding: 0rem;
        gap: 0.75rem;
    }

    .mobile-heading,
    .mobile-subheading {
        text-align: center !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
    }

    .mobile-heading {
        font-size: 8vw !important;
        top: 20% !important;
    }

    .mobile-subheading {
        font-size: 4vw !important;
        top: 30% !important;
    }

    .hero-overlay-image.mobile-overlay-img {
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        width: 170% !important;
        max-height: 50vh !important;
        top: 40% !important;
    }

    .hero-content-wrapper.mobile-content-wrapper {
        position: relative;
        z-index: 3;
        margin-top: auto;
        padding-bottom: 2rem;
    }

    .hero-section .hero-content {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
}