/* ==================== */
/* FOOTER STYLES */
/* ==================== */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 1rem 1.5rem 1rem;
    width: 100%;
    margin-top: auto;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    text-align: left; /* Zarovnání textu v sekcích */
}

.footer-section {
    flex: 1;
    min-width: 250px; /* Aby se na mobilu naskládaly pod sebe */
}

.footer-section h3 {
    color: #3a5bff; /* Barva nadpisů v patičce */
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #bdc3c7;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-section a {
    color: #3a5bff;
    text-decoration: none;
}

.disclaimer {
    margin-top: 1rem;
    padding: 10px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    font-size: 0.8rem !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #3e4f5f;
    font-size: 0.85rem;
    color: #7f8c8d;
}

/* Úprava pro mobilní zařízení */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section h3 {
        border-left: none;
        padding-left: 0;
    }
}