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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quill-illustration {
    width: 40px;
    height: 40px;
    background-image: url('quill.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-link.twitter {
    background-image: url('twitter-icon.png');
}

.social-link.linkedin {
    background-image: url('linkedin-icon.png');
}

.social-link.youtube {
    background-image: url('youtube-icon.png');
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    opacity: 0.8;
}

