footer {
    margin-top: 5.5rem;
    position: relative;
    background: var(--shaded-background-color);
    padding: 4.5rem 2.7rem;
}

:host([floating]) footer {
    margin-top: 0;
}

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

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

:host([floating]) footer::before {
    display: none;
}

.copyright {
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    color: #666;
}

nav {
    display: flex;
    gap: 2.7rem;
}

nav a {
    font-family: "Lato", sans-serif;
    font-size: 1.6rem;
    color: var(--action-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 1.8rem;
        text-align: center;
    }
    
    nav {
        flex-direction: column;
        gap: 1.35rem;
    }
}
