/* 푸터 */
.site-footer {
    position: relative;
    display: block;
    width: 100%;
    z-index: 10;
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #999;
    padding: 3.125rem 1.25rem 1.875rem;
    font-size: 0.875rem;
    box-sizing: border-box;  
    overflow-x: hidden;      
}

.footer-container {
    max-width: 1060px;
    margin: 0 auto;
    box-sizing: border-box;  
}

/* 상단: 로고와 소셜 아이콘 */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.875rem;
}

.footer-logo-section {
    flex: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    letter-spacing: 0.0625rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}



.social-icon i {
    font-size: 1rem;
    color: #666;
}

/* 네비게이션 링크 */
.footer-nav {
    margin-bottom: 1.25rem;
}

.footer-nav a {
    color: #999;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #4169E1;
}

.footer-divider {
    color: #999;
    margin: 0 0.25rem;
}

/* 회사 정보 및 연락처 */
.footer-info {
    margin-bottom: 2.5rem;
}

.footer-company {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-company p {
    font-size: 0.875rem;
    color: #999;
    margin: 0.25rem 0;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-contact p {
    font-size: 0.875rem;
    color: #999;
    margin: 0.25rem 0;
    line-height: 1.6;
}

.footer-contact a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #4169E1;
}

/* 하단: 저작권 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer p {
    font-size: 0.875rem;
    color: #999;
    margin: 0.25rem 0;
    line-height: 1.6;
}

/* 푸터 반응형 */
@media (max-width: 768px) {
    .site-footer {
        padding: 2.5rem 0.9375rem 1.875rem;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .footer-info p {
        margin: 0;
    }
    
    .footer-company {
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
}

