/* 메인 슬라이더 스타일 */
.main-carousel {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.main-carousel .item {
    position: relative;
    height: 100vh;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.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;
}

.copy_area h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}

.copy_area h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s forwards;
}

.copy_area h3 {
    font-size: 18px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.6s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Owl Carousel 네비게이션 스타일 */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.owl-prev,
.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;
}

.owl-prev:hover,
.owl-next:hover {
    background: rgba(255, 255, 255, 0.4) !important;
}

.owl-prev {
    left: 30px;
}

.owl-next {
    right: 30px;
}

.owl-prev i,
.owl-next i {
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    width: 100%;
    text-align: center;
    display: block;
}

.owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.owl-dot.active span {
    background: #fff;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .copy_area h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .copy_area h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .copy_area h3 {
        font-size: 16px;
    }

    .owl-nav {
        display: none;
    }

    .owl-dots {
        bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .main-carousel .li .copy_area h2 {
        font-size: 28px;
        letter-spacing: -2px;
    }

    .main-carousel .li .copy_area h3 {
        font-size: 14px;
    }

    .main-carousel .owl-dots {
        bottom: 80px;
    }
} 