/**
 * 웹사이트 슬라이더 스타일시트 (아래에서 위로 올라오는 애니메이션)
 * 파일명: website-slider.css
 * 위치: /theme/THEME_NAME/css/website-slider.css
 */

/* 슬라이더 컨테이너 */
.website-slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    overflow: hidden;
}

/* 슬라이더 래퍼 */
.website-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* 슬라이더 트랙 */
.website-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* 웹사이트 화면 아이템 - 기본 상태 (모두 숨김) */
.website-slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s ease,
                visibility 0s 0.8s;
    z-index: 0;
}

/* 활성화된 아이템 (현재 보이는 슬라이드) */
.website-slider-item.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s ease,
                visibility 0s 0s;
    z-index: 2;
}

/* 이전 아이템 (위로 사라지는 슬라이드) */
.website-slider-item.prev {
    opacity: 0;
    visibility: visible;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.8s ease,
                visibility 0s 0.8s;
    z-index: 1;
}

/* 다음 아이템 대기 (아래에서 대기) */
.website-slider-item.next {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: none;
    z-index: 0;
}

/* 웹사이트 화면 프레임 (PC 모니터 모양) */
.website-screen-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 0 8px #2a2a2a;
}

/* 모니터 스탠드 효과 */
.website-screen-frame::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 10px 10px;
    z-index: -1;
}

/* 웹사이트 이미지 (16:9 비율) */
.website-screen-frame img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* 오버레이 */
.website-screen-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        transparent 100%
    );
    color: #fff;
    padding: 50px 40px 30px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.website-slider-item.active:hover .website-screen-overlay {
    transform: translateY(0);
}

.website-screen-overlay h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #fff;
    line-height: 1.3;
}

.website-screen-overlay p {
    font-size: 18px;
    margin: 0;
    color: #fff;
    opacity: 0.95;
    line-height: 1.5;
}

/* 인디케이터 (도트) */
.website-slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.website-slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.website-slider-indicators .indicator:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: scale(1.2);
}

.website-slider-indicators .indicator.active {
    background: #333;
    width: 35px;
    border-radius: 6px;
}

/* 반응형 디자인 */
@media screen and (max-width: 1200px) {
    .website-slider-wrapper {
        height: 450px;
    }
    
    .website-screen-overlay h3 {
        font-size: 24px;
    }
    
    .website-screen-overlay p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .website-slider-container {
        padding: 0 15px;
    }
    
    .website-slider-wrapper {
        height: 350px;
    }
    
    .website-screen-overlay {
        padding: 30px 25px 20px;
    }
    
    .website-screen-overlay h3 {
        font-size: 20px;
    }
    
    .website-screen-overlay p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .website-slider-wrapper {
        height: 280px;
    }
    
    .website-screen-overlay {
        padding: 20px 15px 15px;
    }
    
    .website-screen-overlay h3 {
        font-size: 18px;
    }
    
    .website-screen-overlay p {
        font-size: 13px;
    }
    
    .website-slider-indicators {
        margin-top: 20px;
    }
}

/* 제목 위치 조정 */
.tl_business_now_box_warp .inner > h2 {
    margin-top: 30px;
    margin-bottom: 20px;
}