.footer {
    background-color: var(--perigord-black);
    color: var(--white);
    padding: 3rem 18.75rem 1rem;
    margin-top: 4rem;
}

.footer-container {
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-section h3 {
    color: var(--perigord-yellow);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

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

.social-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.social-link:hover {
    color: var(--perigord-yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.email-link {
    color: var(--perigord-yellow);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.created-by {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.social-placeholder {
    color: var(--white);
    font-style: italic;
    opacity: 0.7;
    text-align: center;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--perigord-yellow);
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 1.5rem 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-logo {
        display: none;
    }

    .footer-links {
        align-items: flex-start;
    }
}
