/* 히어로 슬라이드 텍스트 완전 흰색 - 최종 최종 버전 */

/* 모든 슬라이드에 어두운 오버레이 추가 */
.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

/* 슬라이드 컨텐츠는 오버레이 위에 */
.hero-slide .slide-content {
    position: relative;
    z-index: 100 !important;
}

/* 모든 텍스트 완전 흰색 */
.hero-slide .slide-title,
.hero-slide .slide-subtitle,
.hero-slide h1,
.hero-slide h2,
.hero-slide p {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    filter: none !important;
    -webkit-filter: none !important;
}

/* body.home에서도 동일 */
body.home .hero-slide .slide-title,
body.home .hero-slide .slide-subtitle,
body.home .hero-slide h1,
body.home .hero-slide h2,
body.home .hero-slide p {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
    filter: none !important;
    -webkit-filter: none !important;
}

/* 슬라이드 컨테이너 필터 제거 */
.hero-slide .slide-content,
.hero-slide .slide-content *,
.hero-slide .container {
    filter: none !important;
    -webkit-filter: none !important;
}
