footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative; /* zostáva, ale nie absolute! */
    flex-shrink: 0; /* zabezpečí, že footer sa nezmenší pri malých obrazovkách */
    width: 100%;
}

.footer-content {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}

.footer-content p {
    margin: 0;
    color: #ccc;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
}

/* Ikony sociálnych sietí */
.social-links a {
    color: #83C591;
    font-size: 24px;
    text-decoration: none;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #fff;
}

/* Dátum/čas */
#currentDateTime {
    color: #ccc;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    margin-top: 5px;
}

/* Cookies link samostatne vpravo dole */
.cookies-link {
    position: absolute;
    right: 20px;
    bottom: 10px;
}

.cookies-link a {
    color: #ccc;
    font-size: 12px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
}

.cookies-link a:hover {
    color: #fff;
}

/* Responzívne správanie na mobiloch */
@media (max-width: 600px) {
    .cookies-link {
        position: static;
        margin-top: 10px;
        text-align: center;
    }
}
