/* ========================================
   푸터 스타일 - 다크 테마
======================================== */

.site-footer {
    background: #0f172a;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

/* ========================================
   로고 & 소개
======================================== */

.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.7;
}

/* ========================================
   푸터 컬럼
======================================== */

.footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* ========================================
   연락처
======================================== */

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-phone {
    font-size: 1.2rem !important;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

/* ========================================
   하단 저작권
======================================== */

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 20px 0;
}

.footer-bottom .footer-container {
    display: block;
}

.footer-bottom p {
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

/* ========================================
   반응형 (태블릿)
======================================== */

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 30px;
    }

    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

/* ========================================
   반응형 (모바일)
======================================== */

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-title {
        margin-bottom: 16px;
    }

    .footer-links li,
    .footer-contact li {
        margin-bottom: 10px;
    }
}
