/**
 * @파일명 css/_footer.css
 * @제작사 ZZAN Studio
 * @설명 하단 푸터 영역 스타일
 */

/* [1] 푸터 메인 컨테이너 */
footer#footer {
    background-color: #08090b; /* 가장 깊이감 있는 블랙으로 마무리 */
    border-top: none; /* 상단 보더 제거하여 섹션간 틈새 보임 방지 */
    padding: 100px 0 60px;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* [1-1] 푸터 내부 콘텐츠 정렬 컨테이너 */
.footer-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* [2] 푸터 상단 (로고 및 FNB) 레이아웃 */
.footer-bottom-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* [2-1] FNB(푸터 네비게이션) 스타일 */
.fnb ul {
    display: flex;
    gap: 30px;
}

.fnb ul li a {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.fnb ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    line-height: 2;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.footer-logo img {
    max-height: 40px; /* 로고 이미지 적정 높이 설정 */
    width: auto;
    display: block;
}

/* [3] 사업자 상세 정보 스타일 */
.footer-info {
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

/* [3-1] 카피라이트 스타일 */
.footer-copy {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

/* [4] 투자 주의사항(법적 고지) 스타일 */
.footer-warning {
    margin-top: 30px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
    word-break: keep-all;
    line-height: 1.6;
}
