/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 10 2024 | 13:43:51 */
/* Add your CSS code here */

.site-header {
    border-bottom: 10px solid #000;
}

a {
    transition: color 0.3s ease;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff; /* Optional: Set a background color */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Optional: Add a subtle shadow */
}

a:hover {
    color: #ff5733; /* blue */
    text-decoration: underline;
}

@media (max-width: 768px) {
    .site-navigation {
        display: none; /* Hide the full menu on small screens */
    }

    .menu-toggle {
        display: block; /* Show the mobile menu toggle button */
        cursor: pointer;
        background-color: #ff5733;
        color: white;
        padding: 10px;
        text-align: center;
    }

    .menu-toggle.active + .site-navigation {
        display: block; /* Show the menu when toggle is active */
    }
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff5733;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    display: none; /* Hidden by default */
    z-index: 999;
}

.back-to-top:hover {
    background-color: #ff4500;
}

body.scrolled .back-to-top {
    display: block; /* Show button when scrolled */
}
