/* =========================================
   Footer Styles
   ========================================= */

.footer {
    --font-korean: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
    width: 100%;
    font-family: "Montserrat", var(--font-korean);
}

.footer-top {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: calc(35px + 0.5cm) 0; /* Total increased height by 1.0cm overall */
    height: auto;
    text-align: center;
}

.footer-bottom {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 20px 0;
    text-align: center;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Logo */
.footer-logo-area {
    display: none;
    margin-bottom: 20px;
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 100px;
    width: auto;
}

/* Company Info */
.company-info {
    margin-top: 0;
    text-align: center;
    width: 100%;
}

.company-name {
    font-size: calc(1.1rem + 1px);
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
}

.company-address {
    font-size: calc(0.9rem + 1px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Contact Info (Bottom Bar) */
.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: calc(0.85rem + 3px);
    font-weight: 300;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0;
    }
    .contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 300;
}
    .footer-bottom {
        padding-bottom: 80px;
    }
}

/* Footer Navigation Menu */
.footer-nav {
    margin-top: 10px; /* Gap between address and menu reduced by approx 2 lines */
    display: flex;
    justify-content: center;
    gap: 2cm;
}

.footer-nav-link {
    font-size: 17px; /* Decreased by 1px from 18px */
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
}
