@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-footer {
    width: 100%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(209,213,219,0.7);
    padding: 26px 0;
    margin-top: 60px;
    min-width: 1320px;
}

.footer-inner {
    width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* 왼쪽 로고 */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-mark {
    font-size: 16px;
    background: linear-gradient(135deg, #6366f1, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    letter-spacing: 3px;
}

.footer-copy {
    font-size: 13px;
    color: #6b7280;
}

/* 가운데 메뉴 */
.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.footer-links a {
    text-decoration: none;
    font-size: 13px;
    color: #4b5563;
    transition: color 0.15s ease;
}

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

/* SNS 아이콘 */
.footer-right {
    display: flex;
    gap: 14px;
}

.sns-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #6366f1, #f97316);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(99,102,241,0.25);
    transition: filter 0.15s ease;
}

.sns-icon:hover {
    filter: brightness(1.1);
}