/*
Theme Name: Safelink Pro Theme
Theme URI: https://www.youtube.com/@themrdigitalceo
Author: Mr Digital CEO
Author URI: https://www.youtube.com/@themrdigitalceo
Description: Safelink Pro is a powerful WordPress theme designed for advanced URL encoding and decoding with pro-level security, optimized performance, and a clean, responsive UI. Perfect for safelink websites, content protection, and secure link management.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: safelink-theme
Tags: safelink, security, encode-decode, minimal, responsive, custom-theme, wordpress-safelink-theme
*/
 
/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    justify-content: space-around;
    padding: 10px 0;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 70px; /* Space for bottom nav */
    }
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    cursor: pointer;
}

.mobile-bottom-nav .nav-item svg {
    margin-bottom: 4px;
}

.mobile-bottom-nav .nav-item:hover, .mobile-bottom-nav .nav-item.active {
    color: #007bff;
}

/* Navigation Auth Buttons */
.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-list li {
    margin-left: 20px;
}
.menu-auth-item a {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    opacity: 0.8;
    text-decoration: none;
    transition: var(--transition);
}
.menu-auth-item a:hover {
    opacity: 1;
    color: var(--secondary-color);
}
.btn-nav-logout {
    color: #dc3545 !important;
}
.btn-nav-logout:hover {
    opacity: 1;
    color: #a71d2a !important;
}

@media (max-width: 768px) {
    .nav-list {
        display: none; /* Hide desktop nav on mobile */
    }
}
