/* Mobile Navigation Styles */

/* Mobile Toggle Menu - Home Button */
.mobile-toggle-menu {
    position: relative;
}

.mobile-toggle-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #404142;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 20px;
}

.mobile-toggle-menu a:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-toggle-menu a:active {
    transform: scale(0.95);
}

.mobile-toggle-menu a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.25);
}

/* Add a subtle animation effect */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
    }
}

.mobile-toggle-menu a:active {
    animation: pulse 0.5s;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .mobile-toggle-menu a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* Dark theme support */
html.dark-theme .mobile-toggle-menu a {
    color: #e4e5e6;
}

html.dark-theme .mobile-toggle-menu a:hover {
    background-color: #343a40;
    color: #66b3ff;
}
