/*
Theme Name: Bamboo Digital Custom Theme
Theme URI: https://bamboodigital.nz/wordpress-themes/Saaslauncherclone
Template: saaslauncher
Author: Rupene Matua
Author URI: https://bamboodigital.nz
Description: Child theme for Saaslauncher with custom content for website development business
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bamboodigital
*/

/* Scroll to Top Button */
#scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
}

#scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-to-top:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #000000;
    stroke-width: 2;
    fill: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
    
    #scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
