@charset "UTF-8";

/* 푸터 기본 스타일 */
.footer {
    background-color: #fff;
    color: #000;
    padding: 30px 0;
    margin-top: 80px;
    text-align: center;
}

.footer_inner {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact_icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.contact_icon svg {
    width: 100%;
    height: 100%;
}

.contact_text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.contact_title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact_email {
    font-size: 16px;
    color: #000;
    margin: 0;
    font-weight: 400;
}

/* 반응형 디자인 */
@media screen and (max-width: 768px) {
    .footer {
        margin-top: 20px;
    }

    .footer_inner {
        padding: 0 20px;
    }
    
    .footer_contact {
        gap: 15px;
    }
    
    .contact_icon {
        width: 28px;
        height: 28px;
    }
    
    .contact_title {
        font-size: 14px;
    }
    
    .contact_email {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .footer_inner {
        padding: 0 15px;
    }
    
    .footer_contact {
        gap: 12px;
    }
    
    .contact_icon {
        width: 24px;
        height: 24px;
    }
    
    .contact_title {
        font-size: 12px;
    }
    
    .contact_email {
        font-size: 12px;
    }
} 