

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--background-white);
    padding: 2rem 0;
}

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

.made-for-readers {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    order: 1;
    width: 100%;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    white-space: normal;
    overflow: visible;
    margin: 0;
    order: 2;
    width: 100%;
}

.instagram-link-footer {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instagram-icon {
    width: 24px;
    height: 24px;
    fill: var(--secondary);
    transition: fill 0.3s ease;
}

.instagram-link:hover {
    transform: scale(1.1);
}

.instagram-link:hover .instagram-icon {
    fill: var(--background-white);
}

.instagram-link-footer {
    display: none;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }

    .made-for-readers {
        order: 1;
        flex: 1;
        text-align: left;
        width: auto;
    }

    .copyright {
        order: 2;
        flex: 1;
        text-align: center;
        width: auto;
    }

    .instagram-link-footer {
        order: 3;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        width: auto;
    }
}