/* Footer */
.footer {
    padding: 3rem 2rem;
    background-color: var(--primary-black);
    text-align: center;
    border-top: 1px solid var(--very-dark-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-logo img {
    height: 70vw;;
    width: auto;
}

.footer-text {
    color: var(--dim-gray);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-link {
    color: var(--dim-gray);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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