/* Doplnkové štýly, ktoré sa neriešia cez Tailwind utility triedy. */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 6.5rem; /* výška lepiacej hlavičky + dropdownu */
}

::selection {
    background-color: #c9a24b;
    color: #0a0a0a;
}

#nacitat-viac {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
}

#nacitat-viac::after {
    content: '';
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 9999px;
    border: 2px solid #3f3f46;
    border-top-color: #c9a24b;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    #nacitat-viac::after { animation: none; }
}
