/*
Theme Name: MBOP Custom Theme
Author: Ron Haneda
Description: Lightweight, secure custom theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mbop-custom-theme
*/

/* ============================
   Header
============================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 20px;
}

/* Body padding for fixed header */
body {
    padding-top: 80px; /* adjust based on header height */
    font-family: Arial, sans-serif;
}

/* ============================
   Navigation Menu
============================ */
.main-navigation {
    display: block;
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    display: inline-block;
    margin-right: 20px;
}

.main-menu li:last-child {
    margin-right: 0;
}

.main-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s ease;
}

.main-menu li a:hover {
    color: #ff5722;
}

/* ============================
   Scroll-to-top Button
============================ */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 1000;
    font-size: 18px;
    padding: 10px 15px;
    background: #ff5722;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
