/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link {
    margin-bottom: 1rem;
}

.footer-link a {
    color: var(--white);
    opacity: 0.6;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 400;
}

.footer-link a:hover {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
    font-size: 0.875rem;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .footer-link {
        margin-bottom: 0.75rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-link {
        margin-bottom: 0.5rem;
    }

    .copyright {
        padding-top: 2rem;
        font-size: 0.8rem;
    }
}
