/* ==========================================
   모든 페이지 공통 적용 커스텀 푸터 디자인 (footer.css)
========================================== */
.luna-custom-footer {
    background-color: #1a2536;
    color: #cbd5e1;
    padding: 50px 20px 30px 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid #2c3e50;
}

.luna-footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.luna-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #2c3e50;
}

.luna-footer-brand h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.luna-footer-brand p {
    margin: 0;
    color: #94a3b8;
}

.luna-footer-info-text p {
    margin: 4px 0;
    color: #cbd5e1;
}

.luna-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}

.luna-footer-links a {
    color: #cbd5e1 !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.luna-footer-links a:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
}

/* 푸터 모바일 반응형 고정 */
@media (max-width: 768px) {
    .luna-footer-top {
        flex-direction: column;
        gap: 20px;
    }
    .luna-footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 10px;
    }
}