/* 사이트 헤더 스타일 */

/* 헤더 고정 */
header {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* 모바일 메뉴 애니메이션 */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper 스타일 */
.swiper {
    width: 100%;
    height: 100%;
    padding: 20px 0 40px 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: #FC6011;
}

.swiper-pagination-bullet-active {
    background: #FC6011;
}

/* 모바일 메뉴 토글 */
.mobile-menu {
    display: none;
}

.mobile-menu.active {
    display: block;
}

/* 모바일 메뉴 토글 버튼 스타일 */
#mobileMenuToggle {
    display: block;
    min-width: 40px;
    min-height: 40px;
}

@media (min-width: 1024px) {
    #mobileMenuToggle {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        z-index: 1000;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

