/**
 * Footer Component Styles
 * Seoul Curator Theme
 */

.footer {
    background-color: rgba(21, 16, 36, 0.08);
    width: 100%;
    padding: 4rem 1.5rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 3rem;
    }
}

.footer__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__container {
        flex-direction: row;
        gap: 2rem;
    }
}

.footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer__brand {
        align-items: flex-start;
    }
}

.footer__logo {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-headline);
    text-transform: uppercase;
    letter-spacing: -0.05em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__logo:hover {
    color: var(--secondary);
}

.footer__copyright {
    color: rgba(242, 232, 255, 0.85);
    font-size: 0.75rem;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer__nav {
        gap: 2.5rem;
    }
}

.footer__link {
    color: rgba(242, 232, 255, 0.85);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__link:hover {
    color: var(--primary);
}

.footer__social {
    display: flex;
    gap: 1.5rem;
}

.footer__social-link {
    color: rgba(242, 232, 255, 0.85);
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.footer__social-icon {
    width: 1.25rem;
    height: 1.25rem;
}