/* 미니멀 푸터 스타일 */
#ft {
    background: #333;
    color: #fff;
    width: 100%;
    clear: both;
    position: relative;
    font-size: 14px;
    margin-top: auto;
    z-index: 10;
}

#ft_wr {
    max-width: 1430px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ft_logo_wrap {
    display: flex;
    align-items: center;
}

.ft_logo_wrap img {
    height: 24px;
    filter: brightness(0) invert(1); /* 로고를 흰색으로 변환 */
}

.ft_contact_wrap {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.ft_contact_info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ft_email, .ft_phone {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s;
}

.ft_email:hover, .ft_phone:hover {
    color: #ccc;
}

/* 스크롤 버튼 */
#top_btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(66, 103, 178, 0.8);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s;
    z-index: 100;
}

#top_btn:hover {
    background: rgba(66, 103, 178, 1);
}

/* 반응형 설정 */
@media (max-width: 768px) {
    #ft_wr {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .ft_contact_info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .ft_logo_wrap {
        justify-content: center;
    }
	.ft_contact_wrap{
		display: contents;
	}
}

@media (max-width: 480px) {
    .ft_contact_info {
        gap: 8px;
    }
    
    .ft_email, .ft_phone {
        font-size: 13px;
    }
    
    #ft_wr {
        padding: 15px;
    }
}