/*
 * wisнblower - Footer Component CSS
 * Footer-Layout, Links, Copyright
 */

/* ===== FOOTER COMPONENT ===== */
footer {
    background-color: transparent;
    color: white;
    padding: 1.5rem 0;
    margin-top: auto;
    width: 100%;
    position: relative;
    z-index: 100;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.copyright {
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
    padding: 0.5rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-links a:focus {
    text-decoration: underline;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* ===== RESPONSIVE FOOTER ===== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .footer-links a {
        margin: 0 0.5rem;
        padding: 0.5rem;
        display: inline-block;
    }
}