/* =============================
   FOOTER – oddělený & stabilní
============================= */

.site-footer {
    background: #0f172a;
    padding: 3rem 1rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

/* Logo blok */
.footer-logo h3 {
    color: #a8c7ff;
    margin-bottom: 0.3rem;
    font-size: 1.3rem;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Odkazy */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.3rem;
}

.footer-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: .25s ease;
}

.footer-links a:hover {
    color: #93c5fd;
    text-shadow: 0 0 6px rgba(96, 165, 250, 0.4);
}

/* Copyright */
.footer-copy {
    text-align: center;
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-copy span {
    color: #e2e8f0;
}

/* Responsivita */
@media (max-width: 800px) {
    .footer-content {
        text-align: center;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        justify-content: center;
    }
}