/* ================================================ 
   KpopView 푸터 스타일 
   ================================================ */

.kv-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 20px 0;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin: 0 auto;
    padding-bottom: 40px;
}

/* ================================================
   왼쪽 영역
   ================================================ */

.footer-left {
    flex: 0 0 300px;
}

.footer-logo {
    margin-bottom: 20px;
}

.kv-logo {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
}

.footer-description {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 30px 0;
    font-weight: 500;
}

/* SNS 아이콘 */
.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-social a {
    color: #ffffff;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #999999;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

/* 언어 토글 버튼 */
.language-toggle {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'Pretendard', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.language-toggle:hover {
    border-color: #666666;
    background-color: rgba(255, 255, 255, 0.05);
}

.language-toggle svg {
    width: 12px;
    height: 8px;
    transition: transform 0.3s ease;
}

.language-toggle:hover svg {
    transform: translateY(2px);
}

/* ================================================
   오른쪽 영역 (3개 컬럼)
   ================================================ */

.footer-right {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 20px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #999999;
}

/* ================================================
   하단 카피라이트
   ================================================ */

.footer-bottom {
    border-top: 1px solid #393939;
    padding: 15px 0px 20px 0px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.copyright {
    font-size: 13px;
    color: #8a8a8a;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #999999;
}

/* ================================================
   반응형 (태블릿)
   ================================================ */

@media all and (max-width: 1024px) {
    .footer-inner {
        flex-direction: column;
        gap: 50px;
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .footer-left {
        flex: 1;
    }

    .footer-right {
        gap: 50px;
        justify-content: flex-start;
    }

    .footer-bottom-inner {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: auto !important;
        max-width: 100% !important;
    }
}

/* ================================================
   반응형 (모바일)
   ================================================ */

@media all and (max-width: 768px) {

    .kv-footer {
        padding: 40px 15px 0;
    }

    .footer-inner {
        gap: 40px;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .footer-left {
        flex: 1;
    }

    .kv-logo {
        font-size: 36px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social svg {
        width: 20px;
        height: 20px;
    }

    /* ✅ 오른쪽 3개 컬럼만 모바일에서 가로 배치 */
    .footer-right {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-column {
        flex: 1 1 45%;
        min-width: 140px;
    }

    .footer-column h3 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-column ul li a {
        font-size: 13px;
    }

    /* ⬇️ 카피라이트 영역은 원본 그대로 유지 */
    .footer-bottom {
        padding: 20px 15px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: auto !important;
        max-width: 100% !important;
    }

    .copyright {
        font-size: 13px;
    }

    .footer-links {
        flex-direction: row;
        gap: 10px;
    }

    .footer-links a {
        font-size: 13px;
    }
}

/* ================================================
   기존 스타일 보존 (하위 호환성)
   ================================================ */

.footer_gnb,
.footer_copy,
.footer_gnb_ul1,
.footer_gnb_ul2,
.footer_copy_ul1,
.footer_copy_ul2 {
    display: none;
}
