/* 
    [INGUIDE Layout - Footer CSS]
    - 하단 푸터 영역, 카피라이트, 관리자 메뉴 스타일
    - 제작: INGUIDE
*/
.footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 80px 0; }
.footer-inner { max-width: var(--container-width); margin: 0 auto; padding: 0 18px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 50px; }
.footer-logo img { height: 35px; filter: grayscale(100%); opacity: 0.7; transition: var(--transition); }
.footer-logo img:hover { opacity: 1; filter: grayscale(0%); }
.footer-links { display: flex; gap: 25px; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 500; font-size: 15px; transition: var(--transition); position: relative; }
.footer-links a:hover { color: #fff; }
.footer-links a:not(:last-child)::after { content: ""; position: absolute; right: -13px; top: 50%; transform: translateY(-50%); width: 1px; height: 12px; background: rgba(255,255,255,0.15); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; margin-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }

/* Admin Menu Styling */
.footer-admin { display: flex; align-items: center; gap: 15px; opacity: 0.2; transition: var(--transition); }
.footer-admin:hover { opacity: 1; }
.footer-admin .admin-status { font-size: 12px; color: var(--point-color); font-weight: 600; }
.footer-admin a { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 5px; }
.footer-admin a:hover { color: #fff; }
.footer-admin .btn-admin-setup svg { vertical-align: middle; }
.footer-admin .btn-admin-logout { padding: 2px 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }

@media screen and (max-width: 1024px) {
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-top { flex-direction: column; gap: 30px; text-align: center; align-items: center; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
}
