/*
 * Theme Name: Bizxpo Child
 * Theme URI: https://themewinter.com/bizxpo/
 * Author: Themewinter
 * Author URI: http://themewinter.com
 * Description: Event Conference WordPress Theme
 * Version: 1.0.0
 * Template: bizxpo
 * License: GNU General Public License version 3.0
 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
 * Tags: custom-background, blog, custom-header, one-column, two-columns, custom-logo, custom-menu, featured-images, post-formats
 */

/* Smooth scroll pre celú stránku */
html {
    scroll-behavior: smooth;
}

/* =====================
   Scroll To Top Button
   ===================== */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 48px;
    height: 48px;
    background: #C9A24D;        /* Button primary */
    border: 1px solid #C9A24D;
    border-radius: 50%;
    color: #FFFFFF;              /* Title primary color */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}

#scrollToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTop:hover {
    background: #1A222F;         /* Button hover */
    border-color: #1A222F;
}

#scrollToTop svg {
    width: 20px;
    height: 20px;
    stroke: #FFFFFF;             /* Title primary color */
}
