/* 히어로 슬라이더 - 완전 수정 */

/* 슬라이드 컨테이너 */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 모든 슬라이드 기본 숨김 */
.hero-slide {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 활성 슬라이드만 표시 */
.hero-slide.active {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

/* 슬라이드 도트 네비게이션 */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dot.active {
    background: #ffffff;
    width: 30px;
    border-radius: 6px;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}
