/*
Theme Name:   btp-theme (child trentytwentyfive)
Description:  Mój własny motyw potomny bazujący na Twenty Twenty-Five.
Author:       Twoje Imię lub Nazwa Firmy
Template:     twentytwentyfive
Version:      1.0.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
Tags:         blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments
Text Domain:  twentytwentyfive-child
*/

/* Tutaj możesz dodawać własne style CSS, które nadpiszą lub uzupełnią style motywu nadrzędnego */

.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #E87A00;
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(232, 122, 0, 0.5);
}

/* Kompatybilność z WordPress admin bar */
body.admin-bar .scroll-progress {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .scroll-progress {
        top: 46px;
    }
}

/* Globalne białe tło - podstawowe */
body {
    background-color: #ffffff !important;
    background-image: none !important;
}

