/* 메인 슬라이더 스타일 */
.iwon-theme .main-carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.iwon-theme .main-carousel .item {
    position: relative;
    height: 500px;
}

.iwon-theme .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.iwon-theme .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.iwon-theme .copy_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 0 20px;
    z-index: 10;
}

.iwon-theme .copy_area h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.iwon-theme .copy_area h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.iwon-theme .copy_area h3 {
    font-size: 18px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.6s forwards;
}

/* 슬라이드 안 슬로건 (이미지 위 텍스트) - 1줄 작게 */
.iwon-theme .copy_area .slide-slogan-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

/* 2줄: 철거 : 원상복구 : 리모델링 (흰색 테두리 박스) - 크게 */
.iwon-theme .copy_area .slide-slogan-keywords {
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.95);
    padding: 18px 40px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.iwon-theme .copy_area .slide-slogan-keywords span {
    color: #fff;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Owl Carousel 네비게이션 스타일 */
.iwon-theme .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.iwon-theme .owl-prev,
.iwon-theme .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.iwon-theme .owl-prev:hover,
.iwon-theme .owl-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

.iwon-theme .owl-prev {
    left: 30px;
}

.iwon-theme .owl-next {
    right: 30px;
}

.iwon-theme .owl-prev i,
.iwon-theme .owl-next i {
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    display: block;
}

.iwon-theme .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.iwon-theme .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.iwon-theme .owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.iwon-theme .owl-dot.active span {
    background: #fff;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .iwon-theme .main-carousel {
        height: 400px;
    }
    
    .iwon-theme .main-carousel .item {
        height: 400px;
    }
    
    .iwon-theme .copy_area .slide-slogan-text {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .iwon-theme .copy_area .slide-slogan-keywords {
        padding: 14px 28px;
        font-size: 1.25rem;
    }

    .iwon-theme .copy_area h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .iwon-theme .copy_area h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .iwon-theme .copy_area h3 {
        font-size: 16px;
    }

    .iwon-theme .owl-nav {
        display: none;
    }

    .iwon-theme .owl-dots {
        bottom: 10px;
    }
}

@media screen and (max-width: 480px) {
    .iwon-theme .main-carousel .li .copy_area h2 {
        font-size: 28px;
        letter-spacing: -2px;
    }

    .iwon-theme .main-carousel .li .copy_area h3 {
        font-size: 14px;
    }

    .iwon-theme .main-carousel .owl-dots {
        bottom: 5px;
    }
} 