/**
 * Lihtne Leht - Base Styles
 * Scroll behavior and responsive overrides
 */

/* === Base === */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* === Responsive === */
@media (max-width: 782px) {
    html {
        scroll-padding-top: 70px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 1.5rem;
        right: 1.5rem;
        font-size: 1rem;
    }
}
