/* Footer Component Styles */
.footer {
    background-color: var(--color-gray-01);
    color: #7e7e7e;
    flex-shrink: 0;
    height: 396px;
    margin-top: auto;
    position: relative;
    width: 100%;
    z-index: 1;
}

.footer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 auto;
    max-width: var(--content-max-width);
    padding: 60px 16px;
    position: relative;
    width: 100%;
}

/* Top Navigation */
.footer-nav {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-nav-menu {
    display: flex;
    gap: 20px;
}

.footer-nav-item {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: center;
    min-width: 83px;
}

.footer-nav-link {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 150%;
    text-decoration: none;
}

.contact-info.mobile-only {
    display: none;
}

/* Kakao Button */
.kakao-button {
    align-items: center;
    background-color: #fee500;
    border-radius: 24px;
    cursor: pointer;
    display: flex;
    height: 48px;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 48px;
}


.kakao-link {
    align-items: center;
    border-radius: 24px;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.kakao-link svg {
    height: 24px;
    width: 24px;
}

/* Divider Line */
.footer-divider {
    background-color: #7e7e7e;
    height: 1px;
    margin: 0 auto 40px auto;
    max-width: 1440px;
    width: 100%;
}

/* Content Section */
.footer-content {
    align-items: flex-start;
    display: flex;
    height: 133px;
    justify-content: space-between;
}

/* Company Info */
.company-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 550px;
}

.company-address {
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 0;
}

.legal-links {
    align-items: center;
    display: flex;
    gap: 8px;
}

.legal-link {
    color: #7e7e7e;
    font-size: 16px !important;
    font-weight: 400;
    letter-spacing: 0;
    text-decoration: none;
    transition: color 0.3s ease;
}


.legal-divider {
    color: #7e7e7e;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.copyright {
    display: flex;
    gap: 4px;
}

.copyright-icon {
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 400;
    height: 13px;
    width: 12.8px;
}

.copyright-text {
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 21px;
}

/* Contact Info */
.contact-info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 241px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-info {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 24px;
    margin: 0;
}

.hours-info {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 21px;
    margin: 0 0 0 31px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-container {
        padding: 40px 60px;
    }

    .footer-divider {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        height: auto;
    }

    .company-address span.mobile-only {
        display: inline;
    }

    .company-info,
    .contact-info {
        width: 100%;
    }

    .contact-info.mobile-only {
        display: flex;
        margin-left: 20px;
    }

    .contact-info.mobile-only .hours-info {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .footer {
        height: auto;
    }

    .company-address span.mobile-only {
        color: #7e7e7e;
        font-size: 14px;
        font-weight: 400;
        margin-left: 0;
    }

    .contact-info.mobile-only {
        margin-left: 0;
    }

    .footer-container {
        padding: 20px;
    }

    .footer-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        height: auto;
        margin-bottom: 20px;
    }

    .footer-nav-menu {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .footer-nav-item {
        height: auto;
        width: auto;
    }

    .footer-nav-link {
        font-size: 14px;
    }

    .kakao-button {
        border-radius: 14px;
        height: 28px;
        width: 28px;
    }

    .kakao-link svg {
        height: 20px;
        width: 20px;
    }

    .footer-content {
        text-align: center;
    }

    .company-info {
        gap: 12px;
    }

    .contact-details {
        text-align: left;
    }

    .phone-info {
        font-size: 14px;
    }

    .hours-info {
        font-size: 14px;
    }

    .legal-link {
        font-size: 14px !important;
    }

    .legal-links {
        margin-bottom: 0;
    }

    .company-details {
        margin-bottom: 0;
    }

    .company-address {
        font-size: 14px;
        text-align: left;
    }

    .hours-info {
        margin-left: 0;
    }

    .footer-divider {
        margin-bottom: 20px;
    }
}




