/*
Theme Name: WA Productions Theme
Description: A classic WordPress theme for WA Productions photography business
Author: WA Productions
Version: 1.0
Text Domain: waprod
*/

/* Theme styles will be loaded via functions.php */

/* Back to Top Button Styles */
.totop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: rgba(31, 41, 55, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    z-index: 1000;
    pointer-events: none;
}

.totop:hover {
    background-color: rgba(17, 24, 39, 0.9);
    transform: translateY(15px);
    color: white;
    text-decoration: none;
}

.totop.opened {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.totop svg {
    width: 24px;
    height: 24px;
}